diff --git a/.github/workflows/nodejs.yml b/.github/workflows/nodejs.yml index 39149cf9..cfcee2d4 100644 --- a/.github/workflows/nodejs.yml +++ b/.github/workflows/nodejs.yml @@ -4,7 +4,6 @@ on: [push, pull_request] jobs: build: - runs-on: ubuntu-latest strategy: @@ -12,20 +11,55 @@ jobs: node-version: [8.x, 10.x] steps: - - uses: actions/checkout@v1 - - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v1 - with: - node-version: ${{ matrix.node-version }} - - name: npm install, build, and test - run: | - node --version - npm --version - yarn --version - yarn - yarn bootstrap - yarn test:all:ci - env: - CI: true - CYPRESS_RECORD_KEY: ${{ secrets.CYPRESS_RECORD_KEY }} - NODE_OPTIONS: --max-old-space-size=4096 + - uses: actions/checkout@v1 + - name: Use Node.js ${{ matrix.node-version }} + uses: actions/setup-node@v1 + with: + node-version: ${{ matrix.node-version }} + - name: npm install, unit test and build + run: | + node --version + npm --version + yarn --version + yarn + yarn bootstrap + yarn test:ci + yarn build:demo + env: + CI: true + NODE_OPTIONS: --max-old-space-size=4096 + - uses: actions/upload-artifact@master + with: + name: dev-test-website-node-${{ matrix.node-version }} + path: dev-test + + e2e: + needs: build + + runs-on: ubuntu-latest + + strategy: + matrix: + machine: [1, 2, 3, 4, 5] + + steps: + - uses: actions/checkout@v1 + - name: Use Node.js 10.x + uses: actions/setup-node@v1 + with: + node-version: 10.x + - uses: actions/download-artifact@master + with: + name: dev-test-website-node-10.x + path: dev-test + - name: npm install and e2e test + run: | + node --version + npm --version + yarn --version + yarn + yarn test:e2e:run-ci + env: + CI: true + CYPRESS_RECORD_KEY: ${{ secrets.CYPRESS_RECORD_KEY }} + NODE_OPTIONS: --max-old-space-size=4096 diff --git a/cypress/Readme.md b/cypress/Readme.md new file mode 100644 index 00000000..39418f7a --- /dev/null +++ b/cypress/Readme.md @@ -0,0 +1,73 @@ +# Cypress Tests Guide + +## Introduction + +[Cypress](https://www.cypress.io/) is a JavaScript End to End Testing Framework that runs in the browser. + +Cypress tests run with a [local version](../dev-test) of the CMS. + +During the setup of a spec file, the relevant `index.html` and `config.yml` are copied from `dev-test/backends/` to `dev-test`. + +Tests for the `test` backend use mock data generated in `dev-test/backends/test/index.html`. + +Tests for the `github` backend use previously [recorded data](fixtures) and stub `fetch` [calls](support/commands.js#L82). See more about recording tests data [here](#recording-tests-data). + +## Run Tests Locally + +```bash +yarn test:e2e # builds the demo site and runs Cypress in headless mode with mock data +``` + +## Debug Tests + +```bash +yarn develop # starts a local dev server with the demo site +yarn test:e2e:exec # runs Cypress in non-headless mode with mock data +``` + +## Recording Tests Data + +> Currently only relevant for `github` backend tests. + +When recording tests, access to the GitHub API is required, thus one must set up a `.env` file in the root project directory in the following format: + +```bash +GITHUB_REPO_OWNER=owner +GITHUB_REPO_NAME=repo +GITHUB_REPO_TOKEN=tokenWithWritePermissions +GITHUB_OPEN_AUTHORING_OWNER=forkOwner +GITHUB_OPEN_AUTHORING_TOKEN=tokenWithWritePermissions +``` + +> The structure of the repo designated by `GITHUB_REPO_OWNER/GITHUB_REPO_NAME` should match the settings in [`config.yml`](../dev-test/backends/github/config.yml#L1) + +To start a recording run the following commands: + +```bash +yarn develop # starts a local dev server with the demo site +yarn mock:server:start # starts the recording proxy +yarn test:e2e:record-fixtures:dev # runs Cypress in non-headless and pass data through the recording proxy +yarn mock:server:stop # stops the recording proxy +``` + +> During the recorded process a clone of `GITHUB_REPO_NAME` will be created under `.temp` and reset between tests. + +Recordings are sanitized from any possible sensitive data and [transformed](plugins/github.js#L395) into an easier to process format. + +To avoid recording all the tests over and over again, a recommended process is to: + +1. Mark the specific test as `only` by changing `it("some test...` to `it.only("some test...` for the relevant test. +2. Run the test in recording mode. +3. Exit Cypress and stop the proxy. +4. Run the test normally (with mock data) to verify the recording works. + +## Debugging Playback Failures + +Most common failures are: + +1. The [recorded data](utils/mock-server.js#L17) is not [transformed](plugins/github.js#L395) properly (e.g. [sanitization](plugins/github.js#L283) broke something). +2. The [stubbed requests and responses](support/commands.js#L82) are not [matched](support/commands.js#L29) properly (e.g. timestamp changes in request body between recording and playback). + +Dumping all recorded data as is to a file [here](utils/mock-server.js#L24) and adding a `debugger;` statement [here](support/commands.js#L52) is useful to gain insights. + +Also comparing console log messages between recording and playback is very useful (ordering of requests, etc.) diff --git a/cypress/fixtures/Github Backend Editorial Workflow - GraphQL API - Open Authoring__can change entry status from fork.json b/cypress/fixtures/Github Backend Editorial Workflow - GraphQL API - Open Authoring__can change entry status from fork.json new file mode 100644 index 00000000..d8d500af --- /dev/null +++ b/cypress/fixtures/Github Backend Editorial Workflow - GraphQL API - Open Authoring__can change entry status from fork.json @@ -0,0 +1,1597 @@ +[ + { + "method": "GET", + "url": "/user", + "headers": { + "Date": "Tue, 10 Sep 2019 13:33:43 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": "1568126016", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"306a7697fb3e2ba7e728a792014e91b8\"", + "Last-Modified": "Sun, 01 Sep 2019 18:04:11 GMT", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BDE:3ED7B:1201B12:15DD938:5D77A636", + "content-length": "1333", + "connection": "keep-alive" + }, + "response": "{\"login\":\"forkOwner\",\"id\":2,\"avatar_url\":\"https://avatars1.githubusercontent.com/u/7892489?v=4\",\"name\":\"forkOwner\"}", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/collaborators/forkOwner/permission", + "headers": { + "Date": "Tue, 10 Sep 2019 13:33:43 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "403 Forbidden", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4951", + "X-RateLimit-Reset": "1568126016", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BE0:B4DC:A7D513:CC174A:5D77A637", + "content-length": "185", + "connection": "keep-alive" + }, + "response": "{\n \"message\": \"Must have push access to view collaborator permission.\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/collaborators/#review-a-users-permission-level\"\n}\n", + "status": 403 + }, + { + "method": "POST", + "url": "/repos/owner/repo/forks", + "headers": { + "Date": "Tue, 10 Sep 2019 13:33:44 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "22055", + "Server": "GitHub.com", + "Status": "202 Accepted", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4950", + "X-RateLimit-Reset": "1568126016", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BE2:244E7:1148250:1514EA0:5D77A637", + "connection": "keep-alive" + }, + "response": "{\n \"id\": 207567867,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1Njc4Njc=\",\n \"name\": \"repo\",\n \"full_name\": \"forkOwner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"forkOwner\",\n \"id\": 53494188,\n \"node_id\": \"MDQ6VXNlcjUzNDk0MTg4\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/forkOwner\",\n \"html_url\": \"https://github.com/forkOwner\",\n \"followers_url\": \"https://api.github.com/users/forkOwner/followers\",\n \"following_url\": \"https://api.github.com/users/forkOwner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/forkOwner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/forkOwner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/forkOwner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/forkOwner/orgs\",\n \"repos_url\": \"https://api.github.com/users/forkOwner/repos\",\n \"events_url\": \"https://api.github.com/users/forkOwner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/forkOwner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/forkOwner/repo\",\n \"description\": null,\n \"fork\": true,\n \"url\": \"https://api.github.com/repos/forkOwner/repo\",\n \"forks_url\": \"https://api.github.com/repos/forkOwner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/forkOwner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/forkOwner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/forkOwner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/forkOwner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/forkOwner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/forkOwner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/forkOwner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/forkOwner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/forkOwner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/forkOwner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/forkOwner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/forkOwner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/forkOwner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/forkOwner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/forkOwner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/forkOwner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/forkOwner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/forkOwner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/forkOwner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/forkOwner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/forkOwner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/forkOwner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/forkOwner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/forkOwner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/forkOwner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/forkOwner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/forkOwner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/forkOwner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/forkOwner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/forkOwner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/forkOwner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/forkOwner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/forkOwner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/forkOwner/repo/deployments\",\n \"created_at\": \"2019-09-10T13:31:46Z\",\n \"updated_at\": \"2019-09-10T13:31:48Z\",\n \"pushed_at\": \"2019-09-10T13:32:36Z\",\n \"git_url\": \"git://github.com/forkOwner/repo.git\",\n \"ssh_url\": \"git@github.com:forkOwner/repo.git\",\n \"clone_url\": \"https://github.com/forkOwner/repo.git\",\n \"svn_url\": \"https://github.com/forkOwner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": null,\n \"has_issues\": false,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\",\n \"permissions\": {\n \"admin\": true,\n \"push\": true,\n \"pull\": true\n },\n \"parent\": {\n \"id\": 207567011,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-10T13:28:07Z\",\n \"updated_at\": \"2019-09-10T13:31:40Z\",\n \"pushed_at\": \"2019-09-10T13:33:33Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n },\n \"source\": {\n \"id\": 207567011,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-10T13:28:07Z\",\n \"updated_at\": \"2019-09-10T13:31:40Z\",\n \"pushed_at\": \"2019-09-10T13:33:33Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n },\n \"network_count\": 1,\n \"subscribers_count\": 0\n}\n", + "status": 202 + }, + { + "method": "GET", + "url": "/repos/forkOwner/repo", + "headers": { + "Date": "Tue, 10 Sep 2019 13:33:45 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": "1568126016", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"6406e2f1c138e4d3c69a1fea4d3f3ebb\"", + "Last-Modified": "Tue, 10 Sep 2019 13:31:48 GMT", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BE6:2B1F:11C965A:15B2A3F:5D77A638", + "content-length": "22145", + "connection": "keep-alive" + }, + "response": "{\n \"id\": 207567867,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1Njc4Njc=\",\n \"name\": \"repo\",\n \"full_name\": \"forkOwner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"forkOwner\",\n \"id\": 53494188,\n \"node_id\": \"MDQ6VXNlcjUzNDk0MTg4\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/forkOwner\",\n \"html_url\": \"https://github.com/forkOwner\",\n \"followers_url\": \"https://api.github.com/users/forkOwner/followers\",\n \"following_url\": \"https://api.github.com/users/forkOwner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/forkOwner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/forkOwner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/forkOwner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/forkOwner/orgs\",\n \"repos_url\": \"https://api.github.com/users/forkOwner/repos\",\n \"events_url\": \"https://api.github.com/users/forkOwner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/forkOwner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/forkOwner/repo\",\n \"description\": null,\n \"fork\": true,\n \"url\": \"https://api.github.com/repos/forkOwner/repo\",\n \"forks_url\": \"https://api.github.com/repos/forkOwner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/forkOwner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/forkOwner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/forkOwner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/forkOwner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/forkOwner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/forkOwner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/forkOwner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/forkOwner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/forkOwner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/forkOwner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/forkOwner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/forkOwner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/forkOwner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/forkOwner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/forkOwner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/forkOwner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/forkOwner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/forkOwner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/forkOwner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/forkOwner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/forkOwner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/forkOwner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/forkOwner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/forkOwner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/forkOwner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/forkOwner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/forkOwner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/forkOwner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/forkOwner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/forkOwner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/forkOwner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/forkOwner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/forkOwner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/forkOwner/repo/deployments\",\n \"created_at\": \"2019-09-10T13:31:46Z\",\n \"updated_at\": \"2019-09-10T13:31:48Z\",\n \"pushed_at\": \"2019-09-10T13:32:36Z\",\n \"git_url\": \"git://github.com/forkOwner/repo.git\",\n \"ssh_url\": \"git@github.com:forkOwner/repo.git\",\n \"clone_url\": \"https://github.com/forkOwner/repo.git\",\n \"svn_url\": \"https://github.com/forkOwner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": null,\n \"has_issues\": false,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\",\n \"permissions\": {\n \"admin\": true,\n \"push\": true,\n \"pull\": true\n },\n \"allow_squash_merge\": true,\n \"allow_merge_commit\": true,\n \"allow_rebase_merge\": true,\n \"parent\": {\n \"id\": 207567011,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-10T13:28:07Z\",\n \"updated_at\": \"2019-09-10T13:31:40Z\",\n \"pushed_at\": \"2019-09-10T13:33:33Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n },\n \"source\": {\n \"id\": 207567011,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-10T13:28:07Z\",\n \"updated_at\": \"2019-09-10T13:31:40Z\",\n \"pushed_at\": \"2019-09-10T13:33:33Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n },\n \"network_count\": 1,\n \"subscribers_count\": 0\n}\n", + "status": 200 + }, + { + "body": "{\"operationName\":null,\"variables\":{},\"query\":\"{\\n viewer {\\n id\\n avatar_url: avatarUrl\\n name\\n login\\n __typename\\n }\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:33:45 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4969", + "X-RateLimit-Reset": "1568126025", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7BEA:2B24:1749627:1C4D9EF:5D77A639", + "content-length": "176", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"viewer\":{\"id\":\"MDQ6VXNlcjUzNDk0MTg4\",\"avatar_url\":\"https://avatars1.githubusercontent.com/u/7892489?v=4\",\"name\":null,\"login\":\"forkOwner\",\"__typename\":\"User\"}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"repoPermission\",\"variables\":{\"owner\":\"forkOwner\",\"name\":\"repo\"},\"query\":\"query repoPermission($owner: String!, $name: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n viewerPermission\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:33:46 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4968", + "X-RateLimit-Reset": "1568126025", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7BEC:9D21:16C574F:1BBB84A:5D77A63A", + "content-length": "119", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1Njc4Njc=\",\"__typename\":\"Repository\",\"viewerPermission\":\"ADMIN\"}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"files\",\"variables\":{\"owner\":\"forkOwner\",\"name\":\"repo\",\"expression\":\"master:content/posts\"},\"query\":\"query files($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...FileEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment FileEntryParts on TreeEntry {\\n name\\n sha: oid\\n type\\n blob: object {\\n ... on Blob {\\n size: byteSize\\n __typename\\n }\\n __typename\\n }\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:33:47 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4967", + "X-RateLimit-Reset": "1568126025", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7BEE:1510E:A863D4:CD1A7E:5D77A63A", + "content-length": "1218", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1Njc4Njc=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6VHJlZTIwNzU2Nzg2NzozNDg5MjU3NWUyMTZjMDZlNzU3MDkzZjAzNmJkOGUwNTdjNzhhNTJm\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"__typename\":\"Tree\",\"entries\":[{\"name\":\"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\"sha\":\"6d51a38aed7139d2117724b1e307657b6ff2d043\",\"type\":\"blob\",\"blob\":{\"size\":1707,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\"sha\":\"d0582dd245a3f408fb3fe2333bf01400007476e9\",\"type\":\"blob\",\"blob\":{\"size\":2565,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2016-02-02---A-Brief-History-of-Typography.md\",\"sha\":\"0eea554365f002d0f1572af9a58522d335a794d5\",\"type\":\"blob\",\"blob\":{\"size\":2786,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2017-18-08---The-Birth-of-Movable-Type.md\",\"sha\":\"44f78c474d04273185a95821426f75affc9b0044\",\"type\":\"blob\",\"blob\":{\"size\":16071,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\"sha\":\"a532f0a9445cdf90a19c6812cff89d1674991774\",\"type\":\"blob\",\"blob\":{\"size\":7465,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"}]}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"files\",\"variables\":{\"owner\":\"forkOwner\",\"name\":\"repo\",\"expression\":\"master:static/media\"},\"query\":\"query files($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...FileEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment FileEntryParts on TreeEntry {\\n name\\n sha: oid\\n type\\n blob: object {\\n ... on Blob {\\n size: byteSize\\n __typename\\n }\\n __typename\\n }\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:33:47 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4966", + "X-RateLimit-Reset": "1568126025", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7BF0:2B1F:11C996E:15B2E11:5D77A63A", + "content-length": "1837", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1Njc4Njc=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6VHJlZTIwNzU2Nzg2Nzo5Yjc2OTliNTdlMTQzMDkxMGRiODI4MzFkY2Y2YjhhMWQxZGJkYWM5\",\"sha\":\"9b7699b57e1430910db82831dcf6b8a1d1dbdac9\",\"__typename\":\"Tree\",\"entries\":[{\"name\":\"42-line-bible.jpg\",\"sha\":\"41c8d12f9ca5864beb827c381fbeff935209d5fb\",\"type\":\"blob\",\"blob\":{\"size\":671242,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"gutenberg.jpg\",\"sha\":\"04315e355873ea5d358d9c371c39a6845c1ae4ae\",\"type\":\"blob\",\"blob\":{\"size\":155002,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-0.jpg\",\"sha\":\"b70a1b64fd4fa9635823231a0ba92c6dc9393f16\",\"type\":\"blob\",\"blob\":{\"size\":660287,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-1.jpg\",\"sha\":\"05eedae372b829c62501ac751b2d42dcc432541b\",\"type\":\"blob\",\"blob\":{\"size\":392411,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-2.jpg\",\"sha\":\"53845ed35faf8939bea242bb85eda7c324b1be0b\",\"type\":\"blob\",\"blob\":{\"size\":99147,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-3.jpg\",\"sha\":\"8b2339d97069e826fae1f156212e40ae458454e3\",\"type\":\"blob\",\"blob\":{\"size\":358022,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-4.jpg\",\"sha\":\"a8f6f21253a67a4284b5a953b2fe633d44152ecd\",\"type\":\"blob\",\"blob\":{\"size\":114837,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"movable-type.jpg\",\"sha\":\"57b4e925ea00bd8e195cf4418eb6eb2995ea5f10\",\"type\":\"blob\",\"blob\":{\"size\":559028,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"printing-press.jpg\",\"sha\":\"d27f56c9437d9becd2f56cc627c9322c2f1f61f6\",\"type\":\"blob\",\"blob\":{\"size\":279283,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"type-through-time.jpg\",\"sha\":\"3f08366a805c51a60ec5056010f22de4ba08abaa\",\"type\":\"blob\",\"blob\":{\"size\":117689,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"}]}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"forkOwner\",\"name\":\"repo\",\"expression\":\"44f78c474d04273185a95821426f75affc9b0044\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:33:47 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4965", + "X-RateLimit-Reset": "1568126025", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7BFA:15110:1807203:1D2E665:5D77A63B", + "content-length": "16478", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1Njc4Njc=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzU2Nzg2Nzo0NGY3OGM0NzRkMDQyNzMxODVhOTU4MjE0MjZmNzVhZmZjOWIwMDQ0\",\"text\":\"---\\ntitle: \\\"Johannes Gutenberg: The Birth of Movable Type\\\"\\ndate: \\\"2017-08-18T22:12:03.284Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Typography\\\"\\ntags:\\n - \\\"Open source\\\"\\n - \\\"Gatsby\\\"\\n - \\\"Typography\\\"\\ndescription: \\\"German inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\\\"\\ncanonical: ''\\n---\\n\\nGerman inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\\n\\n**Johannes Gensfleisch zur Laden zum Gutenberg** (c. 1398 – 1468) was a German blacksmith, goldsmith, printer, and publisher who introduced printing to Europe. His invention of mechanical movable type printing started the Printing Revolution and is widely regarded as the most important event of the modern period. It played a key role in the development of the Renaissance, Reformation, the Age of Enlightenment, and the Scientific revolution and laid the material basis for the modern knowledge-based economy and the spread of learning to the masses.\\n\\n
\\n\\t\\\"Gutenberg\\\"\\n\\t
Johannes Gutenberg
\\n
\\n\\nWith his invention of the printing press, Gutenberg was the first European to use movable type printing, in around 1439. Among his many contributions to printing are: the invention of a process for mass-producing movable type; the use of oil-based ink; and the use of a wooden printing press similar to the agricultural screw presses of the period. His truly epochal invention was the combination of these elements into a practical system that allowed the mass production of printed books and was economically viable for printers and readers alike. Gutenberg's method for making type is traditionally considered to have included a type metal alloy and a hand mould for casting type. The alloy was a mixture of lead, tin, and antimony that melted at a relatively low temperature for faster and more economical casting, cast well, and created a durable type.\\n\\nIn Renaissance Europe, the arrival of mechanical movable type printing introduced the era of mass communication which permanently altered the structure of society. The relatively unrestricted circulation of information — including revolutionary ideas — transcended borders, captured the masses in the Reformation and threatened the power of political and religious authorities; the sharp increase in literacy broke the monopoly of the literate elite on education and learning and bolstered the emerging middle class. Across Europe, the increasing cultural self-awareness of its people led to the rise of proto-nationalism, accelerated by the flowering of the European vernacular languages to the detriment of Latin's status as lingua franca. In the 19th century, the replacement of the hand-operated Gutenberg-style press by steam-powered rotary presses allowed printing on an industrial scale, while Western-style printing was adopted all over the world, becoming practically the sole medium for modern bulk printing.\\n\\nThe use of movable type was a marked improvement on the handwritten manuscript, which was the existing method of book production in Europe, and upon woodblock printing, and revolutionized European book-making. Gutenberg's printing technology spread rapidly throughout Europe and later the world.\\n\\nHis major work, the Gutenberg Bible (also known as the 42-line Bible), has been acclaimed for its high aesthetic and technical quality.\\n\\n## Printing Press\\n\\nAround 1439, Gutenberg was involved in a financial misadventure making polished metal mirrors (which were believed to capture holy light from religious relics) for sale to pilgrims to Aachen: in 1439 the city was planning to exhibit its collection of relics from Emperor Charlemagne but the event was delayed by one year due to a severe flood and the capital already spent could not be repaid. When the question of satisfying the investors came up, Gutenberg is said to have promised to share a “secret”. It has been widely speculated that this secret may have been the idea of printing with movable type. Also around 1439–1440, the Dutch Laurens Janszoon Coster came up with the idea of printing. Legend has it that the idea came to him “like a ray of light”.\\n\\n
\\n\\t\\\"Early\\n\\t
Early wooden printing press as depicted in 1568.
\\n
\\n\\nUntil at least 1444 he lived in Strasbourg, most likely in the St. Arbogast parish. It was in Strasbourg in 1440 that Gutenberg is said to have perfected and unveiled the secret of printing based on his research, mysteriously entitled Kunst und Aventur (art and enterprise). It is not clear what work he was engaged in, or whether some early trials with printing from movable type may have been conducted there. After this, there is a gap of four years in the record. In 1448, he was back in Mainz, where he took out a loan from his brother-in-law Arnold Gelthus, quite possibly for a printing press or related paraphernalia. By this date, Gutenberg may have been familiar with intaglio printing; it is claimed that he had worked on copper engravings with an artist known as the Master of Playing Cards.\\n\\nBy 1450, the press was in operation, and a German poem had been printed, possibly the first item to be printed there. Gutenberg was able to convince the wealthy moneylender Johann Fust for a loan of 800 guilders. Peter Schöffer, who became Fust’s son-in-law, also joined the enterprise. Schöffer had worked as a scribe in Paris and is believed to have designed some of the first typefaces.\\n\\n
\\n\\t
\\n\\t\\t

All that has been written to me about that marvelous man seen at Frankfurt is true. I have not seen complete Bibles but only a number of quires of various books of the Bible. The script was very neat and legible, not at all difficult to follow—your grace would be able to read it without effort, and indeed without glasses.

\\n\\t\\t
\\n\\t\\t\\t—Future pope Pius II in a letter to Cardinal Carvajal, March 1455\\n\\t\\t
\\n\\t
\\n
\\n\\nGutenberg's workshop was set up at Hof Humbrecht, a property belonging to a distant relative. It is not clear when Gutenberg conceived the Bible project, but for this he borrowed another 800 guilders from Fust, and work commenced in 1452. At the same time, the press was also printing other, more lucrative texts (possibly Latin grammars). There is also some speculation that there may have been two presses, one for the pedestrian texts, and one for the Bible. One of the profit-making enterprises of the new press was the printing of thousands of indulgences for the church, documented from 1454–55.\\n\\nIn 1455 Gutenberg completed his 42-line Bible, known as the Gutenberg Bible. About 180 copies were printed, most on paper and some on vellum.\\n\\n## Court Case\\n\\nSome time in 1456, there was a dispute between Gutenberg and Fust, and Fust demanded his money back, accusing Gutenberg of misusing the funds. Meanwhile the expenses of the Bible project had proliferated, and Gutenberg's debt now exceeded 20,000 guilders. Fust sued at the archbishop's court. A November 1455 legal document records that there was a partnership for a \\\"project of the books,\\\" the funds for which Gutenberg had used for other purposes, according to Fust. The court decided in favor of Fust, giving him control over the Bible printing workshop and half of all printed Bibles.\\n\\nThus Gutenberg was effectively bankrupt, but it appears he retained (or re-started) a small printing shop, and participated in the printing of a Bible in the town of Bamberg around 1459, for which he seems at least to have supplied the type. But since his printed books never carry his name or a date, it is difficult to be certain, and there is consequently a considerable scholarly debate on this subject. It is also possible that the large Catholicon dictionary, 300 copies of 754 pages, printed in Mainz in 1460, may have been executed in his workshop.\\n\\nMeanwhile, the Fust–Schöffer shop was the first in Europe to bring out a book with the printer's name and date, the Mainz Psalter of August 1457, and while proudly proclaiming the mechanical process by which it had been produced, it made no mention of Gutenberg.\\n\\n## Later Life\\n\\nIn 1462, during a conflict between two archbishops, Mainz was sacked by archbishop Adolph von Nassau, and Gutenberg was exiled. An old man by now, he moved to Eltville where he may have initiated and supervised a new printing press belonging to the brothers Bechtermünze.\\n\\nIn January 1465, Gutenberg's achievements were recognized and he was given the title Hofmann (gentleman of the court) by von Nassau. This honor included a stipend, an annual court outfit, as well as 2,180 litres of grain and 2,000 litres of wine tax-free. It is believed he may have moved back to Mainz around this time, but this is not certain.\\n\\n***\\n\\nGutenberg died in 1468 and was buried in the Franciscan church at Mainz, his contributions largely unknown. This church and the cemetery were later destroyed, and Gutenberg's grave is now lost.\\n\\nIn 1504, he was mentioned as the inventor of typography in a book by Professor Ivo Wittig. It was not until 1567 that the first portrait of Gutenberg, almost certainly an imaginary reconstruction, appeared in Heinrich Pantaleon's biography of famous Germans.\\n\\n## Printing Method With Movable Type\\n\\nGutenberg's early printing process, and what tests he may have made with movable type, are not known in great detail. His later Bibles were printed in such a way as to have required large quantities of type, some estimates suggesting as many as 100,000 individual sorts. Setting each page would take, perhaps, half a day, and considering all the work in loading the press, inking the type, pulling the impressions, hanging up the sheets, distributing the type, etc., it is thought that the Gutenberg–Fust shop might have employed as many as 25 craftsmen.\\n\\n![Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5](/media/movable-type.jpg)\\n\\n*Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5*\\n\\nGutenberg's technique of making movable type remains unclear. In the following decades, punches and copper matrices became standardized in the rapidly disseminating printing presses across Europe. Whether Gutenberg used this sophisticated technique or a somewhat primitive version has been the subject of considerable debate.\\n\\nIn the standard process of making type, a hard metal punch (made by punchcutting, with the letter carved back to front) is hammered into a softer copper bar, creating a matrix. This is then placed into a hand-held mould and a piece of type, or \\\"sort\\\", is cast by filling the mould with molten type-metal; this cools almost at once, and the resulting piece of type can be removed from the mould. The matrix can be reused to create hundreds, or thousands, of identical sorts so that the same character appearing anywhere within the book will appear very uniform, giving rise, over time, to the development of distinct styles of typefaces or fonts. After casting, the sorts are arranged into type-cases, and used to make up pages which are inked and printed, a procedure which can be repeated hundreds, or thousands, of times. The sorts can be reused in any combination, earning the process the name of “movable type”.\\n\\nThe invention of the making of types with punch, matrix and mold has been widely attributed to Gutenberg. However, recent evidence suggests that Gutenberg's process was somewhat different. If he used the punch and matrix approach, all his letters should have been nearly identical, with some variations due to miscasting and inking. However, the type used in Gutenberg's earliest work shows other variations.\\n\\n
\\n\\t
\\n\\t\\t

It is a press, certainly, but a press from which shall flow in inexhaustible streams… Through it, god will spread his word.

\\n\\t\\t
\\n\\t\\t\\t—Johannes Gutenberg\\n\\t\\t
\\n\\t
\\n
\\n\\nIn 2001, the physicist Blaise Agüera y Arcas and Princeton librarian Paul Needham, used digital scans of a Papal bull in the Scheide Library, Princeton, to carefully compare the same letters (types) appearing in different parts of the printed text. The irregularities in Gutenberg's type, particularly in simple characters such as the hyphen, suggested that the variations could not have come from either ink smear or from wear and damage on the pieces of metal on the types themselves. While some identical types are clearly used on other pages, other variations, subjected to detailed image analysis, suggested that they could not have been produced from the same matrix. Transmitted light pictures of the page also appeared to reveal substructures in the type that could not arise from traditional punchcutting techniques. They hypothesized that the method may have involved impressing simple shapes to create alphabets in “cuneiform” style in a matrix made of some soft material, perhaps sand. Casting the type would destroy the mould, and the matrix would need to be recreated to make each additional sort. This could explain the variations in the type, as well as the substructures observed in the printed images.\\n\\nThus, they feel that “the decisive factor for the birth of typography”, the use of reusable moulds for casting type, might have been a more progressive process than was previously thought. They suggest that the additional step of using the punch to create a mould that could be reused many times was not taken until twenty years later, in the 1470s. Others have not accepted some or all of their suggestions, and have interpreted the evidence in other ways, and the truth of the matter remains very uncertain.\\n\\nA 1568 history by Hadrianus Junius of Holland claims that the basic idea of the movable type came to Gutenberg from Laurens Janszoon Coster via Fust, who was apprenticed to Coster in the 1430s and may have brought some of his equipment from Haarlem to Mainz. While Coster appears to have experimented with moulds and castable metal type, there is no evidence that he had actually printed anything with this technology. He was an inventor and a goldsmith. However, there is one indirect supporter of the claim that Coster might be the inventor. The author of the Cologne Chronicle of 1499 quotes Ulrich Zell, the first printer of Cologne, that printing was performed in Mainz in 1450, but that some type of printing of lower quality had previously occurred in the Netherlands. However, the chronicle does not mention the name of Coster, while it actually credits Gutenberg as the \\\"first inventor of printing\\\" in the very same passage (fol. 312). The first securely dated book by Dutch printers is from 1471, and the Coster connection is today regarded as a mere legend.\\n\\nThe 19th century printer and typefounder Fournier Le Jeune suggested that Gutenberg might not have been using type cast with a reusable matrix, but possibly wooden types that were carved individually. A similar suggestion was made by Nash in 2004. This remains possible, albeit entirely unproven.\\n\\nIt has also been questioned whether Gutenberg used movable types at all. In 2004, Italian professor Bruno Fabbiani claimed that examination of the 42-line Bible revealed an overlapping of letters, suggesting that Gutenberg did not in fact use movable type (individual cast characters) but rather used whole plates made from a system somewhat like a modern typewriter, whereby the letters were stamped successively into the plate and then printed. However, most specialists regard the occasional overlapping of type as caused by paper movement over pieces of type of slightly unequal height.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"forkOwner\",\"name\":\"repo\",\"expression\":\"0eea554365f002d0f1572af9a58522d335a794d5\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:33:47 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4964", + "X-RateLimit-Reset": "1568126025", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7BF6:1510B:6A12A:8369B:5D77A63B", + "content-length": "3102", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1Njc4Njc=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzU2Nzg2NzowZWVhNTU0MzY1ZjAwMmQwZjE1NzJhZjlhNTg1MjJkMzM1YTc5NGQ1\",\"text\":\"---\\ntitle: \\\"A Brief History of Typography\\\"\\ndate: \\\"2016-02-02T22:40:32.169Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Design Inspiration\\\"\\ntags:\\n - \\\"Linotype\\\"\\n - \\\"Monotype\\\"\\n - \\\"History of typography\\\"\\n - \\\"Helvetica\\\"\\ndescription: \\\"Morbi in sem quis dui placerat ornare. Pellentesque odio nisi, euismod in, pharetra a, ultricies in, diam. Sed arcu. Cras consequat.\\\"\\ncanonical: ''\\n---\\n\\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \\n\\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\\n\\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-0.jpg)\\n\\n## Header Level 2\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \\n\\n
\\n\\t
\\n\\t\\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\\n\\t\\t
\\n\\t\\t\\t— Aliquam tincidunt mauris eu risus.\\n\\t\\t
\\n\\t
\\n
\\n\\n### Header Level 3\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\\n\\n```css\\n#header h1 a {\\n display: block;\\n width: 300px;\\n height: 80px;\\n}\\n```\\n\\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"forkOwner\",\"name\":\"repo\",\"expression\":\"6d51a38aed7139d2117724b1e307657b6ff2d043\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:33:47 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4963", + "X-RateLimit-Reset": "1568126025", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7BF2:1510F:11D3601:15A0223:5D77A63B", + "content-length": "1973", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1Njc4Njc=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzU2Nzg2Nzo2ZDUxYTM4YWVkNzEzOWQyMTE3NzI0YjFlMzA3NjU3YjZmZjJkMDQz\",\"text\":\"---\\ntitle: Perfecting the Art of Perfection\\ndate: \\\"2016-09-01T23:46:37.121Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Design Inspiration\\\"\\ntags:\\n - \\\"Handwriting\\\"\\n - \\\"Learning to write\\\"\\ndescription: \\\"Quisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\\\"\\ncanonical: ''\\n---\\n\\nQuisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\\n\\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-2.jpg)\\n\\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. \\n\\nPraesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"forkOwner\",\"name\":\"repo\",\"expression\":\"d0582dd245a3f408fb3fe2333bf01400007476e9\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:33:48 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4962", + "X-RateLimit-Reset": "1568126025", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7BF4:B4DC:A7D91E:CC1C16:5D77A63B", + "content-length": "2866", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1Njc4Njc=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzU2Nzg2NzpkMDU4MmRkMjQ1YTNmNDA4ZmIzZmUyMzMzYmYwMTQwMDAwNzQ3NmU5\",\"text\":\"---\\ntitle: The Origins of Social Stationery Lettering\\ndate: \\\"2016-12-01T22:40:32.169Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Design Culture\\\"\\ndescription: \\\"Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante.\\\"\\ncanonical: ''\\n---\\n\\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \\n\\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\\n\\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-3.jpg)\\n\\n## Header Level 2\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \\n\\n
\\n\\t
\\n\\t\\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\\n\\t\\t
\\n\\t\\t\\t— Aliquam tincidunt mauris eu risus.\\n\\t\\t
\\n\\t
\\n
\\n\\n### Header Level 3\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\\n\\n```css\\n#header h1 a {\\n display: block;\\n width: 300px;\\n height: 80px;\\n}\\n```\\n\\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"forkOwner\",\"name\":\"repo\",\"expression\":\"a532f0a9445cdf90a19c6812cff89d1674991774\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:33:48 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4961", + "X-RateLimit-Reset": "1568126025", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7A02:244EB:17909C3:1C9CD54:5D77A63B", + "content-length": "7803", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1Njc4Njc=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzU2Nzg2NzphNTMyZjBhOTQ0NWNkZjkwYTE5YzY4MTJjZmY4OWQxNjc0OTkxNzc0\",\"text\":\"---\\ntitle: Humane Typography in the Digital Age\\ndate: \\\"2017-08-19T22:40:32.169Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Typography\\\"\\ntags:\\n - \\\"Design\\\"\\n - \\\"Typography\\\"\\n - \\\"Web Development\\\"\\ndescription: \\\"An Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\\\"\\ncanonical: ''\\n---\\n\\n- [The first transition](#the-first-transition)\\n- [The digital age](#the-digital-age)\\n- [Loss of humanity through transitions](#loss-of-humanity-through-transitions)\\n- [Chasing perfection](#chasing-perfection)\\n\\nAn Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\\n\\nThe typography of this industrial age was no longer handcrafted. Mass production and profit became more important. Quantity mattered more than the quality. The books and printed works in general lost a part of its humanity. The typefaces were not produced by craftsmen anymore. It was the machines printing and tying the books together now. The craftsmen had to let go of their craft and became a cog in the process. An extension of the industrial machine.\\n\\nBut the victory of the industrialism didn’t mean that the craftsmen were completely extinct. The two worlds continued to coexist independently. Each recognising the good in the other — the power of industrialism and the humanity of craftsmanship. This was the second transition that would strip typography of a part of its humanity. We have to go 500 years back in time to meet the first one.\\n\\n## The first transition\\n\\nA similar conflict emerged after the invention of the first printing press in Europe. Johannes Gutenberg invented movable type and used it to produce different compositions. His workshop could print up to 240 impressions per hour. Until then, the books were being copied by hand. All the books were handwritten and decorated with hand drawn ornaments and figures. A process of copying a book was long but each book, even a copy, was a work of art.\\n\\nThe first printed books were, at first, perceived as inferior to the handwritten ones. They were smaller and cheaper to produce. Movable type provided the printers with flexibility that allowed them to print books in languages other than Latin. Gill describes the transition to industrialism as something that people needed and wanted. Something similar happened after the first printed books emerged. People wanted books in a language they understood and they wanted books they could take with them. They were hungry for knowledge and printed books satisfied this hunger.\\n\\n![42-line-bible.jpg](/media/42-line-bible.jpg)\\n\\n*The 42–Line Bible, printed by Gutenberg.*\\n\\nBut, through this transition, the book lost a large part of its humanity. The machine took over most of the process but craftsmanship was still a part of it. The typefaces were cut manually by the first punch cutters. The paper was made by hand. The illustrations and ornaments were still being hand drawn. These were the remains of the craftsmanship that went almost extinct in the times of Eric Gill.\\n\\n## The digital age\\n\\nThe first transition took away a large part of humanity from written communication. Industrialisation, the second transition described by Eric Gill, took away most of what was left. But it’s the third transition that stripped it naked. Typefaces are faceless these days. They’re just fonts on our computers. Hardly anyone knows their stories. Hardly anyone cares. Flicking through thousands of typefaces and finding the “right one” is a matter of minutes.\\n\\n> In the new computer age the proliferation of typefaces and type manipulations represents a new level of visual pollution threatening our culture. Out of thousands of typefaces, all we need are a few basic ones, and trash the rest.\\n>\\n— Massimo Vignelli\\n\\nTypography is not about typefaces. It’s not about what looks best, it’s about what feels right. What communicates the message best. Typography, in its essence, is about the message. “Typographical design should perform optically what the speaker creates through voice and gesture of his thoughts.”, as El Lissitzky, a famous Russian typographer, put it.\\n\\n## Loss of humanity through transitions\\n\\nEach transition took away a part of humanity from written language. Handwritten books being the most humane form and the digital typefaces being the least. Overuse of Helvetica is a good example. Messages are being told in a typeface just because it’s a safe option. It’s always there. Everyone knows it but yet, nobody knows it. Stop someone on the street and ask him what Helvetica is? Ask a designer the same question. Ask him where it came from, when, why and who designed it. Most of them will fail to answer these questions. Most of them used it in their precious projects but they still don’t spot it in the street.\\n\\n
\\n\\t
\\n\\t\\t

Knowledge of the quality of a typeface is of the greatest importance for the functional, aesthetic and psychological effect.

\\n\\t\\t
\\n\\t\\t\\t— Josef Mueller-Brockmann\\n\\t\\t
\\n\\t
\\n
\\n\\nTypefaces don’t look handmade these days. And that’s all right. They don’t have to. Industrialism took that away from them and we’re fine with it. We’ve traded that part of humanity for a process that produces more books that are easier to read. That can’t be bad. And it isn’t.\\n\\n> Humane typography will often be comparatively rough and even uncouth; but while a certain uncouthness does not seriously matter in humane works, uncouthness has no excuse whatever in the productions of the machine.\\n>\\n> — Eric Gill\\n\\nWe’ve come close to “perfection” in the last five centuries. The letters are crisp and without rough edges. We print our compositions with high–precision printers on a high quality, machine made paper.\\n\\n![type-through-time.jpg](/media/type-through-time.jpg)\\n\\n*Type through 5 centuries.*\\n\\nWe lost a part of ourselves because of this chase after perfection. We forgot about the craftsmanship along the way. And the worst part is that we don’t care. The transition to the digital age made that clear. We choose typefaces like clueless zombies. There’s no meaning in our work. Type sizes, leading, margins… It’s all just a few clicks or lines of code. The message isn’t important anymore. There’s no more “why” behind the “what”.\\n\\n## Chasing perfection\\n\\nHuman beings aren’t perfect. Perfection is something that will always elude us. There will always be a small part of humanity in everything we do. No matter how small that part, we should make sure that it transcends the limits of the medium. We have to think about the message first. What typeface should we use and why? Does the typeface match the message and what we want to communicate with it? What will be the leading and why? Will there be more typefaces in our design? On what ground will they be combined? What makes our design unique and why? This is the part of humanity that is left in typography. It might be the last part. Are we really going to give it up?\\n\\n*Originally published by [Matej Latin](http://matejlatin.co.uk/) on [Medium](https://medium.com/design-notes/humane-typography-in-the-digital-age-9bd5c16199bd?ref=webdesignernews.com#.lygo82z0x).*\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/forkOwner/repo/contents/forkOwner/repo/posts/1970-01-01-first-title.json?ts=300&ref=refs/meta/_netlify_cms", + "headers": { + "Date": "Tue, 10 Sep 2019 13:33:52 GMT", + "Content-Type": "application/vnd.github.VERSION.raw; charset=utf-8", + "Content-Length": "468", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4948", + "X-RateLimit-Reset": "1568126016", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"b7953b5b2815d858dd0f67d5cce660774d85827b\"", + "Last-Modified": "Tue, 10 Sep 2019 13:32:27 GMT", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BB8:244E7:1148B45:1515A0D:5D77A63F", + "connection": "keep-alive" + }, + "response": "{\"type\":\"PR\",\"user\":\"forkOwner\",\"status\":\"draft\",\"branch\":\"cms/forkOwner/repo/posts/1970-01-01-first-title\",\"collection\":\"posts\",\"commitMessage\":\"Create Post “1970-01-01-first-title”\",\"title\":\"first title\",\"description\":\"first description\",\"objects\":{\"entry\":{\"path\":\"content/posts/1970-01-01-first-title.md\",\"sha\":\"a041245814892e3f73f63ca54333fda649b7fc0b\"},\"files\":[]},\"timeStamp\":\"1970-01-01T00:00:00.300Z\"}", + "status": 200 + }, + { + "body": "{\"operationName\":\"unpublishedBranchFile\",\"variables\":{\"headOwner\":\"forkOwner\",\"headRepoName\":\"repo\",\"headExpression\":\"cms/forkOwner/repo/posts/1970-01-01-first-title:content/posts/1970-01-01-first-title.md\",\"baseOwner\":\"owner\",\"baseRepoName\":\"repo\",\"baseExpression\":\"master:content/posts/1970-01-01-first-title.md\"},\"query\":\"query unpublishedBranchFile($headOwner: String!, $headRepoName: String!, $headExpression: String!, $baseOwner: String!, $baseRepoName: String!, $baseExpression: String!) {\\n head: repository(owner: $headOwner, name: $headRepoName) {\\n ...RepositoryParts\\n object(expression: $headExpression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n base: repository(owner: $baseOwner, name: $baseRepoName) {\\n ...RepositoryParts\\n object(expression: $baseExpression) {\\n ... on Blob {\\n id\\n oid\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:33:52 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4960", + "X-RateLimit-Reset": "1568126025", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7BBA:B4DC:A7DDF8:CC21FC:5D77A640", + "content-length": "189", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"head\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1Njc4Njc=\",\"__typename\":\"Repository\",\"object\":null},\"base\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"object\":null}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"master:content/posts/1970-01-01-first-title.md\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:33:53 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4959", + "X-RateLimit-Reset": "1568126025", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7BBC:2B24:174A11D:1C4E7E8:5D77A641", + "content-length": "106", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"object\":null}}}\n", + "status": 200 + }, + { + "body": "{\"content\":\"LS0tCnRlbXBsYXRlOiBwb3N0CnRpdGxlOiBmaXJzdCB0aXRsZQpkcmFmdDogdHJ1ZQpkYXRlOiAxOTcwLTAxLTAxVDAwOjAwOjAwLjAwMFoKZGVzY3JpcHRpb246IGZpcnN0IGRlc2NyaXB0aW9uCmNhdGVnb3J5OiBmaXJzdCBjYXRlZ29yeQp0YWdzOgogIC0gdGFnMQotLS0KZmlyc3QgYm9keQo=\",\"encoding\":\"base64\"}", + "method": "POST", + "url": "/repos/forkOwner/repo/git/blobs?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:33:54 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "212", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4947", + "X-RateLimit-Reset": "1568126016", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"e534bfcd1b6dc6f9245f32d16a0c64c9\"", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/forkOwner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BBE:15110:1807CB7:1D2F3B1:5D77A641", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"a041245814892e3f73f63ca54333fda649b7fc0b\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b\"\n}\n", + "status": 201 + }, + { + "body": "{\"operationName\":\"branch\",\"variables\":{\"owner\":\"forkOwner\",\"name\":\"repo\",\"qualifiedName\":\"refs/heads/master\"},\"query\":\"query branch($owner: String!, $name: String!, $qualifiedName: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n branch: ref(qualifiedName: $qualifiedName) {\\n ...BranchParts\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BranchParts on Ref {\\n commit: target {\\n ...ObjectParts\\n __typename\\n }\\n id\\n name\\n repository {\\n ...RepositoryParts\\n __typename\\n }\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:33:54 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4958", + "X-RateLimit-Reset": "1568126025", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7BC0:1510F:11D3EF3:15A0D37:5D77A642", + "content-length": "429", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1Njc4Njc=\",\"__typename\":\"Repository\",\"branch\":{\"commit\":{\"id\":\"MDY6Q29tbWl0MjA3NTY3ODY3OjcyNjE3MmRlYWU5OWM4YTJjZWE0YzcxZTczNGEwMmE3OTNkNGQ5ZTU=\",\"sha\":\"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\"__typename\":\"Commit\"},\"id\":\"MDM6UmVmMjA3NTY3ODY3Om1hc3Rlcg==\",\"name\":\"master\",\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1Njc4Njc=\",\"__typename\":\"Repository\"},\"__typename\":\"Ref\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"commitTree\",\"variables\":{\"owner\":\"forkOwner\",\"name\":\"repo\",\"sha\":\"726172deae99c8a2cea4c71e734a02a793d4d9e5\"},\"query\":\"query commitTree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n commit: object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n tree {\\n ...ObjectParts\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:33:55 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4957", + "X-RateLimit-Reset": "1568126025", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7BC2:B4E0:163F2B0:1B125CB:5D77A643", + "content-length": "5040", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1Njc4Njc=\",\"__typename\":\"Repository\",\"commit\":{\"id\":\"MDY6Q29tbWl0MjA3NTY3ODY3OjcyNjE3MmRlYWU5OWM4YTJjZWE0YzcxZTczNGEwMmE3OTNkNGQ5ZTU=\",\"sha\":\"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\"__typename\":\"Commit\",\"tree\":{\"id\":\"MDQ6VHJlZTIwNzU2Nzg2NzpjNWI3ZjZkNjc0YmExOTNiYjdiNGE1ZmNmNDkzMzAzNGUxYjdmMmI3\",\"sha\":\"c5b7f6d674ba193bb7b4a5fcf4933034e1b7f2b7\",\"__typename\":\"Tree\",\"entries\":[{\"path\":\".circleci\",\"sha\":\"e5e9af3301cac61f120b8e4d40b1733c7a45685a\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\".eslintignore\",\"sha\":\"80b4531b026d19f8fa589efd122e76199d23f967\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".eslintrc.js\",\"sha\":\"370684994aaed5b858da3a006f48cfa57e88fd27\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".flowconfig\",\"sha\":\"14aa2ac4cc0e15223ad98630a6f1325fc81f8043\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".gitattributes\",\"sha\":\"10a369ddf4f603337cabc6f21646508323941ce1\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".github\",\"sha\":\"4ebeece548b52b20af59622354530a6d33b50b43\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\".gitignore\",\"sha\":\"c071ba35b0e49899bab6d610a68eef667dbbf157\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".prettierignore\",\"sha\":\"393f050e123d998cf8c8b362ff95cc8ac4d250e5\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".prettierrc\",\"sha\":\"e52ad05bb13b084d7949dd76e1b2517455162150\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".stylelintrc.json\",\"sha\":\"4b4c9698d10d756f5faa025659b86375428ed0a7\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".vscode\",\"sha\":\"286e97ec0113ea8242b41ac222e2c3e8077e6f1e\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"CHANGELOG.md\",\"sha\":\"070a5d4f0eacd2dc0be81ae8996f8982de43046e\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"CODE_OF_CONDUCT.md\",\"sha\":\"92bc7565ff0ee145a0041b5179a820f14f39ab22\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"CONTRIBUTING.md\",\"sha\":\"8552aa241254a61258e1ff9666ab36f32fb1e3b9\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"LICENSE\",\"sha\":\"42d85938357b49977c126ca03b199129082d4fb8\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"README.md\",\"sha\":\"19df50a78654c8d757ca7f38447aa3d09c7abcce\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"backend\",\"sha\":\"b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"config.js\",\"sha\":\"58afd573bbb69fcca000efd0f5d90b93c93a98dd\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"content\",\"sha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"flow-typed\",\"sha\":\"86c32fd6c3118be5e0dbbb231a834447357236c6\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"flow\",\"sha\":\"0af45ad00d155c8d8c7407d913ff85278244c9ce\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"gatsby-browser.js\",\"sha\":\"9bd2c9dce175f04980e91cd9dc295a299e3cdb80\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"gatsby-config.js\",\"sha\":\"353a109dad62e3f25bf9f5e6a2167f21a6c8b459\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"gatsby-node.js\",\"sha\":\"14a207883c2093d2cc071bc5a464e165bcc1fead\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"gatsby\",\"sha\":\"4f23c06cd1740bf78304d2c0b29bf6bfdf427981\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"jest\",\"sha\":\"5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"netlify.toml\",\"sha\":\"599b99cc5700404fde316a7ede829776f23e7d45\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"package.json\",\"sha\":\"9d777616438b90a18f1a4ebfd5f114b4c06c6f17\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"postcss-config.js\",\"sha\":\"d216501e9b351a72e00ba0b7459a6500e27e7da2\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"renovate.json\",\"sha\":\"dcc309398785698b8870545c32051a3d72dd8271\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"serverless-scripts\",\"sha\":\"ee3701f2fbfc7196ba340f6481d1387d20527898\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"serverless-single-page-app-plugin\",\"sha\":\"08763fcfba643a06a452398517019bea4a5850ba\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"serverless.yml\",\"sha\":\"20b22c5fad229f35d029bf6614d333d82fe8a987\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"src\",\"sha\":\"8cdb35a88232c0f32f12f130c92c7cc55f97f471\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"static\",\"sha\":\"53c6380a600a030d3722bff7ecde36f749fb6964\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"utils\",\"sha\":\"a592549c9f74db40b51efefcda2fd76810405f27\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"yarn.lock\",\"sha\":\"475c9c1924ca752a0686303e2fdeb7b13ad75f57\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"}]}}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"tree\",\"variables\":{\"owner\":\"forkOwner\",\"name\":\"repo\",\"sha\":\"726172deae99c8a2cea4c71e734a02a793d4d9e5\"},\"query\":\"query tree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n tree: object(oid: $sha) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:33:55 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4956", + "X-RateLimit-Reset": "1568126025", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7BC4:9D21:16C63BD:1BBC80E:5D77A643", + "content-length": "260", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1Njc4Njc=\",\"__typename\":\"Repository\",\"tree\":{\"id\":\"MDY6Q29tbWl0MjA3NTY3ODY3OjcyNjE3MmRlYWU5OWM4YTJjZWE0YzcxZTczNGEwMmE3OTNkNGQ5ZTU=\",\"sha\":\"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\"__typename\":\"Commit\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"commitTree\",\"variables\":{\"owner\":\"forkOwner\",\"name\":\"repo\",\"sha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\"},\"query\":\"query commitTree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n commit: object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n tree {\\n ...ObjectParts\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:33:56 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4955", + "X-RateLimit-Reset": "1568126025", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7BC6:3ED82:18011AC:1D31CC8:5D77A643", + "content-length": "256", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1Njc4Njc=\",\"__typename\":\"Repository\",\"commit\":{\"id\":\"MDQ6VHJlZTIwNzU2Nzg2NzowMjk0ZWYxMDZjNTg3NDM5MDdhNWM4NTVkYTFlYjBmODdiMGI2ZGZj\",\"sha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\"__typename\":\"Tree\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"tree\",\"variables\":{\"owner\":\"forkOwner\",\"name\":\"repo\",\"sha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\"},\"query\":\"query tree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n tree: object(oid: $sha) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:33:56 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4954", + "X-RateLimit-Reset": "1568126025", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7BC8:2B15:4BFF37:5C3540:5D77A643", + "content-length": "502", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1Njc4Njc=\",\"__typename\":\"Repository\",\"tree\":{\"id\":\"MDQ6VHJlZTIwNzU2Nzg2NzowMjk0ZWYxMDZjNTg3NDM5MDdhNWM4NTVkYTFlYjBmODdiMGI2ZGZj\",\"sha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\"__typename\":\"Tree\",\"entries\":[{\"path\":\"pages\",\"sha\":\"1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"posts\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"}]}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"tree\",\"variables\":{\"owner\":\"forkOwner\",\"name\":\"repo\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\"},\"query\":\"query tree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n tree: object(oid: $sha) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:33:57 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4953", + "X-RateLimit-Reset": "1568126025", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7BCC:9D1F:9EDA3C:C1D5EB:5D77A644", + "content-length": "1075", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1Njc4Njc=\",\"__typename\":\"Repository\",\"tree\":{\"id\":\"MDQ6VHJlZTIwNzU2Nzg2NzozNDg5MjU3NWUyMTZjMDZlNzU3MDkzZjAzNmJkOGUwNTdjNzhhNTJm\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"__typename\":\"Tree\",\"entries\":[{\"path\":\"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\"sha\":\"6d51a38aed7139d2117724b1e307657b6ff2d043\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\"sha\":\"d0582dd245a3f408fb3fe2333bf01400007476e9\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"2016-02-02---A-Brief-History-of-Typography.md\",\"sha\":\"0eea554365f002d0f1572af9a58522d335a794d5\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"2017-18-08---The-Birth-of-Movable-Type.md\",\"sha\":\"44f78c474d04273185a95821426f75affc9b0044\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\"sha\":\"a532f0a9445cdf90a19c6812cff89d1674991774\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"}]}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"commitTree\",\"variables\":{\"owner\":\"forkOwner\",\"name\":\"repo\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\"},\"query\":\"query commitTree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n commit: object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n tree {\\n ...ObjectParts\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:33:57 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4952", + "X-RateLimit-Reset": "1568126025", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7BCA:2B24:174A5FB:1C4EE33:5D77A644", + "content-length": "256", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1Njc4Njc=\",\"__typename\":\"Repository\",\"commit\":{\"id\":\"MDQ6VHJlZTIwNzU2Nzg2NzozNDg5MjU3NWUyMTZjMDZlNzU3MDkzZjAzNmJkOGUwNTdjNzhhNTJm\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"__typename\":\"Tree\"}}}}\n", + "status": 200 + }, + { + "body": "{\"base_tree\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"tree\":[{\"path\":\"1970-01-01-first-title.md\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"a041245814892e3f73f63ca54333fda649b7fc0b\"}]}", + "method": "POST", + "url": "/repos/forkOwner/repo/git/trees?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:33:58 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "2397", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4946", + "X-RateLimit-Reset": "1568126016", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"f0da3cfe1d93508ff3394044fecf0870\"", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/forkOwner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BCE:1510B:6A198:83724:5D77A645", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a041245814892e3f73f63ca54333fda649b7fc0b\",\n \"size\": 167,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b\"\n },\n {\n \"path\": \"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"size\": 1707,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\"\n },\n {\n \"path\": \"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"size\": 2565,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\"\n },\n {\n \"path\": \"2016-02-02---A-Brief-History-of-Typography.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"0eea554365f002d0f1572af9a58522d335a794d5\",\n \"size\": 2786,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\"\n },\n {\n \"path\": \"2017-18-08---The-Birth-of-Movable-Type.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"44f78c474d04273185a95821426f75affc9b0044\",\n \"size\": 16071,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\"\n },\n {\n \"path\": \"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"size\": 7465,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"base_tree\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\"tree\":[{\"path\":\"posts\",\"mode\":\"040000\",\"type\":\"tree\",\"sha\":\"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\"parentSha\":\"34892575e216c06e757093f036bd8e057c78a52f\"}]}", + "method": "POST", + "url": "/repos/forkOwner/repo/git/trees?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:33:59 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "846", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4945", + "X-RateLimit-Reset": "1568126016", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"2a4689a3495349436da3f799f67c3aa9\"", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/forkOwner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BD0:2B24:174A8DD:1C4F1E3:5D77A646", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"tree\": [\n {\n \"path\": \"pages\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\"\n },\n {\n \"path\": \"posts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"base_tree\":\"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\"tree\":[{\"path\":\"content\",\"mode\":\"040000\",\"type\":\"tree\",\"sha\":\"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\"parentSha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\"}]}", + "method": "POST", + "url": "/repos/forkOwner/repo/git/trees?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:33:59 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "11959", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4944", + "X-RateLimit-Reset": "1568126016", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"f36a35e8ea247dd844853de0d6154f29\"", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/forkOwner/repo/git/trees/daee8d5d15d144e8779955166a2afeccde2770e1", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BD2:244E7:114943E:1516549:5D77A647", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"daee8d5d15d144e8779955166a2afeccde2770e1\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/daee8d5d15d144e8779955166a2afeccde2770e1\",\n \"tree\": [\n {\n \"path\": \".circleci\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"e5e9af3301cac61f120b8e4d40b1733c7a45685a\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/e5e9af3301cac61f120b8e4d40b1733c7a45685a\"\n },\n {\n \"path\": \".eslintignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"80b4531b026d19f8fa589efd122e76199d23f967\",\n \"size\": 39,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/80b4531b026d19f8fa589efd122e76199d23f967\"\n },\n {\n \"path\": \".eslintrc.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"370684994aaed5b858da3a006f48cfa57e88fd27\",\n \"size\": 414,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/370684994aaed5b858da3a006f48cfa57e88fd27\"\n },\n {\n \"path\": \".flowconfig\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14aa2ac4cc0e15223ad98630a6f1325fc81f8043\",\n \"size\": 283,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/14aa2ac4cc0e15223ad98630a6f1325fc81f8043\"\n },\n {\n \"path\": \".gitattributes\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"10a369ddf4f603337cabc6f21646508323941ce1\",\n \"size\": 135,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/10a369ddf4f603337cabc6f21646508323941ce1\"\n },\n {\n \"path\": \".github\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4ebeece548b52b20af59622354530a6d33b50b43\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/4ebeece548b52b20af59622354530a6d33b50b43\"\n },\n {\n \"path\": \".gitignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"c071ba35b0e49899bab6d610a68eef667dbbf157\",\n \"size\": 169,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/c071ba35b0e49899bab6d610a68eef667dbbf157\"\n },\n {\n \"path\": \".prettierignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"393f050e123d998cf8c8b362ff95cc8ac4d250e5\",\n \"size\": 45,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/393f050e123d998cf8c8b362ff95cc8ac4d250e5\"\n },\n {\n \"path\": \".prettierrc\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e52ad05bb13b084d7949dd76e1b2517455162150\",\n \"size\": 223,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/e52ad05bb13b084d7949dd76e1b2517455162150\"\n },\n {\n \"path\": \".stylelintrc.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"4b4c9698d10d756f5faa025659b86375428ed0a7\",\n \"size\": 718,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/4b4c9698d10d756f5faa025659b86375428ed0a7\"\n },\n {\n \"path\": \".vscode\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"286e97ec0113ea8242b41ac222e2c3e8077e6f1e\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/286e97ec0113ea8242b41ac222e2c3e8077e6f1e\"\n },\n {\n \"path\": \"CHANGELOG.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"070a5d4f0eacd2dc0be81ae8996f8982de43046e\",\n \"size\": 2113,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/070a5d4f0eacd2dc0be81ae8996f8982de43046e\"\n },\n {\n \"path\": \"CODE_OF_CONDUCT.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"92bc7565ff0ee145a0041b5179a820f14f39ab22\",\n \"size\": 3355,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/92bc7565ff0ee145a0041b5179a820f14f39ab22\"\n },\n {\n \"path\": \"CONTRIBUTING.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"8552aa241254a61258e1ff9666ab36f32fb1e3b9\",\n \"size\": 3548,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/8552aa241254a61258e1ff9666ab36f32fb1e3b9\"\n },\n {\n \"path\": \"LICENSE\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"42d85938357b49977c126ca03b199129082d4fb8\",\n \"size\": 1091,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/42d85938357b49977c126ca03b199129082d4fb8\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"19df50a78654c8d757ca7f38447aa3d09c7abcce\",\n \"size\": 3698,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/19df50a78654c8d757ca7f38447aa3d09c7abcce\"\n },\n {\n \"path\": \"backend\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\"\n },\n {\n \"path\": \"config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"58afd573bbb69fcca000efd0f5d90b93c93a98dd\",\n \"size\": 853,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/58afd573bbb69fcca000efd0f5d90b93c93a98dd\"\n },\n {\n \"path\": \"content\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639\"\n },\n {\n \"path\": \"flow-typed\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"86c32fd6c3118be5e0dbbb231a834447357236c6\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/86c32fd6c3118be5e0dbbb231a834447357236c6\"\n },\n {\n \"path\": \"flow\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"0af45ad00d155c8d8c7407d913ff85278244c9ce\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/0af45ad00d155c8d8c7407d913ff85278244c9ce\"\n },\n {\n \"path\": \"gatsby-browser.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9bd2c9dce175f04980e91cd9dc295a299e3cdb80\",\n \"size\": 90,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/9bd2c9dce175f04980e91cd9dc295a299e3cdb80\"\n },\n {\n \"path\": \"gatsby-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"353a109dad62e3f25bf9f5e6a2167f21a6c8b459\",\n \"size\": 7228,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/353a109dad62e3f25bf9f5e6a2167f21a6c8b459\"\n },\n {\n \"path\": \"gatsby-node.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14a207883c2093d2cc071bc5a464e165bcc1fead\",\n \"size\": 409,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/14a207883c2093d2cc071bc5a464e165bcc1fead\"\n },\n {\n \"path\": \"gatsby\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4f23c06cd1740bf78304d2c0b29bf6bfdf427981\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/4f23c06cd1740bf78304d2c0b29bf6bfdf427981\"\n },\n {\n \"path\": \"jest\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\"\n },\n {\n \"path\": \"netlify.toml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"599b99cc5700404fde316a7ede829776f23e7d45\",\n \"size\": 137,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/599b99cc5700404fde316a7ede829776f23e7d45\"\n },\n {\n \"path\": \"package.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9d777616438b90a18f1a4ebfd5f114b4c06c6f17\",\n \"size\": 6855,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/9d777616438b90a18f1a4ebfd5f114b4c06c6f17\"\n },\n {\n \"path\": \"postcss-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d216501e9b351a72e00ba0b7459a6500e27e7da2\",\n \"size\": 703,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/d216501e9b351a72e00ba0b7459a6500e27e7da2\"\n },\n {\n \"path\": \"renovate.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"dcc309398785698b8870545c32051a3d72dd8271\",\n \"size\": 460,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/dcc309398785698b8870545c32051a3d72dd8271\"\n },\n {\n \"path\": \"serverless-scripts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ee3701f2fbfc7196ba340f6481d1387d20527898\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/ee3701f2fbfc7196ba340f6481d1387d20527898\"\n },\n {\n \"path\": \"serverless-single-page-app-plugin\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"08763fcfba643a06a452398517019bea4a5850ba\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/08763fcfba643a06a452398517019bea4a5850ba\"\n },\n {\n \"path\": \"serverless.yml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"20b22c5fad229f35d029bf6614d333d82fe8a987\",\n \"size\": 7803,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/20b22c5fad229f35d029bf6614d333d82fe8a987\"\n },\n {\n \"path\": \"src\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"8cdb35a88232c0f32f12f130c92c7cc55f97f471\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/8cdb35a88232c0f32f12f130c92c7cc55f97f471\"\n },\n {\n \"path\": \"static\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"53c6380a600a030d3722bff7ecde36f749fb6964\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/53c6380a600a030d3722bff7ecde36f749fb6964\"\n },\n {\n \"path\": \"utils\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"a592549c9f74db40b51efefcda2fd76810405f27\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/a592549c9f74db40b51efefcda2fd76810405f27\"\n },\n {\n \"path\": \"yarn.lock\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"475c9c1924ca752a0686303e2fdeb7b13ad75f57\",\n \"size\": 793903,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/475c9c1924ca752a0686303e2fdeb7b13ad75f57\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"message\":\"Create Post “1970-01-01-first-title”\",\"tree\":\"daee8d5d15d144e8779955166a2afeccde2770e1\",\"parents\":[\"726172deae99c8a2cea4c71e734a02a793d4d9e5\"]}", + "method": "POST", + "url": "/repos/forkOwner/repo/git/commits?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:34:00 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "1565", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4943", + "X-RateLimit-Reset": "1568126016", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"d91b082739c2a16f07a7c7b9db4b7735\"", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/forkOwner/repo/git/commits/794bf5159c62a1714d38a3935c0812e75f52863e", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BD4:15110:180872A:1D300D5:5D77A648", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"794bf5159c62a1714d38a3935c0812e75f52863e\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NTY3ODY3Ojc5NGJmNTE1OWM2MmExNzE0ZDM4YTM5MzVjMDgxMmU3NWY1Mjg2M2U=\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/794bf5159c62a1714d38a3935c0812e75f52863e\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/794bf5159c62a1714d38a3935c0812e75f52863e\",\n \"author\": {\n \"name\": \"forkOwner\",\n \"email\": \"53494188+forkOwner@users.noreply.github.com\",\n \"date\": \"2019-09-10T13:34:00Z\"\n },\n \"committer\": {\n \"name\": \"forkOwner\",\n \"email\": \"53494188+forkOwner@users.noreply.github.com\",\n \"date\": \"2019-09-10T13:34:00Z\"\n },\n \"tree\": {\n \"sha\": \"daee8d5d15d144e8779955166a2afeccde2770e1\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/daee8d5d15d144e8779955166a2afeccde2770e1\"\n },\n \"message\": \"Create Post “1970-01-01-first-title”\",\n \"parents\": [\n {\n \"sha\": \"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/726172deae99c8a2cea4c71e734a02a793d4d9e5\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "status": 201 + }, + { + "body": "{\"operationName\":\"createBranch\",\"variables\":{\"createRefInput\":{\"name\":\"refs/heads/cms/forkOwner/repo/posts/1970-01-01-first-title\",\"oid\":\"794bf5159c62a1714d38a3935c0812e75f52863e\",\"repositoryId\":\"MDEwOlJlcG9zaXRvcnkyMDc1Njc4Njc=\"}},\"query\":\"mutation createBranch($createRefInput: CreateRefInput!) {\\n createRef(input: $createRefInput) {\\n branch: ref {\\n ...BranchParts\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment BranchParts on Ref {\\n commit: target {\\n ...ObjectParts\\n __typename\\n }\\n id\\n name\\n repository {\\n ...RepositoryParts\\n __typename\\n }\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:34:02 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4951", + "X-RateLimit-Reset": "1568126025", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7BD6:15110:1808908:1D30329:5D77A649", + "content-length": "604", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"createRef\":{\"branch\":{\"commit\":{\"id\":\"MDY6Q29tbWl0MjA3NTY3ODY3Ojc5NGJmNTE1OWM2MmExNzE0ZDM4YTM5MzVjMDgxMmU3NWY1Mjg2M2U=\",\"sha\":\"794bf5159c62a1714d38a3935c0812e75f52863e\",\"__typename\":\"Commit\"},\"id\":\"MDM6UmVmMjA3NTY3ODY3OmNtcy9lcmV6cm9rYWgtdGVzdC9nYXRzYnktbmV0bGlmeS1jbXMtYXdzLTE1NjgxMjIwODcxNzQtNjVyMXMwa3U2Ym8vcG9zdHMvMTk3MC0wMS0wMS1maXJzdC10aXRsZQ==\",\"name\":\"cms/forkOwner/repo/posts/1970-01-01-first-title\",\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1Njc4Njc=\",\"__typename\":\"Repository\"},\"__typename\":\"Ref\"},\"__typename\":\"CreateRefPayload\"}}}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/forkOwner/repo/git/refs/meta/_netlify_cms?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:34: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": "1568126016", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"4ee0d5cc2133d4feff0de1d7644813e1\"", + "Last-Modified": "Tue, 10 Sep 2019 13:31:48 GMT", + "X-Poll-Interval": "300", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BD8:244E7:11498D6:1516B1D:5D77A64A", + "content-length": "494", + "connection": "keep-alive" + }, + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NTY3ODY3OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"2bb98e1b99325f069356fb8731fae41b093e1bbc\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/2bb98e1b99325f069356fb8731fae41b093e1bbc\"\n }\n}\n", + "status": 200 + }, + { + "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJ1c2VyIjoiZm9ya093bmVyIiwic3RhdHVzIjoiZHJhZnQiLCJicmFuY2giOiJjbXMvZm9ya093bmVyL3JlcG8vcG9zdHMvMTk3MC0wMS0wMS1maXJzdC10aXRsZSIsImNvbGxlY3Rpb24iOiJwb3N0cyIsImNvbW1pdE1lc3NhZ2UiOiJDcmVhdGUgUG9zdCDigJwxOTcwLTAxLTAxLWZpcnN0LXRpdGxl4oCdIiwidGl0bGUiOiJmaXJzdCB0aXRsZSIsImRlc2NyaXB0aW9uIjoiZmlyc3QgZGVzY3JpcHRpb24iLCJvYmplY3RzIjp7ImVudHJ5Ijp7InBhdGgiOiJjb250ZW50L3Bvc3RzLzE5NzAtMDEtMDEtZmlyc3QtdGl0bGUubWQiLCJzaGEiOiJhMDQxMjQ1ODE0ODkyZTNmNzNmNjNjYTU0MzMzZmRhNjQ5YjdmYzBiIn0sImZpbGVzIjpbXX0sInRpbWVTdGFtcCI6IjE5NzAtMDEtMDFUMDA6MDA6MDAuMzAwWiJ9\",\"encoding\":\"base64\"}", + "method": "POST", + "url": "/repos/forkOwner/repo/git/blobs?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:34:04 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "212", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4941", + "X-RateLimit-Reset": "1568126016", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"54f6490b9715c8c0813a4ff80c9f09f4\"", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/forkOwner/repo/git/blobs/b7953b5b2815d858dd0f67d5cce660774d85827b", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BDA:1510F:11D4B59:15A1C84:5D77A64B", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"b7953b5b2815d858dd0f67d5cce660774d85827b\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/b7953b5b2815d858dd0f67d5cce660774d85827b\"\n}\n", + "status": 201 + }, + { + "body": "{\"operationName\":\"tree\",\"variables\":{\"owner\":\"forkOwner\",\"name\":\"repo\",\"sha\":\"2bb98e1b99325f069356fb8731fae41b093e1bbc\"},\"query\":\"query tree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n tree: object(oid: $sha) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:34:05 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4950", + "X-RateLimit-Reset": "1568126025", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7BDE:3ED82:1802033:1D32EDE:5D77A64C", + "content-length": "260", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1Njc4Njc=\",\"__typename\":\"Repository\",\"tree\":{\"id\":\"MDY6Q29tbWl0MjA3NTY3ODY3OjJiYjk4ZTFiOTkzMjVmMDY5MzU2ZmI4NzMxZmFlNDFiMDkzZTFiYmM=\",\"sha\":\"2bb98e1b99325f069356fb8731fae41b093e1bbc\",\"__typename\":\"Commit\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"commitTree\",\"variables\":{\"owner\":\"forkOwner\",\"name\":\"repo\",\"sha\":\"2bb98e1b99325f069356fb8731fae41b093e1bbc\"},\"query\":\"query commitTree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n commit: object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n tree {\\n ...ObjectParts\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:34:05 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4949", + "X-RateLimit-Reset": "1568126025", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7BDC:1510F:11D4C96:15A1E0C:5D77A64C", + "content-length": "685", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1Njc4Njc=\",\"__typename\":\"Repository\",\"commit\":{\"id\":\"MDY6Q29tbWl0MjA3NTY3ODY3OjJiYjk4ZTFiOTkzMjVmMDY5MzU2ZmI4NzMxZmFlNDFiMDkzZTFiYmM=\",\"sha\":\"2bb98e1b99325f069356fb8731fae41b093e1bbc\",\"__typename\":\"Commit\",\"tree\":{\"id\":\"MDQ6VHJlZTIwNzU2Nzg2NzoxMmZiYWNmYmIzOTY3NDlhNDViMjJjMGFiNTIwYjU5MjdkYTY0ODhk\",\"sha\":\"12fbacfbb396749a45b22c0ab520b5927da6488d\",\"__typename\":\"Tree\",\"entries\":[{\"path\":\"README.md\",\"sha\":\"98787d1bd948850444433e91a43091a76c4eb455\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"forkOwner\",\"sha\":\"a03cc9e4fd5f46ff1a1383b22aa4edc809590222\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"}]}}}}}\n", + "status": 200 + }, + { + "body": "{\"base_tree\":\"2bb98e1b99325f069356fb8731fae41b093e1bbc\",\"tree\":[{\"path\":\"forkOwner/repo/posts/1970-01-01-first-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"b7953b5b2815d858dd0f67d5cce660774d85827b\"}]}", + "method": "POST", + "url": "/repos/forkOwner/repo/git/trees?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:34:05 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "878", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4940", + "X-RateLimit-Reset": "1568126016", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"649c0edb639d5d37a4d77f313f2c2134\"", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/forkOwner/repo/git/trees/12fbacfbb396749a45b22c0ab520b5927da6488d", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BE0:B4DC:A7EA46:CC30FF:5D77A64D", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"12fbacfbb396749a45b22c0ab520b5927da6488d\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/12fbacfbb396749a45b22c0ab520b5927da6488d\",\n \"tree\": [\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n },\n {\n \"path\": \"forkOwner\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"a03cc9e4fd5f46ff1a1383b22aa4edc809590222\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/a03cc9e4fd5f46ff1a1383b22aa4edc809590222\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"message\":\"Updating “forkOwner/repo/posts/1970-01-01-first-title” metadata\",\"tree\":\"12fbacfbb396749a45b22c0ab520b5927da6488d\",\"parents\":[\"2bb98e1b99325f069356fb8731fae41b093e1bbc\"]}", + "method": "POST", + "url": "/repos/forkOwner/repo/git/commits?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:34:06 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "1641", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4939", + "X-RateLimit-Reset": "1568126016", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"87f5d302ebbc4cede238870f61cfea9e\"", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/forkOwner/repo/git/commits/36adba37d7d6bc84db911f7f7961c9792beb5a56", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BE2:244E4:AB15CC:CF3E72:5D77A64E", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"36adba37d7d6bc84db911f7f7961c9792beb5a56\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NTY3ODY3OjM2YWRiYTM3ZDdkNmJjODRkYjkxMWY3Zjc5NjFjOTc5MmJlYjVhNTY=\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/36adba37d7d6bc84db911f7f7961c9792beb5a56\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/36adba37d7d6bc84db911f7f7961c9792beb5a56\",\n \"author\": {\n \"name\": \"forkOwner\",\n \"email\": \"53494188+forkOwner@users.noreply.github.com\",\n \"date\": \"2019-09-10T13:34:06Z\"\n },\n \"committer\": {\n \"name\": \"forkOwner\",\n \"email\": \"53494188+forkOwner@users.noreply.github.com\",\n \"date\": \"2019-09-10T13:34:06Z\"\n },\n \"tree\": {\n \"sha\": \"12fbacfbb396749a45b22c0ab520b5927da6488d\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/12fbacfbb396749a45b22c0ab520b5927da6488d\"\n },\n \"message\": \"Updating “forkOwner/repo/posts/1970-01-01-first-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"2bb98e1b99325f069356fb8731fae41b093e1bbc\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/2bb98e1b99325f069356fb8731fae41b093e1bbc\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/2bb98e1b99325f069356fb8731fae41b093e1bbc\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "status": 201 + }, + { + "body": "{\"sha\":\"36adba37d7d6bc84db911f7f7961c9792beb5a56\",\"force\":false}", + "method": "PATCH", + "url": "/repos/forkOwner/repo/git/refs/meta/_netlify_cms?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:34:07 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": "1568126016", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"d058003193719706c1479bd2c520e375\"", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BE6:2B19:A5857F:C963BB:5D77A64E", + "content-length": "494", + "connection": "keep-alive" + }, + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NTY3ODY3OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"36adba37d7d6bc84db911f7f7961c9792beb5a56\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/36adba37d7d6bc84db911f7f7961c9792beb5a56\"\n }\n}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"unpublishedBranchFile\",\"variables\":{\"headOwner\":\"forkOwner\",\"headRepoName\":\"repo\",\"headExpression\":\"cms/forkOwner/repo/posts/1970-01-01-first-title:content/posts/1970-01-01-first-title.md\",\"baseOwner\":\"owner\",\"baseRepoName\":\"repo\",\"baseExpression\":\"master:content/posts/1970-01-01-first-title.md\"},\"query\":\"query unpublishedBranchFile($headOwner: String!, $headRepoName: String!, $headExpression: String!, $baseOwner: String!, $baseRepoName: String!, $baseExpression: String!) {\\n head: repository(owner: $headOwner, name: $headRepoName) {\\n ...RepositoryParts\\n object(expression: $headExpression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n base: repository(owner: $baseOwner, name: $baseRepoName) {\\n ...RepositoryParts\\n object(expression: $baseExpression) {\\n ... on Blob {\\n id\\n oid\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:34:08 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4948", + "X-RateLimit-Reset": "1568126025", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7BF2:1510F:11D520D:15A249A:5D77A650", + "content-length": "496", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"head\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1Njc4Njc=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzU2Nzg2NzphMDQxMjQ1ODE0ODkyZTNmNzNmNjNjYTU0MzMzZmRhNjQ5YjdmYzBi\",\"text\":\"---\\ntemplate: post\\ntitle: first title\\ndraft: true\\ndate: 1970-01-01T00:00:00.000Z\\ndescription: first description\\ncategory: first category\\ntags:\\n - tag1\\n---\\nfirst body\\n\",\"is_binary\":false,\"__typename\":\"Blob\"}},\"base\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"object\":null}}}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/forkOwner/repo/git/refs/heads/cms?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:34:09 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": "1568126016", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"f3447964c8f112b3050f470a964263e5\"", + "Last-Modified": "Tue, 10 Sep 2019 13:31:48 GMT", + "X-Poll-Interval": "300", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BF4:B4DE:11967CC:1567510:5D77A651", + "content-length": "788", + "connection": "keep-alive" + }, + "response": "[\n {\n \"ref\": \"refs/heads/cms/forkOwner/repo/posts/1970-01-01-first-title\",\n \"node_id\": \"MDM6UmVmMjA3NTY3ODY3OmNtcy9lcmV6cm9rYWgtdGVzdC9nYXRzYnktbmV0bGlmeS1jbXMtYXdzLTE1NjgxMjIwODcxNzQtNjVyMXMwa3U2Ym8vcG9zdHMvMTk3MC0wMS0wMS1maXJzdC10aXRsZQ==\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/refs/heads/cms/forkOwner/repo/posts/1970-01-01-first-title\",\n \"object\": {\n \"sha\": \"794bf5159c62a1714d38a3935c0812e75f52863e\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/794bf5159c62a1714d38a3935c0812e75f52863e\"\n }\n }\n]\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"unpublishedBranchFile\",\"variables\":{\"headOwner\":\"forkOwner\",\"headRepoName\":\"repo\",\"headExpression\":\"cms/forkOwner/repo/posts/1970-01-01-first-title:content/posts/1970-01-01-first-title.md\",\"baseOwner\":\"owner\",\"baseRepoName\":\"repo\",\"baseExpression\":\"master:content/posts/1970-01-01-first-title.md\"},\"query\":\"query unpublishedBranchFile($headOwner: String!, $headRepoName: String!, $headExpression: String!, $baseOwner: String!, $baseRepoName: String!, $baseExpression: String!) {\\n head: repository(owner: $headOwner, name: $headRepoName) {\\n ...RepositoryParts\\n object(expression: $headExpression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n base: repository(owner: $baseOwner, name: $baseRepoName) {\\n ...RepositoryParts\\n object(expression: $baseExpression) {\\n ... on Blob {\\n id\\n oid\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:34:10 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4947", + "X-RateLimit-Reset": "1568126025", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7BF6:1510F:11D54AC:15A27B0:5D77A652", + "content-length": "496", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"head\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1Njc4Njc=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzU2Nzg2NzphMDQxMjQ1ODE0ODkyZTNmNzNmNjNjYTU0MzMzZmRhNjQ5YjdmYzBi\",\"text\":\"---\\ntemplate: post\\ntitle: first title\\ndraft: true\\ndate: 1970-01-01T00:00:00.000Z\\ndescription: first description\\ncategory: first category\\ntags:\\n - tag1\\n---\\nfirst body\\n\",\"is_binary\":false,\"__typename\":\"Blob\"}},\"base\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"object\":null}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"repository\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\"},\"query\":\"query repository($owner: String!, $name: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:34:12 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4946", + "X-RateLimit-Reset": "1568126025", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7BF8:9D20:10F600A:14BC802:5D77A653", + "content-length": "92", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\"}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"createPullRequest\",\"variables\":{\"createPullRequestInput\":{\"baseRefName\":\"master\",\"body\":\"Automatically generated by Netlify CMS\",\"title\":\"Create Post “1970-01-01-first-title”\",\"headRefName\":\"forkOwner:cms/forkOwner/repo/posts/1970-01-01-first-title\",\"repositoryId\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\"}},\"query\":\"mutation createPullRequest($createPullRequestInput: CreatePullRequestInput!) {\\n createPullRequest(input: $createPullRequestInput) {\\n clientMutationId\\n pullRequest {\\n ...PullRequestParts\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment PullRequestParts on PullRequest {\\n id\\n baseRefName\\n body\\n headRefName\\n headRefOid\\n number\\n state\\n title\\n merged_at: mergedAt\\n repository {\\n ...RepositoryParts\\n __typename\\n }\\n __typename\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:34:13 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4945", + "X-RateLimit-Reset": "1568126025", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7BFC:B4DC:A7F1AB:CC39DB:5D77A654", + "content-length": "595", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"createPullRequest\":{\"clientMutationId\":null,\"pullRequest\":{\"id\":\"MDExOlB1bGxSZXF1ZXN0MzE1OTk3NTQ1\",\"baseRefName\":\"master\",\"body\":\"Automatically generated by Netlify CMS\",\"headRefName\":\"cms/forkOwner/repo/posts/1970-01-01-first-title\",\"headRefOid\":\"794bf5159c62a1714d38a3935c0812e75f52863e\",\"number\":5,\"state\":\"OPEN\",\"title\":\"Create Post “1970-01-01-first-title”\",\"merged_at\":null,\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\"},\"__typename\":\"PullRequest\"},\"__typename\":\"CreatePullRequestPayload\"}}}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/forkOwner/repo/git/refs/meta/_netlify_cms?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:34:14 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": "1568126016", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"d058003193719706c1479bd2c520e375\"", + "Last-Modified": "Tue, 10 Sep 2019 13:31:48 GMT", + "X-Poll-Interval": "300", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BFE:1510F:11D5997:15A2DD3:5D77A656", + "content-length": "494", + "connection": "keep-alive" + }, + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NTY3ODY3OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"36adba37d7d6bc84db911f7f7961c9792beb5a56\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/36adba37d7d6bc84db911f7f7961c9792beb5a56\"\n }\n}\n", + "status": 200 + }, + { + "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjUsImhlYWQiOnsic2hhIjoiNzk0YmY1MTU5YzYyYTE3MTRkMzhhMzkzNWMwODEyZTc1ZjUyODYzZSJ9fSwidXNlciI6ImZvcmtPd25lciIsInN0YXR1cyI6InBlbmRpbmdfcmV2aWV3IiwiYnJhbmNoIjoiY21zL2ZvcmtPd25lci9yZXBvL3Bvc3RzLzE5NzAtMDEtMDEtZmlyc3QtdGl0bGUiLCJjb2xsZWN0aW9uIjoicG9zdHMiLCJjb21taXRNZXNzYWdlIjoiQ3JlYXRlIFBvc3Qg4oCcMTk3MC0wMS0wMS1maXJzdC10aXRsZeKAnSIsInRpdGxlIjoiZmlyc3QgdGl0bGUiLCJkZXNjcmlwdGlvbiI6ImZpcnN0IGRlc2NyaXB0aW9uIiwib2JqZWN0cyI6eyJlbnRyeSI6eyJwYXRoIjoiY29udGVudC9wb3N0cy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxlLm1kIiwic2hhIjoiYTA0MTI0NTgxNDg5MmUzZjczZjYzY2E1NDMzM2ZkYTY0OWI3ZmMwYiJ9LCJmaWxlcyI6W119LCJ0aW1lU3RhbXAiOiIxOTcwLTAxLTAxVDAwOjAwOjAwLjMwMFoifQ==\",\"encoding\":\"base64\"}", + "method": "POST", + "url": "/repos/forkOwner/repo/git/blobs?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:34:15 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "212", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4935", + "X-RateLimit-Reset": "1568126016", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"8fb7eaf4002d37412606e8cd42a526f1\"", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/forkOwner/repo/git/blobs/006a9d07a95115ecf4a7062a5dc3f98fc2d3d943", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A00:B4E0:16415B0:1B15087:5D77A656", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"006a9d07a95115ecf4a7062a5dc3f98fc2d3d943\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/006a9d07a95115ecf4a7062a5dc3f98fc2d3d943\"\n}\n", + "status": 201 + }, + { + "body": "{\"operationName\":\"commitTree\",\"variables\":{\"owner\":\"forkOwner\",\"name\":\"repo\",\"sha\":\"36adba37d7d6bc84db911f7f7961c9792beb5a56\"},\"query\":\"query commitTree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n commit: object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n tree {\\n ...ObjectParts\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:34:16 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4943", + "X-RateLimit-Reset": "1568126025", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7A02:244E4:AB1EA4:CF4936:5D77A657", + "content-length": "685", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1Njc4Njc=\",\"__typename\":\"Repository\",\"commit\":{\"id\":\"MDY6Q29tbWl0MjA3NTY3ODY3OjM2YWRiYTM3ZDdkNmJjODRkYjkxMWY3Zjc5NjFjOTc5MmJlYjVhNTY=\",\"sha\":\"36adba37d7d6bc84db911f7f7961c9792beb5a56\",\"__typename\":\"Commit\",\"tree\":{\"id\":\"MDQ6VHJlZTIwNzU2Nzg2NzoxMmZiYWNmYmIzOTY3NDlhNDViMjJjMGFiNTIwYjU5MjdkYTY0ODhk\",\"sha\":\"12fbacfbb396749a45b22c0ab520b5927da6488d\",\"__typename\":\"Tree\",\"entries\":[{\"path\":\"README.md\",\"sha\":\"98787d1bd948850444433e91a43091a76c4eb455\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"forkOwner\",\"sha\":\"a03cc9e4fd5f46ff1a1383b22aa4edc809590222\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"}]}}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"tree\",\"variables\":{\"owner\":\"forkOwner\",\"name\":\"repo\",\"sha\":\"36adba37d7d6bc84db911f7f7961c9792beb5a56\"},\"query\":\"query tree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n tree: object(oid: $sha) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:34:16 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4944", + "X-RateLimit-Reset": "1568126025", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7A04:3ED82:18033E9:1D346E3:5D77A657", + "content-length": "260", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1Njc4Njc=\",\"__typename\":\"Repository\",\"tree\":{\"id\":\"MDY6Q29tbWl0MjA3NTY3ODY3OjM2YWRiYTM3ZDdkNmJjODRkYjkxMWY3Zjc5NjFjOTc5MmJlYjVhNTY=\",\"sha\":\"36adba37d7d6bc84db911f7f7961c9792beb5a56\",\"__typename\":\"Commit\"}}}}\n", + "status": 200 + }, + { + "body": "{\"base_tree\":\"36adba37d7d6bc84db911f7f7961c9792beb5a56\",\"tree\":[{\"path\":\"forkOwner/repo/posts/1970-01-01-first-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"006a9d07a95115ecf4a7062a5dc3f98fc2d3d943\"}]}", + "method": "POST", + "url": "/repos/forkOwner/repo/git/trees?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:34:16 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "878", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4934", + "X-RateLimit-Reset": "1568126016", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"a7dfe54b4439d65956c568f53c0acaa7\"", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/forkOwner/repo/git/trees/8aca1b1de926cdab44a9569fcf797effd1bc729b", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A06:9D1E:496555:59CC11:5D77A658", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"8aca1b1de926cdab44a9569fcf797effd1bc729b\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/8aca1b1de926cdab44a9569fcf797effd1bc729b\",\n \"tree\": [\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n },\n {\n \"path\": \"forkOwner\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"2ca6e2a408d578c4ec1bb44a71bef88c7e0a16e5\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/2ca6e2a408d578c4ec1bb44a71bef88c7e0a16e5\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"message\":\"Updating “forkOwner/repo/posts/1970-01-01-first-title” metadata\",\"tree\":\"8aca1b1de926cdab44a9569fcf797effd1bc729b\",\"parents\":[\"36adba37d7d6bc84db911f7f7961c9792beb5a56\"]}", + "method": "POST", + "url": "/repos/forkOwner/repo/git/commits?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:34:17 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "1641", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4933", + "X-RateLimit-Reset": "1568126016", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"c70ea661900e10b9b1c9a1029890101f\"", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/forkOwner/repo/git/commits/948f910b887b9dad4059199a0f0e4ca06b866b86", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A08:244E7:114AAB0:1518117:5D77A658", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"948f910b887b9dad4059199a0f0e4ca06b866b86\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NTY3ODY3Ojk0OGY5MTBiODg3YjlkYWQ0MDU5MTk5YTBmMGU0Y2EwNmI4NjZiODY=\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/948f910b887b9dad4059199a0f0e4ca06b866b86\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/948f910b887b9dad4059199a0f0e4ca06b866b86\",\n \"author\": {\n \"name\": \"forkOwner\",\n \"email\": \"53494188+forkOwner@users.noreply.github.com\",\n \"date\": \"2019-09-10T13:34:17Z\"\n },\n \"committer\": {\n \"name\": \"forkOwner\",\n \"email\": \"53494188+forkOwner@users.noreply.github.com\",\n \"date\": \"2019-09-10T13:34:17Z\"\n },\n \"tree\": {\n \"sha\": \"8aca1b1de926cdab44a9569fcf797effd1bc729b\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/8aca1b1de926cdab44a9569fcf797effd1bc729b\"\n },\n \"message\": \"Updating “forkOwner/repo/posts/1970-01-01-first-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"36adba37d7d6bc84db911f7f7961c9792beb5a56\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/36adba37d7d6bc84db911f7f7961c9792beb5a56\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/36adba37d7d6bc84db911f7f7961c9792beb5a56\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "status": 201 + }, + { + "body": "{\"sha\":\"948f910b887b9dad4059199a0f0e4ca06b866b86\",\"force\":false}", + "method": "PATCH", + "url": "/repos/forkOwner/repo/git/refs/meta/_netlify_cms?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:34:18 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": "1568126016", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"0430b5cc1a3eb8cb78296cc3fb63c572\"", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A0E:15110:180A791:1D32884:5D77A659", + "content-length": "494", + "connection": "keep-alive" + }, + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NTY3ODY3OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"948f910b887b9dad4059199a0f0e4ca06b866b86\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/948f910b887b9dad4059199a0f0e4ca06b866b86\"\n }\n}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"statues\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"794bf5159c62a1714d38a3935c0812e75f52863e\"},\"query\":\"query statues($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n status {\\n id\\n contexts {\\n id\\n context\\n state\\n target_url: targetUrl\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:34:19 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4942", + "X-RateLimit-Reset": "1568126025", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7A10:9D1E:49666F:59CD74:5D77A65B", + "content-length": "276", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDY6Q29tbWl0MjA3NTY3MDExOjc5NGJmNTE1OWM2MmExNzE0ZDM4YTM5MzVjMDgxMmU3NWY1Mjg2M2U=\",\"sha\":\"794bf5159c62a1714d38a3935c0812e75f52863e\",\"__typename\":\"Commit\",\"status\":null}}}}\n", + "status": 200 + } +] \ No newline at end of file diff --git a/cypress/fixtures/Github Backend Editorial Workflow - GraphQL API - Open Authoring__can create an entry on fork.json b/cypress/fixtures/Github Backend Editorial Workflow - GraphQL API - Open Authoring__can create an entry on fork.json new file mode 100644 index 00000000..3b3eecf8 --- /dev/null +++ b/cypress/fixtures/Github Backend Editorial Workflow - GraphQL API - Open Authoring__can create an entry on fork.json @@ -0,0 +1,1298 @@ +[ + { + "method": "GET", + "url": "/user", + "headers": { + "Date": "Tue, 10 Sep 2019 13:32:00 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": "1568125899", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"306a7697fb3e2ba7e728a792014e91b8\"", + "Last-Modified": "Sun, 01 Sep 2019 18:04:11 GMT", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A32:9D20:10EBEBE:14AFECA:5D77A5D0", + "content-length": "1333", + "connection": "keep-alive" + }, + "response": "{\"login\":\"forkOwner\",\"id\":2,\"avatar_url\":\"https://avatars1.githubusercontent.com/u/7892489?v=4\",\"name\":\"forkOwner\"}", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/collaborators/forkOwner/permission", + "headers": { + "Date": "Tue, 10 Sep 2019 13:32:01 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "403 Forbidden", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4980", + "X-RateLimit-Reset": "1568125899", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A34:B4DC:A7763A:CBA42E:5D77A5D1", + "content-length": "185", + "connection": "keep-alive" + }, + "response": "{\n \"message\": \"Must have push access to view collaborator permission.\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/collaborators/#review-a-users-permission-level\"\n}\n", + "status": 403 + }, + { + "method": "POST", + "url": "/repos/owner/repo/forks", + "headers": { + "Date": "Tue, 10 Sep 2019 13:32:02 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "22055", + "Server": "GitHub.com", + "Status": "202 Accepted", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4979", + "X-RateLimit-Reset": "1568125899", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A36:244DF:199AAB:1F24EC:5D77A5D1", + "connection": "keep-alive" + }, + "response": "{\n \"id\": 207567867,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1Njc4Njc=\",\n \"name\": \"repo\",\n \"full_name\": \"forkOwner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"forkOwner\",\n \"id\": 53494188,\n \"node_id\": \"MDQ6VXNlcjUzNDk0MTg4\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/forkOwner\",\n \"html_url\": \"https://github.com/forkOwner\",\n \"followers_url\": \"https://api.github.com/users/forkOwner/followers\",\n \"following_url\": \"https://api.github.com/users/forkOwner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/forkOwner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/forkOwner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/forkOwner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/forkOwner/orgs\",\n \"repos_url\": \"https://api.github.com/users/forkOwner/repos\",\n \"events_url\": \"https://api.github.com/users/forkOwner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/forkOwner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/forkOwner/repo\",\n \"description\": null,\n \"fork\": true,\n \"url\": \"https://api.github.com/repos/forkOwner/repo\",\n \"forks_url\": \"https://api.github.com/repos/forkOwner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/forkOwner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/forkOwner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/forkOwner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/forkOwner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/forkOwner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/forkOwner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/forkOwner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/forkOwner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/forkOwner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/forkOwner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/forkOwner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/forkOwner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/forkOwner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/forkOwner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/forkOwner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/forkOwner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/forkOwner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/forkOwner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/forkOwner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/forkOwner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/forkOwner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/forkOwner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/forkOwner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/forkOwner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/forkOwner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/forkOwner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/forkOwner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/forkOwner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/forkOwner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/forkOwner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/forkOwner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/forkOwner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/forkOwner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/forkOwner/repo/deployments\",\n \"created_at\": \"2019-09-10T13:31:46Z\",\n \"updated_at\": \"2019-09-10T13:31:48Z\",\n \"pushed_at\": \"2019-09-10T13:31:38Z\",\n \"git_url\": \"git://github.com/forkOwner/repo.git\",\n \"ssh_url\": \"git@github.com:forkOwner/repo.git\",\n \"clone_url\": \"https://github.com/forkOwner/repo.git\",\n \"svn_url\": \"https://github.com/forkOwner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": null,\n \"has_issues\": false,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\",\n \"permissions\": {\n \"admin\": true,\n \"push\": true,\n \"pull\": true\n },\n \"parent\": {\n \"id\": 207567011,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-10T13:28:07Z\",\n \"updated_at\": \"2019-09-10T13:31:40Z\",\n \"pushed_at\": \"2019-09-10T13:31:38Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n },\n \"source\": {\n \"id\": 207567011,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-10T13:28:07Z\",\n \"updated_at\": \"2019-09-10T13:31:40Z\",\n \"pushed_at\": \"2019-09-10T13:31:38Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n },\n \"network_count\": 1,\n \"subscribers_count\": 0\n}\n", + "status": 202 + }, + { + "method": "GET", + "url": "/repos/forkOwner/repo", + "headers": { + "Date": "Tue, 10 Sep 2019 13:32:02 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4978", + "X-RateLimit-Reset": "1568125899", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"b45c6ce5da7a6b9bfd275300a4ea2897\"", + "Last-Modified": "Tue, 10 Sep 2019 13:31:48 GMT", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A38:2B24:173E89F:1C404B5:5D77A5D2", + "content-length": "22145", + "connection": "keep-alive" + }, + "response": "{\n \"id\": 207567867,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1Njc4Njc=\",\n \"name\": \"repo\",\n \"full_name\": \"forkOwner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"forkOwner\",\n \"id\": 53494188,\n \"node_id\": \"MDQ6VXNlcjUzNDk0MTg4\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/forkOwner\",\n \"html_url\": \"https://github.com/forkOwner\",\n \"followers_url\": \"https://api.github.com/users/forkOwner/followers\",\n \"following_url\": \"https://api.github.com/users/forkOwner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/forkOwner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/forkOwner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/forkOwner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/forkOwner/orgs\",\n \"repos_url\": \"https://api.github.com/users/forkOwner/repos\",\n \"events_url\": \"https://api.github.com/users/forkOwner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/forkOwner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/forkOwner/repo\",\n \"description\": null,\n \"fork\": true,\n \"url\": \"https://api.github.com/repos/forkOwner/repo\",\n \"forks_url\": \"https://api.github.com/repos/forkOwner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/forkOwner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/forkOwner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/forkOwner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/forkOwner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/forkOwner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/forkOwner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/forkOwner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/forkOwner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/forkOwner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/forkOwner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/forkOwner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/forkOwner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/forkOwner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/forkOwner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/forkOwner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/forkOwner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/forkOwner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/forkOwner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/forkOwner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/forkOwner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/forkOwner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/forkOwner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/forkOwner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/forkOwner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/forkOwner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/forkOwner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/forkOwner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/forkOwner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/forkOwner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/forkOwner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/forkOwner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/forkOwner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/forkOwner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/forkOwner/repo/deployments\",\n \"created_at\": \"2019-09-10T13:31:46Z\",\n \"updated_at\": \"2019-09-10T13:31:48Z\",\n \"pushed_at\": \"2019-09-10T13:31:38Z\",\n \"git_url\": \"git://github.com/forkOwner/repo.git\",\n \"ssh_url\": \"git@github.com:forkOwner/repo.git\",\n \"clone_url\": \"https://github.com/forkOwner/repo.git\",\n \"svn_url\": \"https://github.com/forkOwner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": null,\n \"has_issues\": false,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\",\n \"permissions\": {\n \"admin\": true,\n \"push\": true,\n \"pull\": true\n },\n \"allow_squash_merge\": true,\n \"allow_merge_commit\": true,\n \"allow_rebase_merge\": true,\n \"parent\": {\n \"id\": 207567011,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-10T13:28:07Z\",\n \"updated_at\": \"2019-09-10T13:31:40Z\",\n \"pushed_at\": \"2019-09-10T13:31:38Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n },\n \"source\": {\n \"id\": 207567011,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-10T13:28:07Z\",\n \"updated_at\": \"2019-09-10T13:31:40Z\",\n \"pushed_at\": \"2019-09-10T13:31:38Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n },\n \"network_count\": 1,\n \"subscribers_count\": 0\n}\n", + "status": 200 + }, + { + "body": "{\"operationName\":null,\"variables\":{},\"query\":\"{\\n viewer {\\n id\\n avatar_url: avatarUrl\\n name\\n login\\n __typename\\n }\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:32:03 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4990", + "X-RateLimit-Reset": "1568125908", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7A3B:1510D:44CA17:5455FA:5D77A5D3", + "content-length": "176", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"viewer\":{\"id\":\"MDQ6VXNlcjUzNDk0MTg4\",\"avatar_url\":\"https://avatars1.githubusercontent.com/u/7892489?v=4\",\"name\":null,\"login\":\"forkOwner\",\"__typename\":\"User\"}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"repoPermission\",\"variables\":{\"owner\":\"forkOwner\",\"name\":\"repo\"},\"query\":\"query repoPermission($owner: String!, $name: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n viewerPermission\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:32:04 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4989", + "X-RateLimit-Reset": "1568125908", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7A40:9D20:10EC333:14B0475:5D77A5D3", + "content-length": "119", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1Njc4Njc=\",\"__typename\":\"Repository\",\"viewerPermission\":\"ADMIN\"}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"files\",\"variables\":{\"owner\":\"forkOwner\",\"name\":\"repo\",\"expression\":\"master:static/media\"},\"query\":\"query files($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...FileEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment FileEntryParts on TreeEntry {\\n name\\n sha: oid\\n type\\n blob: object {\\n ... on Blob {\\n size: byteSize\\n __typename\\n }\\n __typename\\n }\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:32:04 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4988", + "X-RateLimit-Reset": "1568125908", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7A42:3ED7B:11F9D87:15D3DDB:5D77A5D4", + "content-length": "1837", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1Njc4Njc=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6VHJlZTIwNzU2Nzg2Nzo5Yjc2OTliNTdlMTQzMDkxMGRiODI4MzFkY2Y2YjhhMWQxZGJkYWM5\",\"sha\":\"9b7699b57e1430910db82831dcf6b8a1d1dbdac9\",\"__typename\":\"Tree\",\"entries\":[{\"name\":\"42-line-bible.jpg\",\"sha\":\"41c8d12f9ca5864beb827c381fbeff935209d5fb\",\"type\":\"blob\",\"blob\":{\"size\":671242,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"gutenberg.jpg\",\"sha\":\"04315e355873ea5d358d9c371c39a6845c1ae4ae\",\"type\":\"blob\",\"blob\":{\"size\":155002,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-0.jpg\",\"sha\":\"b70a1b64fd4fa9635823231a0ba92c6dc9393f16\",\"type\":\"blob\",\"blob\":{\"size\":660287,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-1.jpg\",\"sha\":\"05eedae372b829c62501ac751b2d42dcc432541b\",\"type\":\"blob\",\"blob\":{\"size\":392411,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-2.jpg\",\"sha\":\"53845ed35faf8939bea242bb85eda7c324b1be0b\",\"type\":\"blob\",\"blob\":{\"size\":99147,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-3.jpg\",\"sha\":\"8b2339d97069e826fae1f156212e40ae458454e3\",\"type\":\"blob\",\"blob\":{\"size\":358022,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-4.jpg\",\"sha\":\"a8f6f21253a67a4284b5a953b2fe633d44152ecd\",\"type\":\"blob\",\"blob\":{\"size\":114837,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"movable-type.jpg\",\"sha\":\"57b4e925ea00bd8e195cf4418eb6eb2995ea5f10\",\"type\":\"blob\",\"blob\":{\"size\":559028,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"printing-press.jpg\",\"sha\":\"d27f56c9437d9becd2f56cc627c9322c2f1f61f6\",\"type\":\"blob\",\"blob\":{\"size\":279283,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"type-through-time.jpg\",\"sha\":\"3f08366a805c51a60ec5056010f22de4ba08abaa\",\"type\":\"blob\",\"blob\":{\"size\":117689,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"}]}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"files\",\"variables\":{\"owner\":\"forkOwner\",\"name\":\"repo\",\"expression\":\"master:content/posts\"},\"query\":\"query files($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...FileEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment FileEntryParts on TreeEntry {\\n name\\n sha: oid\\n type\\n blob: object {\\n ... on Blob {\\n size: byteSize\\n __typename\\n }\\n __typename\\n }\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:32:04 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4987", + "X-RateLimit-Reset": "1568125908", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7A41:2B1F:11C1443:15A8912:5D77A5D4", + "content-length": "1218", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1Njc4Njc=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6VHJlZTIwNzU2Nzg2NzozNDg5MjU3NWUyMTZjMDZlNzU3MDkzZjAzNmJkOGUwNTdjNzhhNTJm\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"__typename\":\"Tree\",\"entries\":[{\"name\":\"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\"sha\":\"6d51a38aed7139d2117724b1e307657b6ff2d043\",\"type\":\"blob\",\"blob\":{\"size\":1707,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\"sha\":\"d0582dd245a3f408fb3fe2333bf01400007476e9\",\"type\":\"blob\",\"blob\":{\"size\":2565,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2016-02-02---A-Brief-History-of-Typography.md\",\"sha\":\"0eea554365f002d0f1572af9a58522d335a794d5\",\"type\":\"blob\",\"blob\":{\"size\":2786,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2017-18-08---The-Birth-of-Movable-Type.md\",\"sha\":\"44f78c474d04273185a95821426f75affc9b0044\",\"type\":\"blob\",\"blob\":{\"size\":16071,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\"sha\":\"a532f0a9445cdf90a19c6812cff89d1674991774\",\"type\":\"blob\",\"blob\":{\"size\":7465,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"}]}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"forkOwner\",\"name\":\"repo\",\"expression\":\"44f78c474d04273185a95821426f75affc9b0044\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:32:05 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4986", + "X-RateLimit-Reset": "1568125908", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7A4D:2B19:A524EC:C8EB60:5D77A5D5", + "content-length": "16478", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1Njc4Njc=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzU2Nzg2Nzo0NGY3OGM0NzRkMDQyNzMxODVhOTU4MjE0MjZmNzVhZmZjOWIwMDQ0\",\"text\":\"---\\ntitle: \\\"Johannes Gutenberg: The Birth of Movable Type\\\"\\ndate: \\\"2017-08-18T22:12:03.284Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Typography\\\"\\ntags:\\n - \\\"Open source\\\"\\n - \\\"Gatsby\\\"\\n - \\\"Typography\\\"\\ndescription: \\\"German inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\\\"\\ncanonical: ''\\n---\\n\\nGerman inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\\n\\n**Johannes Gensfleisch zur Laden zum Gutenberg** (c. 1398 – 1468) was a German blacksmith, goldsmith, printer, and publisher who introduced printing to Europe. His invention of mechanical movable type printing started the Printing Revolution and is widely regarded as the most important event of the modern period. It played a key role in the development of the Renaissance, Reformation, the Age of Enlightenment, and the Scientific revolution and laid the material basis for the modern knowledge-based economy and the spread of learning to the masses.\\n\\n
\\n\\t\\\"Gutenberg\\\"\\n\\t
Johannes Gutenberg
\\n
\\n\\nWith his invention of the printing press, Gutenberg was the first European to use movable type printing, in around 1439. Among his many contributions to printing are: the invention of a process for mass-producing movable type; the use of oil-based ink; and the use of a wooden printing press similar to the agricultural screw presses of the period. His truly epochal invention was the combination of these elements into a practical system that allowed the mass production of printed books and was economically viable for printers and readers alike. Gutenberg's method for making type is traditionally considered to have included a type metal alloy and a hand mould for casting type. The alloy was a mixture of lead, tin, and antimony that melted at a relatively low temperature for faster and more economical casting, cast well, and created a durable type.\\n\\nIn Renaissance Europe, the arrival of mechanical movable type printing introduced the era of mass communication which permanently altered the structure of society. The relatively unrestricted circulation of information — including revolutionary ideas — transcended borders, captured the masses in the Reformation and threatened the power of political and religious authorities; the sharp increase in literacy broke the monopoly of the literate elite on education and learning and bolstered the emerging middle class. Across Europe, the increasing cultural self-awareness of its people led to the rise of proto-nationalism, accelerated by the flowering of the European vernacular languages to the detriment of Latin's status as lingua franca. In the 19th century, the replacement of the hand-operated Gutenberg-style press by steam-powered rotary presses allowed printing on an industrial scale, while Western-style printing was adopted all over the world, becoming practically the sole medium for modern bulk printing.\\n\\nThe use of movable type was a marked improvement on the handwritten manuscript, which was the existing method of book production in Europe, and upon woodblock printing, and revolutionized European book-making. Gutenberg's printing technology spread rapidly throughout Europe and later the world.\\n\\nHis major work, the Gutenberg Bible (also known as the 42-line Bible), has been acclaimed for its high aesthetic and technical quality.\\n\\n## Printing Press\\n\\nAround 1439, Gutenberg was involved in a financial misadventure making polished metal mirrors (which were believed to capture holy light from religious relics) for sale to pilgrims to Aachen: in 1439 the city was planning to exhibit its collection of relics from Emperor Charlemagne but the event was delayed by one year due to a severe flood and the capital already spent could not be repaid. When the question of satisfying the investors came up, Gutenberg is said to have promised to share a “secret”. It has been widely speculated that this secret may have been the idea of printing with movable type. Also around 1439–1440, the Dutch Laurens Janszoon Coster came up with the idea of printing. Legend has it that the idea came to him “like a ray of light”.\\n\\n
\\n\\t\\\"Early\\n\\t
Early wooden printing press as depicted in 1568.
\\n
\\n\\nUntil at least 1444 he lived in Strasbourg, most likely in the St. Arbogast parish. It was in Strasbourg in 1440 that Gutenberg is said to have perfected and unveiled the secret of printing based on his research, mysteriously entitled Kunst und Aventur (art and enterprise). It is not clear what work he was engaged in, or whether some early trials with printing from movable type may have been conducted there. After this, there is a gap of four years in the record. In 1448, he was back in Mainz, where he took out a loan from his brother-in-law Arnold Gelthus, quite possibly for a printing press or related paraphernalia. By this date, Gutenberg may have been familiar with intaglio printing; it is claimed that he had worked on copper engravings with an artist known as the Master of Playing Cards.\\n\\nBy 1450, the press was in operation, and a German poem had been printed, possibly the first item to be printed there. Gutenberg was able to convince the wealthy moneylender Johann Fust for a loan of 800 guilders. Peter Schöffer, who became Fust’s son-in-law, also joined the enterprise. Schöffer had worked as a scribe in Paris and is believed to have designed some of the first typefaces.\\n\\n
\\n\\t
\\n\\t\\t

All that has been written to me about that marvelous man seen at Frankfurt is true. I have not seen complete Bibles but only a number of quires of various books of the Bible. The script was very neat and legible, not at all difficult to follow—your grace would be able to read it without effort, and indeed without glasses.

\\n\\t\\t
\\n\\t\\t\\t—Future pope Pius II in a letter to Cardinal Carvajal, March 1455\\n\\t\\t
\\n\\t
\\n
\\n\\nGutenberg's workshop was set up at Hof Humbrecht, a property belonging to a distant relative. It is not clear when Gutenberg conceived the Bible project, but for this he borrowed another 800 guilders from Fust, and work commenced in 1452. At the same time, the press was also printing other, more lucrative texts (possibly Latin grammars). There is also some speculation that there may have been two presses, one for the pedestrian texts, and one for the Bible. One of the profit-making enterprises of the new press was the printing of thousands of indulgences for the church, documented from 1454–55.\\n\\nIn 1455 Gutenberg completed his 42-line Bible, known as the Gutenberg Bible. About 180 copies were printed, most on paper and some on vellum.\\n\\n## Court Case\\n\\nSome time in 1456, there was a dispute between Gutenberg and Fust, and Fust demanded his money back, accusing Gutenberg of misusing the funds. Meanwhile the expenses of the Bible project had proliferated, and Gutenberg's debt now exceeded 20,000 guilders. Fust sued at the archbishop's court. A November 1455 legal document records that there was a partnership for a \\\"project of the books,\\\" the funds for which Gutenberg had used for other purposes, according to Fust. The court decided in favor of Fust, giving him control over the Bible printing workshop and half of all printed Bibles.\\n\\nThus Gutenberg was effectively bankrupt, but it appears he retained (or re-started) a small printing shop, and participated in the printing of a Bible in the town of Bamberg around 1459, for which he seems at least to have supplied the type. But since his printed books never carry his name or a date, it is difficult to be certain, and there is consequently a considerable scholarly debate on this subject. It is also possible that the large Catholicon dictionary, 300 copies of 754 pages, printed in Mainz in 1460, may have been executed in his workshop.\\n\\nMeanwhile, the Fust–Schöffer shop was the first in Europe to bring out a book with the printer's name and date, the Mainz Psalter of August 1457, and while proudly proclaiming the mechanical process by which it had been produced, it made no mention of Gutenberg.\\n\\n## Later Life\\n\\nIn 1462, during a conflict between two archbishops, Mainz was sacked by archbishop Adolph von Nassau, and Gutenberg was exiled. An old man by now, he moved to Eltville where he may have initiated and supervised a new printing press belonging to the brothers Bechtermünze.\\n\\nIn January 1465, Gutenberg's achievements were recognized and he was given the title Hofmann (gentleman of the court) by von Nassau. This honor included a stipend, an annual court outfit, as well as 2,180 litres of grain and 2,000 litres of wine tax-free. It is believed he may have moved back to Mainz around this time, but this is not certain.\\n\\n***\\n\\nGutenberg died in 1468 and was buried in the Franciscan church at Mainz, his contributions largely unknown. This church and the cemetery were later destroyed, and Gutenberg's grave is now lost.\\n\\nIn 1504, he was mentioned as the inventor of typography in a book by Professor Ivo Wittig. It was not until 1567 that the first portrait of Gutenberg, almost certainly an imaginary reconstruction, appeared in Heinrich Pantaleon's biography of famous Germans.\\n\\n## Printing Method With Movable Type\\n\\nGutenberg's early printing process, and what tests he may have made with movable type, are not known in great detail. His later Bibles were printed in such a way as to have required large quantities of type, some estimates suggesting as many as 100,000 individual sorts. Setting each page would take, perhaps, half a day, and considering all the work in loading the press, inking the type, pulling the impressions, hanging up the sheets, distributing the type, etc., it is thought that the Gutenberg–Fust shop might have employed as many as 25 craftsmen.\\n\\n![Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5](/media/movable-type.jpg)\\n\\n*Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5*\\n\\nGutenberg's technique of making movable type remains unclear. In the following decades, punches and copper matrices became standardized in the rapidly disseminating printing presses across Europe. Whether Gutenberg used this sophisticated technique or a somewhat primitive version has been the subject of considerable debate.\\n\\nIn the standard process of making type, a hard metal punch (made by punchcutting, with the letter carved back to front) is hammered into a softer copper bar, creating a matrix. This is then placed into a hand-held mould and a piece of type, or \\\"sort\\\", is cast by filling the mould with molten type-metal; this cools almost at once, and the resulting piece of type can be removed from the mould. The matrix can be reused to create hundreds, or thousands, of identical sorts so that the same character appearing anywhere within the book will appear very uniform, giving rise, over time, to the development of distinct styles of typefaces or fonts. After casting, the sorts are arranged into type-cases, and used to make up pages which are inked and printed, a procedure which can be repeated hundreds, or thousands, of times. The sorts can be reused in any combination, earning the process the name of “movable type”.\\n\\nThe invention of the making of types with punch, matrix and mold has been widely attributed to Gutenberg. However, recent evidence suggests that Gutenberg's process was somewhat different. If he used the punch and matrix approach, all his letters should have been nearly identical, with some variations due to miscasting and inking. However, the type used in Gutenberg's earliest work shows other variations.\\n\\n
\\n\\t
\\n\\t\\t

It is a press, certainly, but a press from which shall flow in inexhaustible streams… Through it, god will spread his word.

\\n\\t\\t
\\n\\t\\t\\t—Johannes Gutenberg\\n\\t\\t
\\n\\t
\\n
\\n\\nIn 2001, the physicist Blaise Agüera y Arcas and Princeton librarian Paul Needham, used digital scans of a Papal bull in the Scheide Library, Princeton, to carefully compare the same letters (types) appearing in different parts of the printed text. The irregularities in Gutenberg's type, particularly in simple characters such as the hyphen, suggested that the variations could not have come from either ink smear or from wear and damage on the pieces of metal on the types themselves. While some identical types are clearly used on other pages, other variations, subjected to detailed image analysis, suggested that they could not have been produced from the same matrix. Transmitted light pictures of the page also appeared to reveal substructures in the type that could not arise from traditional punchcutting techniques. They hypothesized that the method may have involved impressing simple shapes to create alphabets in “cuneiform” style in a matrix made of some soft material, perhaps sand. Casting the type would destroy the mould, and the matrix would need to be recreated to make each additional sort. This could explain the variations in the type, as well as the substructures observed in the printed images.\\n\\nThus, they feel that “the decisive factor for the birth of typography”, the use of reusable moulds for casting type, might have been a more progressive process than was previously thought. They suggest that the additional step of using the punch to create a mould that could be reused many times was not taken until twenty years later, in the 1470s. Others have not accepted some or all of their suggestions, and have interpreted the evidence in other ways, and the truth of the matter remains very uncertain.\\n\\nA 1568 history by Hadrianus Junius of Holland claims that the basic idea of the movable type came to Gutenberg from Laurens Janszoon Coster via Fust, who was apprenticed to Coster in the 1430s and may have brought some of his equipment from Haarlem to Mainz. While Coster appears to have experimented with moulds and castable metal type, there is no evidence that he had actually printed anything with this technology. He was an inventor and a goldsmith. However, there is one indirect supporter of the claim that Coster might be the inventor. The author of the Cologne Chronicle of 1499 quotes Ulrich Zell, the first printer of Cologne, that printing was performed in Mainz in 1450, but that some type of printing of lower quality had previously occurred in the Netherlands. However, the chronicle does not mention the name of Coster, while it actually credits Gutenberg as the \\\"first inventor of printing\\\" in the very same passage (fol. 312). The first securely dated book by Dutch printers is from 1471, and the Coster connection is today regarded as a mere legend.\\n\\nThe 19th century printer and typefounder Fournier Le Jeune suggested that Gutenberg might not have been using type cast with a reusable matrix, but possibly wooden types that were carved individually. A similar suggestion was made by Nash in 2004. This remains possible, albeit entirely unproven.\\n\\nIt has also been questioned whether Gutenberg used movable types at all. In 2004, Italian professor Bruno Fabbiani claimed that examination of the 42-line Bible revealed an overlapping of letters, suggesting that Gutenberg did not in fact use movable type (individual cast characters) but rather used whole plates made from a system somewhat like a modern typewriter, whereby the letters were stamped successively into the plate and then printed. However, most specialists regard the occasional overlapping of type as caused by paper movement over pieces of type of slightly unequal height.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"forkOwner\",\"name\":\"repo\",\"expression\":\"0eea554365f002d0f1572af9a58522d335a794d5\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:32:05 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4985", + "X-RateLimit-Reset": "1568125908", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7A46:244EB:1785304:1C8EF50:5D77A5D5", + "content-length": "3102", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1Njc4Njc=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzU2Nzg2NzowZWVhNTU0MzY1ZjAwMmQwZjE1NzJhZjlhNTg1MjJkMzM1YTc5NGQ1\",\"text\":\"---\\ntitle: \\\"A Brief History of Typography\\\"\\ndate: \\\"2016-02-02T22:40:32.169Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Design Inspiration\\\"\\ntags:\\n - \\\"Linotype\\\"\\n - \\\"Monotype\\\"\\n - \\\"History of typography\\\"\\n - \\\"Helvetica\\\"\\ndescription: \\\"Morbi in sem quis dui placerat ornare. Pellentesque odio nisi, euismod in, pharetra a, ultricies in, diam. Sed arcu. Cras consequat.\\\"\\ncanonical: ''\\n---\\n\\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \\n\\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\\n\\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-0.jpg)\\n\\n## Header Level 2\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \\n\\n
\\n\\t
\\n\\t\\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\\n\\t\\t
\\n\\t\\t\\t— Aliquam tincidunt mauris eu risus.\\n\\t\\t
\\n\\t
\\n
\\n\\n### Header Level 3\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\\n\\n```css\\n#header h1 a {\\n display: block;\\n width: 300px;\\n height: 80px;\\n}\\n```\\n\\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"forkOwner\",\"name\":\"repo\",\"expression\":\"d0582dd245a3f408fb3fe2333bf01400007476e9\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:32:05 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4984", + "X-RateLimit-Reset": "1568125908", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7A45:3ED7B:11F9EBD:15D3F5C:5D77A5D5", + "content-length": "2866", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1Njc4Njc=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzU2Nzg2NzpkMDU4MmRkMjQ1YTNmNDA4ZmIzZmUyMzMzYmYwMTQwMDAwNzQ3NmU5\",\"text\":\"---\\ntitle: The Origins of Social Stationery Lettering\\ndate: \\\"2016-12-01T22:40:32.169Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Design Culture\\\"\\ndescription: \\\"Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante.\\\"\\ncanonical: ''\\n---\\n\\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \\n\\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\\n\\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-3.jpg)\\n\\n## Header Level 2\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \\n\\n
\\n\\t
\\n\\t\\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\\n\\t\\t
\\n\\t\\t\\t— Aliquam tincidunt mauris eu risus.\\n\\t\\t
\\n\\t
\\n
\\n\\n### Header Level 3\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\\n\\n```css\\n#header h1 a {\\n display: block;\\n width: 300px;\\n height: 80px;\\n}\\n```\\n\\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"forkOwner\",\"name\":\"repo\",\"expression\":\"6d51a38aed7139d2117724b1e307657b6ff2d043\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:32:06 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4983", + "X-RateLimit-Reset": "1568125908", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7A43:15110:17FC7E2:1D21423:5D77A5D5", + "content-length": "1973", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1Njc4Njc=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzU2Nzg2Nzo2ZDUxYTM4YWVkNzEzOWQyMTE3NzI0YjFlMzA3NjU3YjZmZjJkMDQz\",\"text\":\"---\\ntitle: Perfecting the Art of Perfection\\ndate: \\\"2016-09-01T23:46:37.121Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Design Inspiration\\\"\\ntags:\\n - \\\"Handwriting\\\"\\n - \\\"Learning to write\\\"\\ndescription: \\\"Quisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\\\"\\ncanonical: ''\\n---\\n\\nQuisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\\n\\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-2.jpg)\\n\\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. \\n\\nPraesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"forkOwner\",\"name\":\"repo\",\"expression\":\"a532f0a9445cdf90a19c6812cff89d1674991774\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:32:06 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4982", + "X-RateLimit-Reset": "1568125908", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7A52:244DB:6E104:88203:5D77A5D6", + "content-length": "7803", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1Njc4Njc=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzU2Nzg2NzphNTMyZjBhOTQ0NWNkZjkwYTE5YzY4MTJjZmY4OWQxNjc0OTkxNzc0\",\"text\":\"---\\ntitle: Humane Typography in the Digital Age\\ndate: \\\"2017-08-19T22:40:32.169Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Typography\\\"\\ntags:\\n - \\\"Design\\\"\\n - \\\"Typography\\\"\\n - \\\"Web Development\\\"\\ndescription: \\\"An Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\\\"\\ncanonical: ''\\n---\\n\\n- [The first transition](#the-first-transition)\\n- [The digital age](#the-digital-age)\\n- [Loss of humanity through transitions](#loss-of-humanity-through-transitions)\\n- [Chasing perfection](#chasing-perfection)\\n\\nAn Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\\n\\nThe typography of this industrial age was no longer handcrafted. Mass production and profit became more important. Quantity mattered more than the quality. The books and printed works in general lost a part of its humanity. The typefaces were not produced by craftsmen anymore. It was the machines printing and tying the books together now. The craftsmen had to let go of their craft and became a cog in the process. An extension of the industrial machine.\\n\\nBut the victory of the industrialism didn’t mean that the craftsmen were completely extinct. The two worlds continued to coexist independently. Each recognising the good in the other — the power of industrialism and the humanity of craftsmanship. This was the second transition that would strip typography of a part of its humanity. We have to go 500 years back in time to meet the first one.\\n\\n## The first transition\\n\\nA similar conflict emerged after the invention of the first printing press in Europe. Johannes Gutenberg invented movable type and used it to produce different compositions. His workshop could print up to 240 impressions per hour. Until then, the books were being copied by hand. All the books were handwritten and decorated with hand drawn ornaments and figures. A process of copying a book was long but each book, even a copy, was a work of art.\\n\\nThe first printed books were, at first, perceived as inferior to the handwritten ones. They were smaller and cheaper to produce. Movable type provided the printers with flexibility that allowed them to print books in languages other than Latin. Gill describes the transition to industrialism as something that people needed and wanted. Something similar happened after the first printed books emerged. People wanted books in a language they understood and they wanted books they could take with them. They were hungry for knowledge and printed books satisfied this hunger.\\n\\n![42-line-bible.jpg](/media/42-line-bible.jpg)\\n\\n*The 42–Line Bible, printed by Gutenberg.*\\n\\nBut, through this transition, the book lost a large part of its humanity. The machine took over most of the process but craftsmanship was still a part of it. The typefaces were cut manually by the first punch cutters. The paper was made by hand. The illustrations and ornaments were still being hand drawn. These were the remains of the craftsmanship that went almost extinct in the times of Eric Gill.\\n\\n## The digital age\\n\\nThe first transition took away a large part of humanity from written communication. Industrialisation, the second transition described by Eric Gill, took away most of what was left. But it’s the third transition that stripped it naked. Typefaces are faceless these days. They’re just fonts on our computers. Hardly anyone knows their stories. Hardly anyone cares. Flicking through thousands of typefaces and finding the “right one” is a matter of minutes.\\n\\n> In the new computer age the proliferation of typefaces and type manipulations represents a new level of visual pollution threatening our culture. Out of thousands of typefaces, all we need are a few basic ones, and trash the rest.\\n>\\n— Massimo Vignelli\\n\\nTypography is not about typefaces. It’s not about what looks best, it’s about what feels right. What communicates the message best. Typography, in its essence, is about the message. “Typographical design should perform optically what the speaker creates through voice and gesture of his thoughts.”, as El Lissitzky, a famous Russian typographer, put it.\\n\\n## Loss of humanity through transitions\\n\\nEach transition took away a part of humanity from written language. Handwritten books being the most humane form and the digital typefaces being the least. Overuse of Helvetica is a good example. Messages are being told in a typeface just because it’s a safe option. It’s always there. Everyone knows it but yet, nobody knows it. Stop someone on the street and ask him what Helvetica is? Ask a designer the same question. Ask him where it came from, when, why and who designed it. Most of them will fail to answer these questions. Most of them used it in their precious projects but they still don’t spot it in the street.\\n\\n
\\n\\t
\\n\\t\\t

Knowledge of the quality of a typeface is of the greatest importance for the functional, aesthetic and psychological effect.

\\n\\t\\t
\\n\\t\\t\\t— Josef Mueller-Brockmann\\n\\t\\t
\\n\\t
\\n
\\n\\nTypefaces don’t look handmade these days. And that’s all right. They don’t have to. Industrialism took that away from them and we’re fine with it. We’ve traded that part of humanity for a process that produces more books that are easier to read. That can’t be bad. And it isn’t.\\n\\n> Humane typography will often be comparatively rough and even uncouth; but while a certain uncouthness does not seriously matter in humane works, uncouthness has no excuse whatever in the productions of the machine.\\n>\\n> — Eric Gill\\n\\nWe’ve come close to “perfection” in the last five centuries. The letters are crisp and without rough edges. We print our compositions with high–precision printers on a high quality, machine made paper.\\n\\n![type-through-time.jpg](/media/type-through-time.jpg)\\n\\n*Type through 5 centuries.*\\n\\nWe lost a part of ourselves because of this chase after perfection. We forgot about the craftsmanship along the way. And the worst part is that we don’t care. The transition to the digital age made that clear. We choose typefaces like clueless zombies. There’s no meaning in our work. Type sizes, leading, margins… It’s all just a few clicks or lines of code. The message isn’t important anymore. There’s no more “why” behind the “what”.\\n\\n## Chasing perfection\\n\\nHuman beings aren’t perfect. Perfection is something that will always elude us. There will always be a small part of humanity in everything we do. No matter how small that part, we should make sure that it transcends the limits of the medium. We have to think about the message first. What typeface should we use and why? Does the typeface match the message and what we want to communicate with it? What will be the leading and why? Will there be more typefaces in our design? On what ground will they be combined? What makes our design unique and why? This is the part of humanity that is left in typography. It might be the last part. Are we really going to give it up?\\n\\n*Originally published by [Matej Latin](http://matejlatin.co.uk/) on [Medium](https://medium.com/design-notes/humane-typography-in-the-digital-age-9bd5c16199bd?ref=webdesignernews.com#.lygo82z0x).*\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/forkOwner/repo/contents/forkOwner/repo/posts/1970-01-01-first-title.json?ts=300&ref=refs/meta/_netlify_cms", + "headers": { + "Date": "Tue, 10 Sep 2019 13:32:09 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "404 Not Found", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4977", + "X-RateLimit-Reset": "1568125899", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A54:2B15:4BD551:5C00E3:5D77A5D8", + "content-length": "144", + "connection": "keep-alive" + }, + "response": "{\n \"message\": \"No commit found for the ref refs/meta/_netlify_cms\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/\"\n}\n", + "status": 404 + }, + { + "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"master:content/posts/1970-01-01-first-title.md\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:32:09 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4981", + "X-RateLimit-Reset": "1568125908", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7A57:244E4:AAB4B3:CEC698:5D77A5D9", + "content-length": "106", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"object\":null}}}\n", + "status": 200 + }, + { + "body": "{\"content\":\"LS0tCnRlbXBsYXRlOiBwb3N0CnRpdGxlOiBmaXJzdCB0aXRsZQpkcmFmdDogdHJ1ZQpkYXRlOiAxOTcwLTAxLTAxVDAwOjAwOjAwLjAwMFoKZGVzY3JpcHRpb246IGZpcnN0IGRlc2NyaXB0aW9uCmNhdGVnb3J5OiBmaXJzdCBjYXRlZ29yeQp0YWdzOgogIC0gdGFnMQotLS0KZmlyc3QgYm9keQo=\",\"encoding\":\"base64\"}", + "method": "POST", + "url": "/repos/forkOwner/repo/git/blobs?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:32:10 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "212", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4976", + "X-RateLimit-Reset": "1568125899", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"e534bfcd1b6dc6f9245f32d16a0c64c9\"", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/forkOwner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A59:9D21:16BC324:1BAFF96:5D77A5DA", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"a041245814892e3f73f63ca54333fda649b7fc0b\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b\"\n}\n", + "status": 201 + }, + { + "body": "{\"operationName\":\"branch\",\"variables\":{\"owner\":\"forkOwner\",\"name\":\"repo\",\"qualifiedName\":\"refs/heads/master\"},\"query\":\"query branch($owner: String!, $name: String!, $qualifiedName: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n branch: ref(qualifiedName: $qualifiedName) {\\n ...BranchParts\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BranchParts on Ref {\\n commit: target {\\n ...ObjectParts\\n __typename\\n }\\n id\\n name\\n repository {\\n ...RepositoryParts\\n __typename\\n }\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:32:11 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4980", + "X-RateLimit-Reset": "1568125908", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7A5A:15110:17FD1BF:1D2202C:5D77A5DA", + "content-length": "429", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1Njc4Njc=\",\"__typename\":\"Repository\",\"branch\":{\"commit\":{\"id\":\"MDY6Q29tbWl0MjA3NTY3ODY3OjcyNjE3MmRlYWU5OWM4YTJjZWE0YzcxZTczNGEwMmE3OTNkNGQ5ZTU=\",\"sha\":\"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\"__typename\":\"Commit\"},\"id\":\"MDM6UmVmMjA3NTY3ODY3Om1hc3Rlcg==\",\"name\":\"master\",\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1Njc4Njc=\",\"__typename\":\"Repository\"},\"__typename\":\"Ref\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"tree\",\"variables\":{\"owner\":\"forkOwner\",\"name\":\"repo\",\"sha\":\"726172deae99c8a2cea4c71e734a02a793d4d9e5\"},\"query\":\"query tree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n tree: object(oid: $sha) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:32:11 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4978", + "X-RateLimit-Reset": "1568125908", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7A5E:244EB:1785E12:1C8FCA8:5D77A5DB", + "content-length": "260", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1Njc4Njc=\",\"__typename\":\"Repository\",\"tree\":{\"id\":\"MDY6Q29tbWl0MjA3NTY3ODY3OjcyNjE3MmRlYWU5OWM4YTJjZWE0YzcxZTczNGEwMmE3OTNkNGQ5ZTU=\",\"sha\":\"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\"__typename\":\"Commit\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"commitTree\",\"variables\":{\"owner\":\"forkOwner\",\"name\":\"repo\",\"sha\":\"726172deae99c8a2cea4c71e734a02a793d4d9e5\"},\"query\":\"query commitTree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n commit: object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n tree {\\n ...ObjectParts\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:32:11 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4979", + "X-RateLimit-Reset": "1568125908", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7A5C:1510D:44CDA3:545A5D:5D77A5DB", + "content-length": "5040", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1Njc4Njc=\",\"__typename\":\"Repository\",\"commit\":{\"id\":\"MDY6Q29tbWl0MjA3NTY3ODY3OjcyNjE3MmRlYWU5OWM4YTJjZWE0YzcxZTczNGEwMmE3OTNkNGQ5ZTU=\",\"sha\":\"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\"__typename\":\"Commit\",\"tree\":{\"id\":\"MDQ6VHJlZTIwNzU2Nzg2NzpjNWI3ZjZkNjc0YmExOTNiYjdiNGE1ZmNmNDkzMzAzNGUxYjdmMmI3\",\"sha\":\"c5b7f6d674ba193bb7b4a5fcf4933034e1b7f2b7\",\"__typename\":\"Tree\",\"entries\":[{\"path\":\".circleci\",\"sha\":\"e5e9af3301cac61f120b8e4d40b1733c7a45685a\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\".eslintignore\",\"sha\":\"80b4531b026d19f8fa589efd122e76199d23f967\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".eslintrc.js\",\"sha\":\"370684994aaed5b858da3a006f48cfa57e88fd27\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".flowconfig\",\"sha\":\"14aa2ac4cc0e15223ad98630a6f1325fc81f8043\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".gitattributes\",\"sha\":\"10a369ddf4f603337cabc6f21646508323941ce1\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".github\",\"sha\":\"4ebeece548b52b20af59622354530a6d33b50b43\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\".gitignore\",\"sha\":\"c071ba35b0e49899bab6d610a68eef667dbbf157\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".prettierignore\",\"sha\":\"393f050e123d998cf8c8b362ff95cc8ac4d250e5\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".prettierrc\",\"sha\":\"e52ad05bb13b084d7949dd76e1b2517455162150\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".stylelintrc.json\",\"sha\":\"4b4c9698d10d756f5faa025659b86375428ed0a7\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".vscode\",\"sha\":\"286e97ec0113ea8242b41ac222e2c3e8077e6f1e\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"CHANGELOG.md\",\"sha\":\"070a5d4f0eacd2dc0be81ae8996f8982de43046e\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"CODE_OF_CONDUCT.md\",\"sha\":\"92bc7565ff0ee145a0041b5179a820f14f39ab22\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"CONTRIBUTING.md\",\"sha\":\"8552aa241254a61258e1ff9666ab36f32fb1e3b9\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"LICENSE\",\"sha\":\"42d85938357b49977c126ca03b199129082d4fb8\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"README.md\",\"sha\":\"19df50a78654c8d757ca7f38447aa3d09c7abcce\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"backend\",\"sha\":\"b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"config.js\",\"sha\":\"58afd573bbb69fcca000efd0f5d90b93c93a98dd\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"content\",\"sha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"flow-typed\",\"sha\":\"86c32fd6c3118be5e0dbbb231a834447357236c6\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"flow\",\"sha\":\"0af45ad00d155c8d8c7407d913ff85278244c9ce\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"gatsby-browser.js\",\"sha\":\"9bd2c9dce175f04980e91cd9dc295a299e3cdb80\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"gatsby-config.js\",\"sha\":\"353a109dad62e3f25bf9f5e6a2167f21a6c8b459\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"gatsby-node.js\",\"sha\":\"14a207883c2093d2cc071bc5a464e165bcc1fead\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"gatsby\",\"sha\":\"4f23c06cd1740bf78304d2c0b29bf6bfdf427981\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"jest\",\"sha\":\"5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"netlify.toml\",\"sha\":\"599b99cc5700404fde316a7ede829776f23e7d45\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"package.json\",\"sha\":\"9d777616438b90a18f1a4ebfd5f114b4c06c6f17\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"postcss-config.js\",\"sha\":\"d216501e9b351a72e00ba0b7459a6500e27e7da2\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"renovate.json\",\"sha\":\"dcc309398785698b8870545c32051a3d72dd8271\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"serverless-scripts\",\"sha\":\"ee3701f2fbfc7196ba340f6481d1387d20527898\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"serverless-single-page-app-plugin\",\"sha\":\"08763fcfba643a06a452398517019bea4a5850ba\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"serverless.yml\",\"sha\":\"20b22c5fad229f35d029bf6614d333d82fe8a987\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"src\",\"sha\":\"8cdb35a88232c0f32f12f130c92c7cc55f97f471\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"static\",\"sha\":\"53c6380a600a030d3722bff7ecde36f749fb6964\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"utils\",\"sha\":\"a592549c9f74db40b51efefcda2fd76810405f27\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"yarn.lock\",\"sha\":\"475c9c1924ca752a0686303e2fdeb7b13ad75f57\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"}]}}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"tree\",\"variables\":{\"owner\":\"forkOwner\",\"name\":\"repo\",\"sha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\"},\"query\":\"query tree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n tree: object(oid: $sha) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:32:12 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4977", + "X-RateLimit-Reset": "1568125908", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7A62:244E4:AAB747:CEC9B9:5D77A5DC", + "content-length": "502", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1Njc4Njc=\",\"__typename\":\"Repository\",\"tree\":{\"id\":\"MDQ6VHJlZTIwNzU2Nzg2NzowMjk0ZWYxMDZjNTg3NDM5MDdhNWM4NTVkYTFlYjBmODdiMGI2ZGZj\",\"sha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\"__typename\":\"Tree\",\"entries\":[{\"path\":\"pages\",\"sha\":\"1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"posts\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"}]}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"commitTree\",\"variables\":{\"owner\":\"forkOwner\",\"name\":\"repo\",\"sha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\"},\"query\":\"query commitTree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n commit: object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n tree {\\n ...ObjectParts\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:32:14 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4976", + "X-RateLimit-Reset": "1568125908", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7A60:9D21:16BC630:1BB036A:5D77A5DC", + "content-length": "256", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1Njc4Njc=\",\"__typename\":\"Repository\",\"commit\":{\"id\":\"MDQ6VHJlZTIwNzU2Nzg2NzowMjk0ZWYxMDZjNTg3NDM5MDdhNWM4NTVkYTFlYjBmODdiMGI2ZGZj\",\"sha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\"__typename\":\"Tree\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"tree\",\"variables\":{\"owner\":\"forkOwner\",\"name\":\"repo\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\"},\"query\":\"query tree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n tree: object(oid: $sha) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:32:15 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4975", + "X-RateLimit-Reset": "1568125908", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7A68:3ED77:A76256:CACAD4:5D77A5DE", + "content-length": "1075", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1Njc4Njc=\",\"__typename\":\"Repository\",\"tree\":{\"id\":\"MDQ6VHJlZTIwNzU2Nzg2NzozNDg5MjU3NWUyMTZjMDZlNzU3MDkzZjAzNmJkOGUwNTdjNzhhNTJm\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"__typename\":\"Tree\",\"entries\":[{\"path\":\"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\"sha\":\"6d51a38aed7139d2117724b1e307657b6ff2d043\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\"sha\":\"d0582dd245a3f408fb3fe2333bf01400007476e9\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"2016-02-02---A-Brief-History-of-Typography.md\",\"sha\":\"0eea554365f002d0f1572af9a58522d335a794d5\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"2017-18-08---The-Birth-of-Movable-Type.md\",\"sha\":\"44f78c474d04273185a95821426f75affc9b0044\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\"sha\":\"a532f0a9445cdf90a19c6812cff89d1674991774\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"}]}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"commitTree\",\"variables\":{\"owner\":\"forkOwner\",\"name\":\"repo\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\"},\"query\":\"query commitTree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n commit: object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n tree {\\n ...ObjectParts\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:32:15 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4974", + "X-RateLimit-Reset": "1568125908", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7A66:3ED7B:11FAB2E:15D4EC5:5D77A5DE", + "content-length": "256", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1Njc4Njc=\",\"__typename\":\"Repository\",\"commit\":{\"id\":\"MDQ6VHJlZTIwNzU2Nzg2NzozNDg5MjU3NWUyMTZjMDZlNzU3MDkzZjAzNmJkOGUwNTdjNzhhNTJm\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"__typename\":\"Tree\"}}}}\n", + "status": 200 + }, + { + "body": "{\"base_tree\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"tree\":[{\"path\":\"1970-01-01-first-title.md\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"a041245814892e3f73f63ca54333fda649b7fc0b\"}]}", + "method": "POST", + "url": "/repos/forkOwner/repo/git/trees?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:32:15 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "2397", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4975", + "X-RateLimit-Reset": "1568125899", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"f0da3cfe1d93508ff3394044fecf0870\"", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/forkOwner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A6A:2B24:173FF5D:1C42097:5D77A5DF", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a041245814892e3f73f63ca54333fda649b7fc0b\",\n \"size\": 167,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b\"\n },\n {\n \"path\": \"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"size\": 1707,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\"\n },\n {\n \"path\": \"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"size\": 2565,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\"\n },\n {\n \"path\": \"2016-02-02---A-Brief-History-of-Typography.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"0eea554365f002d0f1572af9a58522d335a794d5\",\n \"size\": 2786,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\"\n },\n {\n \"path\": \"2017-18-08---The-Birth-of-Movable-Type.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"44f78c474d04273185a95821426f75affc9b0044\",\n \"size\": 16071,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\"\n },\n {\n \"path\": \"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"size\": 7465,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"base_tree\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\"tree\":[{\"path\":\"posts\",\"mode\":\"040000\",\"type\":\"tree\",\"sha\":\"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\"parentSha\":\"34892575e216c06e757093f036bd8e057c78a52f\"}]}", + "method": "POST", + "url": "/repos/forkOwner/repo/git/trees?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:32:16 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "846", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4974", + "X-RateLimit-Reset": "1568125899", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"2a4689a3495349436da3f799f67c3aa9\"", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/forkOwner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A6C:2B19:A52E27:C8F6A8:5D77A5E0", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"tree\": [\n {\n \"path\": \"pages\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\"\n },\n {\n \"path\": \"posts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"base_tree\":\"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\"tree\":[{\"path\":\"content\",\"mode\":\"040000\",\"type\":\"tree\",\"sha\":\"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\"parentSha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\"}]}", + "method": "POST", + "url": "/repos/forkOwner/repo/git/trees?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:32:17 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "11959", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4973", + "X-RateLimit-Reset": "1568125899", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"f36a35e8ea247dd844853de0d6154f29\"", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/forkOwner/repo/git/trees/daee8d5d15d144e8779955166a2afeccde2770e1", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A6E:2B1F:11C2447:15A9D14:5D77A5E0", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"daee8d5d15d144e8779955166a2afeccde2770e1\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/daee8d5d15d144e8779955166a2afeccde2770e1\",\n \"tree\": [\n {\n \"path\": \".circleci\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"e5e9af3301cac61f120b8e4d40b1733c7a45685a\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/e5e9af3301cac61f120b8e4d40b1733c7a45685a\"\n },\n {\n \"path\": \".eslintignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"80b4531b026d19f8fa589efd122e76199d23f967\",\n \"size\": 39,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/80b4531b026d19f8fa589efd122e76199d23f967\"\n },\n {\n \"path\": \".eslintrc.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"370684994aaed5b858da3a006f48cfa57e88fd27\",\n \"size\": 414,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/370684994aaed5b858da3a006f48cfa57e88fd27\"\n },\n {\n \"path\": \".flowconfig\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14aa2ac4cc0e15223ad98630a6f1325fc81f8043\",\n \"size\": 283,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/14aa2ac4cc0e15223ad98630a6f1325fc81f8043\"\n },\n {\n \"path\": \".gitattributes\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"10a369ddf4f603337cabc6f21646508323941ce1\",\n \"size\": 135,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/10a369ddf4f603337cabc6f21646508323941ce1\"\n },\n {\n \"path\": \".github\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4ebeece548b52b20af59622354530a6d33b50b43\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/4ebeece548b52b20af59622354530a6d33b50b43\"\n },\n {\n \"path\": \".gitignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"c071ba35b0e49899bab6d610a68eef667dbbf157\",\n \"size\": 169,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/c071ba35b0e49899bab6d610a68eef667dbbf157\"\n },\n {\n \"path\": \".prettierignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"393f050e123d998cf8c8b362ff95cc8ac4d250e5\",\n \"size\": 45,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/393f050e123d998cf8c8b362ff95cc8ac4d250e5\"\n },\n {\n \"path\": \".prettierrc\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e52ad05bb13b084d7949dd76e1b2517455162150\",\n \"size\": 223,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/e52ad05bb13b084d7949dd76e1b2517455162150\"\n },\n {\n \"path\": \".stylelintrc.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"4b4c9698d10d756f5faa025659b86375428ed0a7\",\n \"size\": 718,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/4b4c9698d10d756f5faa025659b86375428ed0a7\"\n },\n {\n \"path\": \".vscode\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"286e97ec0113ea8242b41ac222e2c3e8077e6f1e\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/286e97ec0113ea8242b41ac222e2c3e8077e6f1e\"\n },\n {\n \"path\": \"CHANGELOG.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"070a5d4f0eacd2dc0be81ae8996f8982de43046e\",\n \"size\": 2113,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/070a5d4f0eacd2dc0be81ae8996f8982de43046e\"\n },\n {\n \"path\": \"CODE_OF_CONDUCT.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"92bc7565ff0ee145a0041b5179a820f14f39ab22\",\n \"size\": 3355,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/92bc7565ff0ee145a0041b5179a820f14f39ab22\"\n },\n {\n \"path\": \"CONTRIBUTING.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"8552aa241254a61258e1ff9666ab36f32fb1e3b9\",\n \"size\": 3548,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/8552aa241254a61258e1ff9666ab36f32fb1e3b9\"\n },\n {\n \"path\": \"LICENSE\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"42d85938357b49977c126ca03b199129082d4fb8\",\n \"size\": 1091,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/42d85938357b49977c126ca03b199129082d4fb8\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"19df50a78654c8d757ca7f38447aa3d09c7abcce\",\n \"size\": 3698,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/19df50a78654c8d757ca7f38447aa3d09c7abcce\"\n },\n {\n \"path\": \"backend\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\"\n },\n {\n \"path\": \"config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"58afd573bbb69fcca000efd0f5d90b93c93a98dd\",\n \"size\": 853,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/58afd573bbb69fcca000efd0f5d90b93c93a98dd\"\n },\n {\n \"path\": \"content\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639\"\n },\n {\n \"path\": \"flow-typed\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"86c32fd6c3118be5e0dbbb231a834447357236c6\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/86c32fd6c3118be5e0dbbb231a834447357236c6\"\n },\n {\n \"path\": \"flow\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"0af45ad00d155c8d8c7407d913ff85278244c9ce\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/0af45ad00d155c8d8c7407d913ff85278244c9ce\"\n },\n {\n \"path\": \"gatsby-browser.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9bd2c9dce175f04980e91cd9dc295a299e3cdb80\",\n \"size\": 90,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/9bd2c9dce175f04980e91cd9dc295a299e3cdb80\"\n },\n {\n \"path\": \"gatsby-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"353a109dad62e3f25bf9f5e6a2167f21a6c8b459\",\n \"size\": 7228,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/353a109dad62e3f25bf9f5e6a2167f21a6c8b459\"\n },\n {\n \"path\": \"gatsby-node.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14a207883c2093d2cc071bc5a464e165bcc1fead\",\n \"size\": 409,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/14a207883c2093d2cc071bc5a464e165bcc1fead\"\n },\n {\n \"path\": \"gatsby\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4f23c06cd1740bf78304d2c0b29bf6bfdf427981\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/4f23c06cd1740bf78304d2c0b29bf6bfdf427981\"\n },\n {\n \"path\": \"jest\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\"\n },\n {\n \"path\": \"netlify.toml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"599b99cc5700404fde316a7ede829776f23e7d45\",\n \"size\": 137,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/599b99cc5700404fde316a7ede829776f23e7d45\"\n },\n {\n \"path\": \"package.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9d777616438b90a18f1a4ebfd5f114b4c06c6f17\",\n \"size\": 6855,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/9d777616438b90a18f1a4ebfd5f114b4c06c6f17\"\n },\n {\n \"path\": \"postcss-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d216501e9b351a72e00ba0b7459a6500e27e7da2\",\n \"size\": 703,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/d216501e9b351a72e00ba0b7459a6500e27e7da2\"\n },\n {\n \"path\": \"renovate.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"dcc309398785698b8870545c32051a3d72dd8271\",\n \"size\": 460,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/dcc309398785698b8870545c32051a3d72dd8271\"\n },\n {\n \"path\": \"serverless-scripts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ee3701f2fbfc7196ba340f6481d1387d20527898\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/ee3701f2fbfc7196ba340f6481d1387d20527898\"\n },\n {\n \"path\": \"serverless-single-page-app-plugin\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"08763fcfba643a06a452398517019bea4a5850ba\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/08763fcfba643a06a452398517019bea4a5850ba\"\n },\n {\n \"path\": \"serverless.yml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"20b22c5fad229f35d029bf6614d333d82fe8a987\",\n \"size\": 7803,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/20b22c5fad229f35d029bf6614d333d82fe8a987\"\n },\n {\n \"path\": \"src\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"8cdb35a88232c0f32f12f130c92c7cc55f97f471\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/8cdb35a88232c0f32f12f130c92c7cc55f97f471\"\n },\n {\n \"path\": \"static\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"53c6380a600a030d3722bff7ecde36f749fb6964\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/53c6380a600a030d3722bff7ecde36f749fb6964\"\n },\n {\n \"path\": \"utils\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"a592549c9f74db40b51efefcda2fd76810405f27\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/a592549c9f74db40b51efefcda2fd76810405f27\"\n },\n {\n \"path\": \"yarn.lock\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"475c9c1924ca752a0686303e2fdeb7b13ad75f57\",\n \"size\": 793903,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/475c9c1924ca752a0686303e2fdeb7b13ad75f57\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"message\":\"Create Post “1970-01-01-first-title”\",\"tree\":\"daee8d5d15d144e8779955166a2afeccde2770e1\",\"parents\":[\"726172deae99c8a2cea4c71e734a02a793d4d9e5\"]}", + "method": "POST", + "url": "/repos/forkOwner/repo/git/commits?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:32:18 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "1565", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4972", + "X-RateLimit-Reset": "1568125899", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"22787e0eea36e65061e0d9c2f09685d3\"", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/forkOwner/repo/git/commits/3a520275f9f1bb56169169db21d627d9aacbedff", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A70:15110:17FDD31:1D22E32:5D77A5E1", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"3a520275f9f1bb56169169db21d627d9aacbedff\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NTY3ODY3OjNhNTIwMjc1ZjlmMWJiNTYxNjkxNjlkYjIxZDYyN2Q5YWFjYmVkZmY=\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/3a520275f9f1bb56169169db21d627d9aacbedff\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/3a520275f9f1bb56169169db21d627d9aacbedff\",\n \"author\": {\n \"name\": \"forkOwner\",\n \"email\": \"53494188+forkOwner@users.noreply.github.com\",\n \"date\": \"2019-09-10T13:32:18Z\"\n },\n \"committer\": {\n \"name\": \"forkOwner\",\n \"email\": \"53494188+forkOwner@users.noreply.github.com\",\n \"date\": \"2019-09-10T13:32:18Z\"\n },\n \"tree\": {\n \"sha\": \"daee8d5d15d144e8779955166a2afeccde2770e1\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/daee8d5d15d144e8779955166a2afeccde2770e1\"\n },\n \"message\": \"Create Post “1970-01-01-first-title”\",\n \"parents\": [\n {\n \"sha\": \"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/726172deae99c8a2cea4c71e734a02a793d4d9e5\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "status": 201 + }, + { + "body": "{\"operationName\":\"createBranch\",\"variables\":{\"createRefInput\":{\"name\":\"refs/heads/cms/forkOwner/repo/posts/1970-01-01-first-title\",\"oid\":\"3a520275f9f1bb56169169db21d627d9aacbedff\",\"repositoryId\":\"MDEwOlJlcG9zaXRvcnkyMDc1Njc4Njc=\"}},\"query\":\"mutation createBranch($createRefInput: CreateRefInput!) {\\n createRef(input: $createRefInput) {\\n branch: ref {\\n ...BranchParts\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment BranchParts on Ref {\\n commit: target {\\n ...ObjectParts\\n __typename\\n }\\n id\\n name\\n repository {\\n ...RepositoryParts\\n __typename\\n }\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:32:19 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4973", + "X-RateLimit-Reset": "1568125908", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7A72:244EB:1786A1C:1C90B86:5D77A5E2", + "content-length": "604", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"createRef\":{\"branch\":{\"commit\":{\"id\":\"MDY6Q29tbWl0MjA3NTY3ODY3OjNhNTIwMjc1ZjlmMWJiNTYxNjkxNjlkYjIxZDYyN2Q5YWFjYmVkZmY=\",\"sha\":\"3a520275f9f1bb56169169db21d627d9aacbedff\",\"__typename\":\"Commit\"},\"id\":\"MDM6UmVmMjA3NTY3ODY3OmNtcy9lcmV6cm9rYWgtdGVzdC9nYXRzYnktbmV0bGlmeS1jbXMtYXdzLTE1NjgxMjIwODcxNzQtNjVyMXMwa3U2Ym8vcG9zdHMvMTk3MC0wMS0wMS1maXJzdC10aXRsZQ==\",\"name\":\"cms/forkOwner/repo/posts/1970-01-01-first-title\",\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1Njc4Njc=\",\"__typename\":\"Repository\"},\"__typename\":\"Ref\"},\"__typename\":\"CreateRefPayload\"}}}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/forkOwner/repo/git/refs/meta/_netlify_cms?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:32:20 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "404 Not Found", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4971", + "X-RateLimit-Reset": "1568125899", + "X-Poll-Interval": "300", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A75:244E7:1141DEC:150D153:5D77A5E3", + "content-length": "113", + "connection": "keep-alive" + }, + "response": "{\n \"message\": \"Not Found\",\n \"documentation_url\": \"https://developer.github.com/v3/git/refs/#get-a-reference\"\n}\n", + "status": 404 + }, + { + "body": "{\"content\":\"IyBOZXRsaWZ5IENNUwoKVGhpcyB0cmVlIGlzIHVzZWQgYnkgdGhlIE5ldGxpZnkgQ01TIHRvIHN0b3JlIG1ldGFkYXRhIGluZm9ybWF0aW9uIGZvciBzcGVjaWZpYyBmaWxlcyBhbmQgYnJhbmNoZXMu\",\"encoding\":\"base64\"}", + "method": "POST", + "url": "/repos/forkOwner/repo/git/blobs?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:32:21 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "212", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4970", + "X-RateLimit-Reset": "1568125899", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"f844c712b6f5653842fa45e4682b61ca\"", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/forkOwner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A76:244E4:AABDBE:CED1BC:5D77A5E4", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n}\n", + "status": 201 + }, + { + "body": "{\"tree\":[{\"path\":\"README.md\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"98787d1bd948850444433e91a43091a76c4eb455\"}]}", + "method": "POST", + "url": "/repos/forkOwner/repo/git/trees?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:32:22 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "571", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4969", + "X-RateLimit-Reset": "1568125899", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"769c2e8c7277a7b0b2eece11eb09845c\"", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/forkOwner/repo/git/trees/77d01c8bf1e79f9fb17c60fe405ce741bb4eb0a6", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A7B:1510F:11CC874:1597AA3:5D77A5E5", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"77d01c8bf1e79f9fb17c60fe405ce741bb4eb0a6\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/77d01c8bf1e79f9fb17c60fe405ce741bb4eb0a6\",\n \"tree\": [\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"message\":\"First Commit\",\"tree\":\"77d01c8bf1e79f9fb17c60fe405ce741bb4eb0a6\",\"parents\":[]}", + "method": "POST", + "url": "/repos/forkOwner/repo/git/commits?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:32:23 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "1156", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4968", + "X-RateLimit-Reset": "1568125899", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"5230dfe23346ac7da41090e46cf05cff\"", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/forkOwner/repo/git/commits/47226f79082851c9cd78689fbdc7d64a7dadc133", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A7C:2B24:1740C4F:1C43065:5D77A5E6", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"47226f79082851c9cd78689fbdc7d64a7dadc133\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NTY3ODY3OjQ3MjI2Zjc5MDgyODUxYzljZDc4Njg5ZmJkYzdkNjRhN2RhZGMxMzM=\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/47226f79082851c9cd78689fbdc7d64a7dadc133\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/47226f79082851c9cd78689fbdc7d64a7dadc133\",\n \"author\": {\n \"name\": \"forkOwner\",\n \"email\": \"53494188+forkOwner@users.noreply.github.com\",\n \"date\": \"2019-09-10T13:32:23Z\"\n },\n \"committer\": {\n \"name\": \"forkOwner\",\n \"email\": \"53494188+forkOwner@users.noreply.github.com\",\n \"date\": \"2019-09-10T13:32:23Z\"\n },\n \"tree\": {\n \"sha\": \"77d01c8bf1e79f9fb17c60fe405ce741bb4eb0a6\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/77d01c8bf1e79f9fb17c60fe405ce741bb4eb0a6\"\n },\n \"message\": \"First Commit\",\n \"parents\": [\n\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "status": 201 + }, + { + "body": "{\"ref\":\"refs/meta/_netlify_cms\",\"sha\":\"47226f79082851c9cd78689fbdc7d64a7dadc133\"}", + "method": "POST", + "url": "/repos/forkOwner/repo/git/refs?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:32:24 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "494", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4967", + "X-RateLimit-Reset": "1568125899", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"61614afd77f92a058b96825b9362ac34\"", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "Location": "https://api.github.com/repos/forkOwner/repo/git/refs/meta/_netlify_cms", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A7E:9D20:10EDDE2:14B2546:5D77A5E7", + "connection": "keep-alive" + }, + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NTY3ODY3OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"47226f79082851c9cd78689fbdc7d64a7dadc133\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/47226f79082851c9cd78689fbdc7d64a7dadc133\"\n }\n}\n", + "status": 201 + }, + { + "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJ1c2VyIjoiZm9ya093bmVyIiwic3RhdHVzIjoiZHJhZnQiLCJicmFuY2giOiJjbXMvZm9ya093bmVyL3JlcG8vcG9zdHMvMTk3MC0wMS0wMS1maXJzdC10aXRsZSIsImNvbGxlY3Rpb24iOiJwb3N0cyIsImNvbW1pdE1lc3NhZ2UiOiJDcmVhdGUgUG9zdCDigJwxOTcwLTAxLTAxLWZpcnN0LXRpdGxl4oCdIiwidGl0bGUiOiJmaXJzdCB0aXRsZSIsImRlc2NyaXB0aW9uIjoiZmlyc3QgZGVzY3JpcHRpb24iLCJvYmplY3RzIjp7ImVudHJ5Ijp7InBhdGgiOiJjb250ZW50L3Bvc3RzLzE5NzAtMDEtMDEtZmlyc3QtdGl0bGUubWQiLCJzaGEiOiJhMDQxMjQ1ODE0ODkyZTNmNzNmNjNjYTU0MzMzZmRhNjQ5YjdmYzBiIn0sImZpbGVzIjpbXX0sInRpbWVTdGFtcCI6IjE5NzAtMDEtMDFUMDA6MDA6MDAuMzAwWiJ9\",\"encoding\":\"base64\"}", + "method": "POST", + "url": "/repos/forkOwner/repo/git/blobs?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:32:25 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "212", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4966", + "X-RateLimit-Reset": "1568125899", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"54f6490b9715c8c0813a4ff80c9f09f4\"", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/forkOwner/repo/git/blobs/b7953b5b2815d858dd0f67d5cce660774d85827b", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A81:2B1F:11C2D9D:15AA8DD:5D77A5E8", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"b7953b5b2815d858dd0f67d5cce660774d85827b\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/b7953b5b2815d858dd0f67d5cce660774d85827b\"\n}\n", + "status": 201 + }, + { + "body": "{\"operationName\":\"commitTree\",\"variables\":{\"owner\":\"forkOwner\",\"name\":\"repo\",\"sha\":\"47226f79082851c9cd78689fbdc7d64a7dadc133\"},\"query\":\"query commitTree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n commit: object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n tree {\\n ...ObjectParts\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:32:25 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4972", + "X-RateLimit-Reset": "1568125908", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7A82:1510F:11CCD86:15980F8:5D77A5E9", + "content-length": "558", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1Njc4Njc=\",\"__typename\":\"Repository\",\"commit\":{\"id\":\"MDY6Q29tbWl0MjA3NTY3ODY3OjQ3MjI2Zjc5MDgyODUxYzljZDc4Njg5ZmJkYzdkNjRhN2RhZGMxMzM=\",\"sha\":\"47226f79082851c9cd78689fbdc7d64a7dadc133\",\"__typename\":\"Commit\",\"tree\":{\"id\":\"MDQ6VHJlZTIwNzU2Nzg2Nzo3N2QwMWM4YmYxZTc5ZjlmYjE3YzYwZmU0MDVjZTc0MWJiNGViMGE2\",\"sha\":\"77d01c8bf1e79f9fb17c60fe405ce741bb4eb0a6\",\"__typename\":\"Tree\",\"entries\":[{\"path\":\"README.md\",\"sha\":\"98787d1bd948850444433e91a43091a76c4eb455\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"}]}}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"tree\",\"variables\":{\"owner\":\"forkOwner\",\"name\":\"repo\",\"sha\":\"47226f79082851c9cd78689fbdc7d64a7dadc133\"},\"query\":\"query tree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n tree: object(oid: $sha) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:32:26 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4971", + "X-RateLimit-Reset": "1568125908", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7A84:3ED74:19E500:1FAD87:5D77A5E9", + "content-length": "260", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1Njc4Njc=\",\"__typename\":\"Repository\",\"tree\":{\"id\":\"MDY6Q29tbWl0MjA3NTY3ODY3OjQ3MjI2Zjc5MDgyODUxYzljZDc4Njg5ZmJkYzdkNjRhN2RhZGMxMzM=\",\"sha\":\"47226f79082851c9cd78689fbdc7d64a7dadc133\",\"__typename\":\"Commit\"}}}}\n", + "status": 200 + }, + { + "body": "{\"base_tree\":\"47226f79082851c9cd78689fbdc7d64a7dadc133\",\"tree\":[{\"path\":\"forkOwner/repo/posts/1970-01-01-first-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"b7953b5b2815d858dd0f67d5cce660774d85827b\"}]}", + "method": "POST", + "url": "/repos/forkOwner/repo/git/trees?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:32:26 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "878", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4965", + "X-RateLimit-Reset": "1568125899", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"649c0edb639d5d37a4d77f313f2c2134\"", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/forkOwner/repo/git/trees/12fbacfbb396749a45b22c0ab520b5927da6488d", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A86:9D1F:9E8EC8:C1799C:5D77A5EA", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"12fbacfbb396749a45b22c0ab520b5927da6488d\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/12fbacfbb396749a45b22c0ab520b5927da6488d\",\n \"tree\": [\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n },\n {\n \"path\": \"forkOwner\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"a03cc9e4fd5f46ff1a1383b22aa4edc809590222\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/a03cc9e4fd5f46ff1a1383b22aa4edc809590222\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"message\":\"Updating “forkOwner/repo/posts/1970-01-01-first-title” metadata\",\"tree\":\"12fbacfbb396749a45b22c0ab520b5927da6488d\",\"parents\":[\"47226f79082851c9cd78689fbdc7d64a7dadc133\"]}", + "method": "POST", + "url": "/repos/forkOwner/repo/git/commits?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:32:27 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "1641", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4964", + "X-RateLimit-Reset": "1568125899", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"7b782dd591be66dee726e274d999ce94\"", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/forkOwner/repo/git/commits/2bb98e1b99325f069356fb8731fae41b093e1bbc", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A89:9D1F:9E8F91:C17A86:5D77A5EB", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"2bb98e1b99325f069356fb8731fae41b093e1bbc\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NTY3ODY3OjJiYjk4ZTFiOTkzMjVmMDY5MzU2ZmI4NzMxZmFlNDFiMDkzZTFiYmM=\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/2bb98e1b99325f069356fb8731fae41b093e1bbc\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/2bb98e1b99325f069356fb8731fae41b093e1bbc\",\n \"author\": {\n \"name\": \"forkOwner\",\n \"email\": \"53494188+forkOwner@users.noreply.github.com\",\n \"date\": \"2019-09-10T13:32:27Z\"\n },\n \"committer\": {\n \"name\": \"forkOwner\",\n \"email\": \"53494188+forkOwner@users.noreply.github.com\",\n \"date\": \"2019-09-10T13:32:27Z\"\n },\n \"tree\": {\n \"sha\": \"12fbacfbb396749a45b22c0ab520b5927da6488d\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/12fbacfbb396749a45b22c0ab520b5927da6488d\"\n },\n \"message\": \"Updating “forkOwner/repo/posts/1970-01-01-first-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"47226f79082851c9cd78689fbdc7d64a7dadc133\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/47226f79082851c9cd78689fbdc7d64a7dadc133\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/47226f79082851c9cd78689fbdc7d64a7dadc133\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "status": 201 + }, + { + "body": "{\"sha\":\"2bb98e1b99325f069356fb8731fae41b093e1bbc\",\"force\":false}", + "method": "PATCH", + "url": "/repos/forkOwner/repo/git/refs/meta/_netlify_cms?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:32:29 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4963", + "X-RateLimit-Reset": "1568125899", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"4ee0d5cc2133d4feff0de1d7644813e1\"", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A8A:1510D:44D44F:5462A3:5D77A5EC", + "content-length": "494", + "connection": "keep-alive" + }, + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NTY3ODY3OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"2bb98e1b99325f069356fb8731fae41b093e1bbc\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/2bb98e1b99325f069356fb8731fae41b093e1bbc\"\n }\n}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"unpublishedBranchFile\",\"variables\":{\"headOwner\":\"forkOwner\",\"headRepoName\":\"repo\",\"headExpression\":\"cms/forkOwner/repo/posts/1970-01-01-first-title:content/posts/1970-01-01-first-title.md\",\"baseOwner\":\"owner\",\"baseRepoName\":\"repo\",\"baseExpression\":\"master:content/posts/1970-01-01-first-title.md\"},\"query\":\"query unpublishedBranchFile($headOwner: String!, $headRepoName: String!, $headExpression: String!, $baseOwner: String!, $baseRepoName: String!, $baseExpression: String!) {\\n head: repository(owner: $headOwner, name: $headRepoName) {\\n ...RepositoryParts\\n object(expression: $headExpression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n base: repository(owner: $baseOwner, name: $baseRepoName) {\\n ...RepositoryParts\\n object(expression: $baseExpression) {\\n ... on Blob {\\n id\\n oid\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:32:30 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4970", + "X-RateLimit-Reset": "1568125908", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7A8C:244E7:1142A64:150E0C1:5D77A5ED", + "content-length": "496", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"head\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1Njc4Njc=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzU2Nzg2NzphMDQxMjQ1ODE0ODkyZTNmNzNmNjNjYTU0MzMzZmRhNjQ5YjdmYzBi\",\"text\":\"---\\ntemplate: post\\ntitle: first title\\ndraft: true\\ndate: 1970-01-01T00:00:00.000Z\\ndescription: first description\\ncategory: first category\\ntags:\\n - tag1\\n---\\nfirst body\\n\",\"is_binary\":false,\"__typename\":\"Blob\"}},\"base\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"object\":null}}}\n", + "status": 200 + } +] \ No newline at end of file diff --git a/cypress/fixtures/Github Backend Editorial Workflow - GraphQL API - Open Authoring__can create an entry.json b/cypress/fixtures/Github Backend Editorial Workflow - GraphQL API - Open Authoring__can create an entry.json new file mode 100644 index 00000000..91e00ff8 --- /dev/null +++ b/cypress/fixtures/Github Backend Editorial Workflow - GraphQL API - Open Authoring__can create an entry.json @@ -0,0 +1,1303 @@ +[ + { + "method": "GET", + "url": "/user", + "headers": { + "Date": "Tue, 10 Sep 2019 13:28:58 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4989", + "X-RateLimit-Reset": "1568125713", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"fb606f875be1d23b690ea5f5e26b9fe9\"", + "Last-Modified": "Wed, 28 Aug 2019 04:48:54 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B8E:2B24:172B1A6:1C285FB:5D77A51A", + "content-length": "1321", + "connection": "keep-alive" + }, + "response": "{\"login\":\"owner\",\"id\":1,\"avatar_url\":\"https://avatars1.githubusercontent.com/u/7892489?v=4\",\"name\":\"owner\"}", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/collaborators/owner/permission", + "headers": { + "Date": "Tue, 10 Sep 2019 13:28:59 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4988", + "X-RateLimit-Reset": "1568125713", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"254416b9fc40a4c5acc82d271a9b493b\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B91:1510D:44808D:53FA16:5D77A51A", + "content-length": "1071", + "connection": "keep-alive" + }, + "response": "{\n \"permission\": \"admin\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n}\n", + "status": 200 + }, + { + "body": "{\"operationName\":null,\"variables\":{},\"query\":\"{\\n viewer {\\n id\\n avatar_url: avatarUrl\\n name\\n login\\n __typename\\n }\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:28:59 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4990", + "X-RateLimit-Reset": "1568125723", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7B93:9D20:10DDE4A:149E7D3:5D77A51B", + "content-length": "179", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"viewer\":{\"id\":\"MDQ6VXNlcjI2NzYwNTcx\",\"avatar_url\":\"https://avatars1.githubusercontent.com/u/7892489?v=4\",\"name\":\"owner\",\"login\":\"owner\",\"__typename\":\"User\"}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"repoPermission\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\"},\"query\":\"query repoPermission($owner: String!, $name: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n viewerPermission\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:29:00 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4989", + "X-RateLimit-Reset": "1568125723", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7B94:244EB:1772214:1C7766E:5D77A51C", + "content-length": "119", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"viewerPermission\":\"ADMIN\"}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"files\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"master:content/posts\"},\"query\":\"query files($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...FileEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment FileEntryParts on TreeEntry {\\n name\\n sha: oid\\n type\\n blob: object {\\n ... on Blob {\\n size: byteSize\\n __typename\\n }\\n __typename\\n }\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:29:01 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4988", + "X-RateLimit-Reset": "1568125723", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7B96:1510F:11BC2E9:1583793:5D77A51D", + "content-length": "1218", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6VHJlZTIwNzU2NzAxMTozNDg5MjU3NWUyMTZjMDZlNzU3MDkzZjAzNmJkOGUwNTdjNzhhNTJm\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"__typename\":\"Tree\",\"entries\":[{\"name\":\"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\"sha\":\"6d51a38aed7139d2117724b1e307657b6ff2d043\",\"type\":\"blob\",\"blob\":{\"size\":1707,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\"sha\":\"d0582dd245a3f408fb3fe2333bf01400007476e9\",\"type\":\"blob\",\"blob\":{\"size\":2565,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2016-02-02---A-Brief-History-of-Typography.md\",\"sha\":\"0eea554365f002d0f1572af9a58522d335a794d5\",\"type\":\"blob\",\"blob\":{\"size\":2786,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2017-18-08---The-Birth-of-Movable-Type.md\",\"sha\":\"44f78c474d04273185a95821426f75affc9b0044\",\"type\":\"blob\",\"blob\":{\"size\":16071,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\"sha\":\"a532f0a9445cdf90a19c6812cff89d1674991774\",\"type\":\"blob\",\"blob\":{\"size\":7465,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"}]}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"files\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"master:static/media\"},\"query\":\"query files($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...FileEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment FileEntryParts on TreeEntry {\\n name\\n sha: oid\\n type\\n blob: object {\\n ... on Blob {\\n size: byteSize\\n __typename\\n }\\n __typename\\n }\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:29:02 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4987", + "X-RateLimit-Reset": "1568125723", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7B98:1510C:170D0F:1C30EA:5D77A51D", + "content-length": "1837", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6VHJlZTIwNzU2NzAxMTo5Yjc2OTliNTdlMTQzMDkxMGRiODI4MzFkY2Y2YjhhMWQxZGJkYWM5\",\"sha\":\"9b7699b57e1430910db82831dcf6b8a1d1dbdac9\",\"__typename\":\"Tree\",\"entries\":[{\"name\":\"42-line-bible.jpg\",\"sha\":\"41c8d12f9ca5864beb827c381fbeff935209d5fb\",\"type\":\"blob\",\"blob\":{\"size\":671242,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"gutenberg.jpg\",\"sha\":\"04315e355873ea5d358d9c371c39a6845c1ae4ae\",\"type\":\"blob\",\"blob\":{\"size\":155002,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-0.jpg\",\"sha\":\"b70a1b64fd4fa9635823231a0ba92c6dc9393f16\",\"type\":\"blob\",\"blob\":{\"size\":660287,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-1.jpg\",\"sha\":\"05eedae372b829c62501ac751b2d42dcc432541b\",\"type\":\"blob\",\"blob\":{\"size\":392411,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-2.jpg\",\"sha\":\"53845ed35faf8939bea242bb85eda7c324b1be0b\",\"type\":\"blob\",\"blob\":{\"size\":99147,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-3.jpg\",\"sha\":\"8b2339d97069e826fae1f156212e40ae458454e3\",\"type\":\"blob\",\"blob\":{\"size\":358022,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-4.jpg\",\"sha\":\"a8f6f21253a67a4284b5a953b2fe633d44152ecd\",\"type\":\"blob\",\"blob\":{\"size\":114837,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"movable-type.jpg\",\"sha\":\"57b4e925ea00bd8e195cf4418eb6eb2995ea5f10\",\"type\":\"blob\",\"blob\":{\"size\":559028,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"printing-press.jpg\",\"sha\":\"d27f56c9437d9becd2f56cc627c9322c2f1f61f6\",\"type\":\"blob\",\"blob\":{\"size\":279283,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"type-through-time.jpg\",\"sha\":\"3f08366a805c51a60ec5056010f22de4ba08abaa\",\"type\":\"blob\",\"blob\":{\"size\":117689,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"}]}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"0eea554365f002d0f1572af9a58522d335a794d5\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:29:02 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4986", + "X-RateLimit-Reset": "1568125723", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7BAA:2B24:172B848:1C28E54:5D77A51E", + "content-length": "3102", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzU2NzAxMTowZWVhNTU0MzY1ZjAwMmQwZjE1NzJhZjlhNTg1MjJkMzM1YTc5NGQ1\",\"text\":\"---\\ntitle: \\\"A Brief History of Typography\\\"\\ndate: \\\"2016-02-02T22:40:32.169Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Design Inspiration\\\"\\ntags:\\n - \\\"Linotype\\\"\\n - \\\"Monotype\\\"\\n - \\\"History of typography\\\"\\n - \\\"Helvetica\\\"\\ndescription: \\\"Morbi in sem quis dui placerat ornare. Pellentesque odio nisi, euismod in, pharetra a, ultricies in, diam. Sed arcu. Cras consequat.\\\"\\ncanonical: ''\\n---\\n\\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \\n\\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\\n\\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-0.jpg)\\n\\n## Header Level 2\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \\n\\n
\\n\\t
\\n\\t\\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\\n\\t\\t
\\n\\t\\t\\t— Aliquam tincidunt mauris eu risus.\\n\\t\\t
\\n\\t
\\n
\\n\\n### Header Level 3\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\\n\\n```css\\n#header h1 a {\\n display: block;\\n width: 300px;\\n height: 80px;\\n}\\n```\\n\\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"d0582dd245a3f408fb3fe2333bf01400007476e9\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:29:02 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4984", + "X-RateLimit-Reset": "1568125723", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7BA2:1510F:11BC474:158397A:5D77A51E", + "content-length": "2866", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzU2NzAxMTpkMDU4MmRkMjQ1YTNmNDA4ZmIzZmUyMzMzYmYwMTQwMDAwNzQ3NmU5\",\"text\":\"---\\ntitle: The Origins of Social Stationery Lettering\\ndate: \\\"2016-12-01T22:40:32.169Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Design Culture\\\"\\ndescription: \\\"Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante.\\\"\\ncanonical: ''\\n---\\n\\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \\n\\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\\n\\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-3.jpg)\\n\\n## Header Level 2\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \\n\\n
\\n\\t
\\n\\t\\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\\n\\t\\t
\\n\\t\\t\\t— Aliquam tincidunt mauris eu risus.\\n\\t\\t
\\n\\t
\\n
\\n\\n### Header Level 3\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\\n\\n```css\\n#header h1 a {\\n display: block;\\n width: 300px;\\n height: 80px;\\n}\\n```\\n\\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"6d51a38aed7139d2117724b1e307657b6ff2d043\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:29:02 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4985", + "X-RateLimit-Reset": "1568125723", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7B9C:2B19:A48A08:C82BB2:5D77A51E", + "content-length": "1973", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzU2NzAxMTo2ZDUxYTM4YWVkNzEzOWQyMTE3NzI0YjFlMzA3NjU3YjZmZjJkMDQz\",\"text\":\"---\\ntitle: Perfecting the Art of Perfection\\ndate: \\\"2016-09-01T23:46:37.121Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Design Inspiration\\\"\\ntags:\\n - \\\"Handwriting\\\"\\n - \\\"Learning to write\\\"\\ndescription: \\\"Quisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\\\"\\ncanonical: ''\\n---\\n\\nQuisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\\n\\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-2.jpg)\\n\\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. \\n\\nPraesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"44f78c474d04273185a95821426f75affc9b0044\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:29:02 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4983", + "X-RateLimit-Reset": "1568125723", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7BAF:1510E:A77B7A:CBF9D5:5D77A51E", + "content-length": "16478", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzU2NzAxMTo0NGY3OGM0NzRkMDQyNzMxODVhOTU4MjE0MjZmNzVhZmZjOWIwMDQ0\",\"text\":\"---\\ntitle: \\\"Johannes Gutenberg: The Birth of Movable Type\\\"\\ndate: \\\"2017-08-18T22:12:03.284Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Typography\\\"\\ntags:\\n - \\\"Open source\\\"\\n - \\\"Gatsby\\\"\\n - \\\"Typography\\\"\\ndescription: \\\"German inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\\\"\\ncanonical: ''\\n---\\n\\nGerman inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\\n\\n**Johannes Gensfleisch zur Laden zum Gutenberg** (c. 1398 – 1468) was a German blacksmith, goldsmith, printer, and publisher who introduced printing to Europe. His invention of mechanical movable type printing started the Printing Revolution and is widely regarded as the most important event of the modern period. It played a key role in the development of the Renaissance, Reformation, the Age of Enlightenment, and the Scientific revolution and laid the material basis for the modern knowledge-based economy and the spread of learning to the masses.\\n\\n
\\n\\t\\\"Gutenberg\\\"\\n\\t
Johannes Gutenberg
\\n
\\n\\nWith his invention of the printing press, Gutenberg was the first European to use movable type printing, in around 1439. Among his many contributions to printing are: the invention of a process for mass-producing movable type; the use of oil-based ink; and the use of a wooden printing press similar to the agricultural screw presses of the period. His truly epochal invention was the combination of these elements into a practical system that allowed the mass production of printed books and was economically viable for printers and readers alike. Gutenberg's method for making type is traditionally considered to have included a type metal alloy and a hand mould for casting type. The alloy was a mixture of lead, tin, and antimony that melted at a relatively low temperature for faster and more economical casting, cast well, and created a durable type.\\n\\nIn Renaissance Europe, the arrival of mechanical movable type printing introduced the era of mass communication which permanently altered the structure of society. The relatively unrestricted circulation of information — including revolutionary ideas — transcended borders, captured the masses in the Reformation and threatened the power of political and religious authorities; the sharp increase in literacy broke the monopoly of the literate elite on education and learning and bolstered the emerging middle class. Across Europe, the increasing cultural self-awareness of its people led to the rise of proto-nationalism, accelerated by the flowering of the European vernacular languages to the detriment of Latin's status as lingua franca. In the 19th century, the replacement of the hand-operated Gutenberg-style press by steam-powered rotary presses allowed printing on an industrial scale, while Western-style printing was adopted all over the world, becoming practically the sole medium for modern bulk printing.\\n\\nThe use of movable type was a marked improvement on the handwritten manuscript, which was the existing method of book production in Europe, and upon woodblock printing, and revolutionized European book-making. Gutenberg's printing technology spread rapidly throughout Europe and later the world.\\n\\nHis major work, the Gutenberg Bible (also known as the 42-line Bible), has been acclaimed for its high aesthetic and technical quality.\\n\\n## Printing Press\\n\\nAround 1439, Gutenberg was involved in a financial misadventure making polished metal mirrors (which were believed to capture holy light from religious relics) for sale to pilgrims to Aachen: in 1439 the city was planning to exhibit its collection of relics from Emperor Charlemagne but the event was delayed by one year due to a severe flood and the capital already spent could not be repaid. When the question of satisfying the investors came up, Gutenberg is said to have promised to share a “secret”. It has been widely speculated that this secret may have been the idea of printing with movable type. Also around 1439–1440, the Dutch Laurens Janszoon Coster came up with the idea of printing. Legend has it that the idea came to him “like a ray of light”.\\n\\n
\\n\\t\\\"Early\\n\\t
Early wooden printing press as depicted in 1568.
\\n
\\n\\nUntil at least 1444 he lived in Strasbourg, most likely in the St. Arbogast parish. It was in Strasbourg in 1440 that Gutenberg is said to have perfected and unveiled the secret of printing based on his research, mysteriously entitled Kunst und Aventur (art and enterprise). It is not clear what work he was engaged in, or whether some early trials with printing from movable type may have been conducted there. After this, there is a gap of four years in the record. In 1448, he was back in Mainz, where he took out a loan from his brother-in-law Arnold Gelthus, quite possibly for a printing press or related paraphernalia. By this date, Gutenberg may have been familiar with intaglio printing; it is claimed that he had worked on copper engravings with an artist known as the Master of Playing Cards.\\n\\nBy 1450, the press was in operation, and a German poem had been printed, possibly the first item to be printed there. Gutenberg was able to convince the wealthy moneylender Johann Fust for a loan of 800 guilders. Peter Schöffer, who became Fust’s son-in-law, also joined the enterprise. Schöffer had worked as a scribe in Paris and is believed to have designed some of the first typefaces.\\n\\n
\\n\\t
\\n\\t\\t

All that has been written to me about that marvelous man seen at Frankfurt is true. I have not seen complete Bibles but only a number of quires of various books of the Bible. The script was very neat and legible, not at all difficult to follow—your grace would be able to read it without effort, and indeed without glasses.

\\n\\t\\t
\\n\\t\\t\\t—Future pope Pius II in a letter to Cardinal Carvajal, March 1455\\n\\t\\t
\\n\\t
\\n
\\n\\nGutenberg's workshop was set up at Hof Humbrecht, a property belonging to a distant relative. It is not clear when Gutenberg conceived the Bible project, but for this he borrowed another 800 guilders from Fust, and work commenced in 1452. At the same time, the press was also printing other, more lucrative texts (possibly Latin grammars). There is also some speculation that there may have been two presses, one for the pedestrian texts, and one for the Bible. One of the profit-making enterprises of the new press was the printing of thousands of indulgences for the church, documented from 1454–55.\\n\\nIn 1455 Gutenberg completed his 42-line Bible, known as the Gutenberg Bible. About 180 copies were printed, most on paper and some on vellum.\\n\\n## Court Case\\n\\nSome time in 1456, there was a dispute between Gutenberg and Fust, and Fust demanded his money back, accusing Gutenberg of misusing the funds. Meanwhile the expenses of the Bible project had proliferated, and Gutenberg's debt now exceeded 20,000 guilders. Fust sued at the archbishop's court. A November 1455 legal document records that there was a partnership for a \\\"project of the books,\\\" the funds for which Gutenberg had used for other purposes, according to Fust. The court decided in favor of Fust, giving him control over the Bible printing workshop and half of all printed Bibles.\\n\\nThus Gutenberg was effectively bankrupt, but it appears he retained (or re-started) a small printing shop, and participated in the printing of a Bible in the town of Bamberg around 1459, for which he seems at least to have supplied the type. But since his printed books never carry his name or a date, it is difficult to be certain, and there is consequently a considerable scholarly debate on this subject. It is also possible that the large Catholicon dictionary, 300 copies of 754 pages, printed in Mainz in 1460, may have been executed in his workshop.\\n\\nMeanwhile, the Fust–Schöffer shop was the first in Europe to bring out a book with the printer's name and date, the Mainz Psalter of August 1457, and while proudly proclaiming the mechanical process by which it had been produced, it made no mention of Gutenberg.\\n\\n## Later Life\\n\\nIn 1462, during a conflict between two archbishops, Mainz was sacked by archbishop Adolph von Nassau, and Gutenberg was exiled. An old man by now, he moved to Eltville where he may have initiated and supervised a new printing press belonging to the brothers Bechtermünze.\\n\\nIn January 1465, Gutenberg's achievements were recognized and he was given the title Hofmann (gentleman of the court) by von Nassau. This honor included a stipend, an annual court outfit, as well as 2,180 litres of grain and 2,000 litres of wine tax-free. It is believed he may have moved back to Mainz around this time, but this is not certain.\\n\\n***\\n\\nGutenberg died in 1468 and was buried in the Franciscan church at Mainz, his contributions largely unknown. This church and the cemetery were later destroyed, and Gutenberg's grave is now lost.\\n\\nIn 1504, he was mentioned as the inventor of typography in a book by Professor Ivo Wittig. It was not until 1567 that the first portrait of Gutenberg, almost certainly an imaginary reconstruction, appeared in Heinrich Pantaleon's biography of famous Germans.\\n\\n## Printing Method With Movable Type\\n\\nGutenberg's early printing process, and what tests he may have made with movable type, are not known in great detail. His later Bibles were printed in such a way as to have required large quantities of type, some estimates suggesting as many as 100,000 individual sorts. Setting each page would take, perhaps, half a day, and considering all the work in loading the press, inking the type, pulling the impressions, hanging up the sheets, distributing the type, etc., it is thought that the Gutenberg–Fust shop might have employed as many as 25 craftsmen.\\n\\n![Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5](/media/movable-type.jpg)\\n\\n*Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5*\\n\\nGutenberg's technique of making movable type remains unclear. In the following decades, punches and copper matrices became standardized in the rapidly disseminating printing presses across Europe. Whether Gutenberg used this sophisticated technique or a somewhat primitive version has been the subject of considerable debate.\\n\\nIn the standard process of making type, a hard metal punch (made by punchcutting, with the letter carved back to front) is hammered into a softer copper bar, creating a matrix. This is then placed into a hand-held mould and a piece of type, or \\\"sort\\\", is cast by filling the mould with molten type-metal; this cools almost at once, and the resulting piece of type can be removed from the mould. The matrix can be reused to create hundreds, or thousands, of identical sorts so that the same character appearing anywhere within the book will appear very uniform, giving rise, over time, to the development of distinct styles of typefaces or fonts. After casting, the sorts are arranged into type-cases, and used to make up pages which are inked and printed, a procedure which can be repeated hundreds, or thousands, of times. The sorts can be reused in any combination, earning the process the name of “movable type”.\\n\\nThe invention of the making of types with punch, matrix and mold has been widely attributed to Gutenberg. However, recent evidence suggests that Gutenberg's process was somewhat different. If he used the punch and matrix approach, all his letters should have been nearly identical, with some variations due to miscasting and inking. However, the type used in Gutenberg's earliest work shows other variations.\\n\\n
\\n\\t
\\n\\t\\t

It is a press, certainly, but a press from which shall flow in inexhaustible streams… Through it, god will spread his word.

\\n\\t\\t
\\n\\t\\t\\t—Johannes Gutenberg\\n\\t\\t
\\n\\t
\\n
\\n\\nIn 2001, the physicist Blaise Agüera y Arcas and Princeton librarian Paul Needham, used digital scans of a Papal bull in the Scheide Library, Princeton, to carefully compare the same letters (types) appearing in different parts of the printed text. The irregularities in Gutenberg's type, particularly in simple characters such as the hyphen, suggested that the variations could not have come from either ink smear or from wear and damage on the pieces of metal on the types themselves. While some identical types are clearly used on other pages, other variations, subjected to detailed image analysis, suggested that they could not have been produced from the same matrix. Transmitted light pictures of the page also appeared to reveal substructures in the type that could not arise from traditional punchcutting techniques. They hypothesized that the method may have involved impressing simple shapes to create alphabets in “cuneiform” style in a matrix made of some soft material, perhaps sand. Casting the type would destroy the mould, and the matrix would need to be recreated to make each additional sort. This could explain the variations in the type, as well as the substructures observed in the printed images.\\n\\nThus, they feel that “the decisive factor for the birth of typography”, the use of reusable moulds for casting type, might have been a more progressive process than was previously thought. They suggest that the additional step of using the punch to create a mould that could be reused many times was not taken until twenty years later, in the 1470s. Others have not accepted some or all of their suggestions, and have interpreted the evidence in other ways, and the truth of the matter remains very uncertain.\\n\\nA 1568 history by Hadrianus Junius of Holland claims that the basic idea of the movable type came to Gutenberg from Laurens Janszoon Coster via Fust, who was apprenticed to Coster in the 1430s and may have brought some of his equipment from Haarlem to Mainz. While Coster appears to have experimented with moulds and castable metal type, there is no evidence that he had actually printed anything with this technology. He was an inventor and a goldsmith. However, there is one indirect supporter of the claim that Coster might be the inventor. The author of the Cologne Chronicle of 1499 quotes Ulrich Zell, the first printer of Cologne, that printing was performed in Mainz in 1450, but that some type of printing of lower quality had previously occurred in the Netherlands. However, the chronicle does not mention the name of Coster, while it actually credits Gutenberg as the \\\"first inventor of printing\\\" in the very same passage (fol. 312). The first securely dated book by Dutch printers is from 1471, and the Coster connection is today regarded as a mere legend.\\n\\nThe 19th century printer and typefounder Fournier Le Jeune suggested that Gutenberg might not have been using type cast with a reusable matrix, but possibly wooden types that were carved individually. A similar suggestion was made by Nash in 2004. This remains possible, albeit entirely unproven.\\n\\nIt has also been questioned whether Gutenberg used movable types at all. In 2004, Italian professor Bruno Fabbiani claimed that examination of the 42-line Bible revealed an overlapping of letters, suggesting that Gutenberg did not in fact use movable type (individual cast characters) but rather used whole plates made from a system somewhat like a modern typewriter, whereby the letters were stamped successively into the plate and then printed. However, most specialists regard the occasional overlapping of type as caused by paper movement over pieces of type of slightly unequal height.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"a532f0a9445cdf90a19c6812cff89d1674991774\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:29:03 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4982", + "X-RateLimit-Reset": "1568125723", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7BB4:B4DC:A6D9D7:CAE469:5D77A51F", + "content-length": "7803", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzU2NzAxMTphNTMyZjBhOTQ0NWNkZjkwYTE5YzY4MTJjZmY4OWQxNjc0OTkxNzc0\",\"text\":\"---\\ntitle: Humane Typography in the Digital Age\\ndate: \\\"2017-08-19T22:40:32.169Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Typography\\\"\\ntags:\\n - \\\"Design\\\"\\n - \\\"Typography\\\"\\n - \\\"Web Development\\\"\\ndescription: \\\"An Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\\\"\\ncanonical: ''\\n---\\n\\n- [The first transition](#the-first-transition)\\n- [The digital age](#the-digital-age)\\n- [Loss of humanity through transitions](#loss-of-humanity-through-transitions)\\n- [Chasing perfection](#chasing-perfection)\\n\\nAn Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\\n\\nThe typography of this industrial age was no longer handcrafted. Mass production and profit became more important. Quantity mattered more than the quality. The books and printed works in general lost a part of its humanity. The typefaces were not produced by craftsmen anymore. It was the machines printing and tying the books together now. The craftsmen had to let go of their craft and became a cog in the process. An extension of the industrial machine.\\n\\nBut the victory of the industrialism didn’t mean that the craftsmen were completely extinct. The two worlds continued to coexist independently. Each recognising the good in the other — the power of industrialism and the humanity of craftsmanship. This was the second transition that would strip typography of a part of its humanity. We have to go 500 years back in time to meet the first one.\\n\\n## The first transition\\n\\nA similar conflict emerged after the invention of the first printing press in Europe. Johannes Gutenberg invented movable type and used it to produce different compositions. His workshop could print up to 240 impressions per hour. Until then, the books were being copied by hand. All the books were handwritten and decorated with hand drawn ornaments and figures. A process of copying a book was long but each book, even a copy, was a work of art.\\n\\nThe first printed books were, at first, perceived as inferior to the handwritten ones. They were smaller and cheaper to produce. Movable type provided the printers with flexibility that allowed them to print books in languages other than Latin. Gill describes the transition to industrialism as something that people needed and wanted. Something similar happened after the first printed books emerged. People wanted books in a language they understood and they wanted books they could take with them. They were hungry for knowledge and printed books satisfied this hunger.\\n\\n![42-line-bible.jpg](/media/42-line-bible.jpg)\\n\\n*The 42–Line Bible, printed by Gutenberg.*\\n\\nBut, through this transition, the book lost a large part of its humanity. The machine took over most of the process but craftsmanship was still a part of it. The typefaces were cut manually by the first punch cutters. The paper was made by hand. The illustrations and ornaments were still being hand drawn. These were the remains of the craftsmanship that went almost extinct in the times of Eric Gill.\\n\\n## The digital age\\n\\nThe first transition took away a large part of humanity from written communication. Industrialisation, the second transition described by Eric Gill, took away most of what was left. But it’s the third transition that stripped it naked. Typefaces are faceless these days. They’re just fonts on our computers. Hardly anyone knows their stories. Hardly anyone cares. Flicking through thousands of typefaces and finding the “right one” is a matter of minutes.\\n\\n> In the new computer age the proliferation of typefaces and type manipulations represents a new level of visual pollution threatening our culture. Out of thousands of typefaces, all we need are a few basic ones, and trash the rest.\\n>\\n— Massimo Vignelli\\n\\nTypography is not about typefaces. It’s not about what looks best, it’s about what feels right. What communicates the message best. Typography, in its essence, is about the message. “Typographical design should perform optically what the speaker creates through voice and gesture of his thoughts.”, as El Lissitzky, a famous Russian typographer, put it.\\n\\n## Loss of humanity through transitions\\n\\nEach transition took away a part of humanity from written language. Handwritten books being the most humane form and the digital typefaces being the least. Overuse of Helvetica is a good example. Messages are being told in a typeface just because it’s a safe option. It’s always there. Everyone knows it but yet, nobody knows it. Stop someone on the street and ask him what Helvetica is? Ask a designer the same question. Ask him where it came from, when, why and who designed it. Most of them will fail to answer these questions. Most of them used it in their precious projects but they still don’t spot it in the street.\\n\\n
\\n\\t
\\n\\t\\t

Knowledge of the quality of a typeface is of the greatest importance for the functional, aesthetic and psychological effect.

\\n\\t\\t
\\n\\t\\t\\t— Josef Mueller-Brockmann\\n\\t\\t
\\n\\t
\\n
\\n\\nTypefaces don’t look handmade these days. And that’s all right. They don’t have to. Industrialism took that away from them and we’re fine with it. We’ve traded that part of humanity for a process that produces more books that are easier to read. That can’t be bad. And it isn’t.\\n\\n> Humane typography will often be comparatively rough and even uncouth; but while a certain uncouthness does not seriously matter in humane works, uncouthness has no excuse whatever in the productions of the machine.\\n>\\n> — Eric Gill\\n\\nWe’ve come close to “perfection” in the last five centuries. The letters are crisp and without rough edges. We print our compositions with high–precision printers on a high quality, machine made paper.\\n\\n![type-through-time.jpg](/media/type-through-time.jpg)\\n\\n*Type through 5 centuries.*\\n\\nWe lost a part of ourselves because of this chase after perfection. We forgot about the craftsmanship along the way. And the worst part is that we don’t care. The transition to the digital age made that clear. We choose typefaces like clueless zombies. There’s no meaning in our work. Type sizes, leading, margins… It’s all just a few clicks or lines of code. The message isn’t important anymore. There’s no more “why” behind the “what”.\\n\\n## Chasing perfection\\n\\nHuman beings aren’t perfect. Perfection is something that will always elude us. There will always be a small part of humanity in everything we do. No matter how small that part, we should make sure that it transcends the limits of the medium. We have to think about the message first. What typeface should we use and why? Does the typeface match the message and what we want to communicate with it? What will be the leading and why? Will there be more typefaces in our design? On what ground will they be combined? What makes our design unique and why? This is the part of humanity that is left in typography. It might be the last part. Are we really going to give it up?\\n\\n*Originally published by [Matej Latin](http://matejlatin.co.uk/) on [Medium](https://medium.com/design-notes/humane-typography-in-the-digital-age-9bd5c16199bd?ref=webdesignernews.com#.lygo82z0x).*\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/1970-01-01-first-title.json?ts=300&ref=refs/meta/_netlify_cms", + "headers": { + "Date": "Tue, 10 Sep 2019 13:29:06 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "404 Not Found", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4987", + "X-RateLimit-Reset": "1568125713", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BB6:244E4:AA182A:CE055F:5D77A521", + "content-length": "144", + "connection": "keep-alive" + }, + "response": "{\n \"message\": \"No commit found for the ref refs/meta/_netlify_cms\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/\"\n}\n", + "status": 404 + }, + { + "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"master:content/posts/1970-01-01-first-title.md\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:29:06 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4981", + "X-RateLimit-Reset": "1568125723", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7BB8:244E7:1131D06:14F955E:5D77A522", + "content-length": "106", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"object\":null}}}\n", + "status": 200 + }, + { + "body": "{\"content\":\"LS0tCnRlbXBsYXRlOiBwb3N0CnRpdGxlOiBmaXJzdCB0aXRsZQpkcmFmdDogdHJ1ZQpkYXRlOiAxOTcwLTAxLTAxVDAwOjAwOjAwLjAwMFoKZGVzY3JpcHRpb246IGZpcnN0IGRlc2NyaXB0aW9uCmNhdGVnb3J5OiBmaXJzdCBjYXRlZ29yeQp0YWdzOgogIC0gdGFnMQotLS0KZmlyc3QgYm9keQo=\",\"encoding\":\"base64\"}", + "method": "POST", + "url": "/repos/owner/repo/git/blobs?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:29:07 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "207", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4986", + "X-RateLimit-Reset": "1568125713", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"83b3e749712791d5ee508f9924334557\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BBA:B4DA:4F8E39:610C4F:5D77A523", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"a041245814892e3f73f63ca54333fda649b7fc0b\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b\"\n}\n", + "status": 201 + }, + { + "body": "{\"operationName\":\"branch\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"qualifiedName\":\"refs/heads/master\"},\"query\":\"query branch($owner: String!, $name: String!, $qualifiedName: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n branch: ref(qualifiedName: $qualifiedName) {\\n ...BranchParts\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BranchParts on Ref {\\n commit: target {\\n ...ObjectParts\\n __typename\\n }\\n id\\n name\\n repository {\\n ...RepositoryParts\\n __typename\\n }\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:29:08 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4980", + "X-RateLimit-Reset": "1568125723", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7BBC:2B19:A48F05:C831E9:5D77A524", + "content-length": "429", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"branch\":{\"commit\":{\"id\":\"MDY6Q29tbWl0MjA3NTY3MDExOjcyNjE3MmRlYWU5OWM4YTJjZWE0YzcxZTczNGEwMmE3OTNkNGQ5ZTU=\",\"sha\":\"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\"__typename\":\"Commit\"},\"id\":\"MDM6UmVmMjA3NTY3MDExOm1hc3Rlcg==\",\"name\":\"master\",\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\"},\"__typename\":\"Ref\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"tree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"726172deae99c8a2cea4c71e734a02a793d4d9e5\"},\"query\":\"query tree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n tree: object(oid: $sha) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:29:09 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4979", + "X-RateLimit-Reset": "1568125723", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7BC0:1510C:170EA9:1C32D4:5D77A524", + "content-length": "260", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"tree\":{\"id\":\"MDY6Q29tbWl0MjA3NTY3MDExOjcyNjE3MmRlYWU5OWM4YTJjZWE0YzcxZTczNGEwMmE3OTNkNGQ5ZTU=\",\"sha\":\"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\"__typename\":\"Commit\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"commitTree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"726172deae99c8a2cea4c71e734a02a793d4d9e5\"},\"query\":\"query commitTree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n commit: object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n tree {\\n ...ObjectParts\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:29:09 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4978", + "X-RateLimit-Reset": "1568125723", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7BBE:1510F:11BCE5F:158458B:5D77A524", + "content-length": "5040", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"commit\":{\"id\":\"MDY6Q29tbWl0MjA3NTY3MDExOjcyNjE3MmRlYWU5OWM4YTJjZWE0YzcxZTczNGEwMmE3OTNkNGQ5ZTU=\",\"sha\":\"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\"__typename\":\"Commit\",\"tree\":{\"id\":\"MDQ6VHJlZTIwNzU2NzAxMTpjNWI3ZjZkNjc0YmExOTNiYjdiNGE1ZmNmNDkzMzAzNGUxYjdmMmI3\",\"sha\":\"c5b7f6d674ba193bb7b4a5fcf4933034e1b7f2b7\",\"__typename\":\"Tree\",\"entries\":[{\"path\":\".circleci\",\"sha\":\"e5e9af3301cac61f120b8e4d40b1733c7a45685a\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\".eslintignore\",\"sha\":\"80b4531b026d19f8fa589efd122e76199d23f967\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".eslintrc.js\",\"sha\":\"370684994aaed5b858da3a006f48cfa57e88fd27\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".flowconfig\",\"sha\":\"14aa2ac4cc0e15223ad98630a6f1325fc81f8043\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".gitattributes\",\"sha\":\"10a369ddf4f603337cabc6f21646508323941ce1\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".github\",\"sha\":\"4ebeece548b52b20af59622354530a6d33b50b43\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\".gitignore\",\"sha\":\"c071ba35b0e49899bab6d610a68eef667dbbf157\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".prettierignore\",\"sha\":\"393f050e123d998cf8c8b362ff95cc8ac4d250e5\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".prettierrc\",\"sha\":\"e52ad05bb13b084d7949dd76e1b2517455162150\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".stylelintrc.json\",\"sha\":\"4b4c9698d10d756f5faa025659b86375428ed0a7\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".vscode\",\"sha\":\"286e97ec0113ea8242b41ac222e2c3e8077e6f1e\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"CHANGELOG.md\",\"sha\":\"070a5d4f0eacd2dc0be81ae8996f8982de43046e\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"CODE_OF_CONDUCT.md\",\"sha\":\"92bc7565ff0ee145a0041b5179a820f14f39ab22\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"CONTRIBUTING.md\",\"sha\":\"8552aa241254a61258e1ff9666ab36f32fb1e3b9\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"LICENSE\",\"sha\":\"42d85938357b49977c126ca03b199129082d4fb8\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"README.md\",\"sha\":\"19df50a78654c8d757ca7f38447aa3d09c7abcce\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"backend\",\"sha\":\"b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"config.js\",\"sha\":\"58afd573bbb69fcca000efd0f5d90b93c93a98dd\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"content\",\"sha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"flow-typed\",\"sha\":\"86c32fd6c3118be5e0dbbb231a834447357236c6\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"flow\",\"sha\":\"0af45ad00d155c8d8c7407d913ff85278244c9ce\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"gatsby-browser.js\",\"sha\":\"9bd2c9dce175f04980e91cd9dc295a299e3cdb80\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"gatsby-config.js\",\"sha\":\"353a109dad62e3f25bf9f5e6a2167f21a6c8b459\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"gatsby-node.js\",\"sha\":\"14a207883c2093d2cc071bc5a464e165bcc1fead\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"gatsby\",\"sha\":\"4f23c06cd1740bf78304d2c0b29bf6bfdf427981\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"jest\",\"sha\":\"5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"netlify.toml\",\"sha\":\"599b99cc5700404fde316a7ede829776f23e7d45\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"package.json\",\"sha\":\"9d777616438b90a18f1a4ebfd5f114b4c06c6f17\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"postcss-config.js\",\"sha\":\"d216501e9b351a72e00ba0b7459a6500e27e7da2\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"renovate.json\",\"sha\":\"dcc309398785698b8870545c32051a3d72dd8271\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"serverless-scripts\",\"sha\":\"ee3701f2fbfc7196ba340f6481d1387d20527898\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"serverless-single-page-app-plugin\",\"sha\":\"08763fcfba643a06a452398517019bea4a5850ba\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"serverless.yml\",\"sha\":\"20b22c5fad229f35d029bf6614d333d82fe8a987\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"src\",\"sha\":\"8cdb35a88232c0f32f12f130c92c7cc55f97f471\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"static\",\"sha\":\"53c6380a600a030d3722bff7ecde36f749fb6964\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"utils\",\"sha\":\"a592549c9f74db40b51efefcda2fd76810405f27\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"yarn.lock\",\"sha\":\"475c9c1924ca752a0686303e2fdeb7b13ad75f57\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"}]}}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"commitTree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\"},\"query\":\"query commitTree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n commit: object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n tree {\\n ...ObjectParts\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:29:10 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4976", + "X-RateLimit-Reset": "1568125723", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7BC3:B4DE:117F3AB:154A789:5D77A525", + "content-length": "256", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"commit\":{\"id\":\"MDQ6VHJlZTIwNzU2NzAxMTowMjk0ZWYxMDZjNTg3NDM5MDdhNWM4NTVkYTFlYjBmODdiMGI2ZGZj\",\"sha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\"__typename\":\"Tree\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"tree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\"},\"query\":\"query tree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n tree: object(oid: $sha) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:29:10 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4977", + "X-RateLimit-Reset": "1568125723", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7BC4:9D20:10DEBEF:149F893:5D77A525", + "content-length": "502", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"tree\":{\"id\":\"MDQ6VHJlZTIwNzU2NzAxMTowMjk0ZWYxMDZjNTg3NDM5MDdhNWM4NTVkYTFlYjBmODdiMGI2ZGZj\",\"sha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\"__typename\":\"Tree\",\"entries\":[{\"path\":\"pages\",\"sha\":\"1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"posts\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"}]}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"commitTree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\"},\"query\":\"query commitTree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n commit: object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n tree {\\n ...ObjectParts\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:29:11 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4975", + "X-RateLimit-Reset": "1568125723", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7BC6:3ED77:A6C000:CA0349:5D77A526", + "content-length": "256", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"commit\":{\"id\":\"MDQ6VHJlZTIwNzU2NzAxMTozNDg5MjU3NWUyMTZjMDZlNzU3MDkzZjAzNmJkOGUwNTdjNzhhNTJm\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"__typename\":\"Tree\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"tree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\"},\"query\":\"query tree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n tree: object(oid: $sha) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:29:12 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4974", + "X-RateLimit-Reset": "1568125723", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7BC8:2B24:172C7DC:1C2A129:5D77A526", + "content-length": "1075", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"tree\":{\"id\":\"MDQ6VHJlZTIwNzU2NzAxMTozNDg5MjU3NWUyMTZjMDZlNzU3MDkzZjAzNmJkOGUwNTdjNzhhNTJm\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"__typename\":\"Tree\",\"entries\":[{\"path\":\"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\"sha\":\"6d51a38aed7139d2117724b1e307657b6ff2d043\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\"sha\":\"d0582dd245a3f408fb3fe2333bf01400007476e9\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"2016-02-02---A-Brief-History-of-Typography.md\",\"sha\":\"0eea554365f002d0f1572af9a58522d335a794d5\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"2017-18-08---The-Birth-of-Movable-Type.md\",\"sha\":\"44f78c474d04273185a95821426f75affc9b0044\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\"sha\":\"a532f0a9445cdf90a19c6812cff89d1674991774\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"}]}}}}\n", + "status": 200 + }, + { + "body": "{\"base_tree\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"tree\":[{\"path\":\"1970-01-01-first-title.md\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"a041245814892e3f73f63ca54333fda649b7fc0b\"}]}", + "method": "POST", + "url": "/repos/owner/repo/git/trees?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:29:13 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "2362", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4985", + "X-RateLimit-Reset": "1568125713", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"6d65750d5f558dadf97dc866bf8b2047\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BCC:9D21:16AB38C:1B9ACAA:5D77A528", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a041245814892e3f73f63ca54333fda649b7fc0b\",\n \"size\": 167,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b\"\n },\n {\n \"path\": \"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"size\": 1707,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\"\n },\n {\n \"path\": \"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"size\": 2565,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\"\n },\n {\n \"path\": \"2016-02-02---A-Brief-History-of-Typography.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"0eea554365f002d0f1572af9a58522d335a794d5\",\n \"size\": 2786,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\"\n },\n {\n \"path\": \"2017-18-08---The-Birth-of-Movable-Type.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"44f78c474d04273185a95821426f75affc9b0044\",\n \"size\": 16071,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\"\n },\n {\n \"path\": \"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"size\": 7465,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"base_tree\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\"tree\":[{\"path\":\"posts\",\"mode\":\"040000\",\"type\":\"tree\",\"sha\":\"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\"parentSha\":\"34892575e216c06e757093f036bd8e057c78a52f\"}]}", + "method": "POST", + "url": "/repos/owner/repo/git/trees?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:29:14 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "831", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4984", + "X-RateLimit-Reset": "1568125713", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"941458d17a55aece507a4092046edf20\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BCE:1510F:11BD48E:1584D15:5D77A529", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"tree\": [\n {\n \"path\": \"pages\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\"\n },\n {\n \"path\": \"posts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"base_tree\":\"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\"tree\":[{\"path\":\"content\",\"mode\":\"040000\",\"type\":\"tree\",\"sha\":\"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\"parentSha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\"}]}", + "method": "POST", + "url": "/repos/owner/repo/git/trees?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:29:15 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "11769", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4983", + "X-RateLimit-Reset": "1568125713", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"5b931daea9222fce9b5272abe62d9270\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/trees/daee8d5d15d144e8779955166a2afeccde2770e1", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BD0:2B19:A49455:C83856:5D77A52A", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"daee8d5d15d144e8779955166a2afeccde2770e1\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/daee8d5d15d144e8779955166a2afeccde2770e1\",\n \"tree\": [\n {\n \"path\": \".circleci\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"e5e9af3301cac61f120b8e4d40b1733c7a45685a\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/e5e9af3301cac61f120b8e4d40b1733c7a45685a\"\n },\n {\n \"path\": \".eslintignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"80b4531b026d19f8fa589efd122e76199d23f967\",\n \"size\": 39,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/80b4531b026d19f8fa589efd122e76199d23f967\"\n },\n {\n \"path\": \".eslintrc.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"370684994aaed5b858da3a006f48cfa57e88fd27\",\n \"size\": 414,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/370684994aaed5b858da3a006f48cfa57e88fd27\"\n },\n {\n \"path\": \".flowconfig\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14aa2ac4cc0e15223ad98630a6f1325fc81f8043\",\n \"size\": 283,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14aa2ac4cc0e15223ad98630a6f1325fc81f8043\"\n },\n {\n \"path\": \".gitattributes\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"10a369ddf4f603337cabc6f21646508323941ce1\",\n \"size\": 135,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/10a369ddf4f603337cabc6f21646508323941ce1\"\n },\n {\n \"path\": \".github\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4ebeece548b52b20af59622354530a6d33b50b43\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4ebeece548b52b20af59622354530a6d33b50b43\"\n },\n {\n \"path\": \".gitignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"c071ba35b0e49899bab6d610a68eef667dbbf157\",\n \"size\": 169,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/c071ba35b0e49899bab6d610a68eef667dbbf157\"\n },\n {\n \"path\": \".prettierignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"393f050e123d998cf8c8b362ff95cc8ac4d250e5\",\n \"size\": 45,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/393f050e123d998cf8c8b362ff95cc8ac4d250e5\"\n },\n {\n \"path\": \".prettierrc\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e52ad05bb13b084d7949dd76e1b2517455162150\",\n \"size\": 223,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/e52ad05bb13b084d7949dd76e1b2517455162150\"\n },\n {\n \"path\": \".stylelintrc.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"4b4c9698d10d756f5faa025659b86375428ed0a7\",\n \"size\": 718,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/4b4c9698d10d756f5faa025659b86375428ed0a7\"\n },\n {\n \"path\": \".vscode\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"286e97ec0113ea8242b41ac222e2c3e8077e6f1e\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/286e97ec0113ea8242b41ac222e2c3e8077e6f1e\"\n },\n {\n \"path\": \"CHANGELOG.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"070a5d4f0eacd2dc0be81ae8996f8982de43046e\",\n \"size\": 2113,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/070a5d4f0eacd2dc0be81ae8996f8982de43046e\"\n },\n {\n \"path\": \"CODE_OF_CONDUCT.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"92bc7565ff0ee145a0041b5179a820f14f39ab22\",\n \"size\": 3355,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/92bc7565ff0ee145a0041b5179a820f14f39ab22\"\n },\n {\n \"path\": \"CONTRIBUTING.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"8552aa241254a61258e1ff9666ab36f32fb1e3b9\",\n \"size\": 3548,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/8552aa241254a61258e1ff9666ab36f32fb1e3b9\"\n },\n {\n \"path\": \"LICENSE\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"42d85938357b49977c126ca03b199129082d4fb8\",\n \"size\": 1091,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/42d85938357b49977c126ca03b199129082d4fb8\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"19df50a78654c8d757ca7f38447aa3d09c7abcce\",\n \"size\": 3698,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/19df50a78654c8d757ca7f38447aa3d09c7abcce\"\n },\n {\n \"path\": \"backend\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\"\n },\n {\n \"path\": \"config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"58afd573bbb69fcca000efd0f5d90b93c93a98dd\",\n \"size\": 853,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/58afd573bbb69fcca000efd0f5d90b93c93a98dd\"\n },\n {\n \"path\": \"content\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639\"\n },\n {\n \"path\": \"flow-typed\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"86c32fd6c3118be5e0dbbb231a834447357236c6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/86c32fd6c3118be5e0dbbb231a834447357236c6\"\n },\n {\n \"path\": \"flow\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"0af45ad00d155c8d8c7407d913ff85278244c9ce\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/0af45ad00d155c8d8c7407d913ff85278244c9ce\"\n },\n {\n \"path\": \"gatsby-browser.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9bd2c9dce175f04980e91cd9dc295a299e3cdb80\",\n \"size\": 90,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9bd2c9dce175f04980e91cd9dc295a299e3cdb80\"\n },\n {\n \"path\": \"gatsby-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"353a109dad62e3f25bf9f5e6a2167f21a6c8b459\",\n \"size\": 7228,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/353a109dad62e3f25bf9f5e6a2167f21a6c8b459\"\n },\n {\n \"path\": \"gatsby-node.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14a207883c2093d2cc071bc5a464e165bcc1fead\",\n \"size\": 409,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14a207883c2093d2cc071bc5a464e165bcc1fead\"\n },\n {\n \"path\": \"gatsby\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4f23c06cd1740bf78304d2c0b29bf6bfdf427981\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4f23c06cd1740bf78304d2c0b29bf6bfdf427981\"\n },\n {\n \"path\": \"jest\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\"\n },\n {\n \"path\": \"netlify.toml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"599b99cc5700404fde316a7ede829776f23e7d45\",\n \"size\": 137,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/599b99cc5700404fde316a7ede829776f23e7d45\"\n },\n {\n \"path\": \"package.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9d777616438b90a18f1a4ebfd5f114b4c06c6f17\",\n \"size\": 6855,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9d777616438b90a18f1a4ebfd5f114b4c06c6f17\"\n },\n {\n \"path\": \"postcss-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d216501e9b351a72e00ba0b7459a6500e27e7da2\",\n \"size\": 703,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d216501e9b351a72e00ba0b7459a6500e27e7da2\"\n },\n {\n \"path\": \"renovate.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"dcc309398785698b8870545c32051a3d72dd8271\",\n \"size\": 460,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/dcc309398785698b8870545c32051a3d72dd8271\"\n },\n {\n \"path\": \"serverless-scripts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ee3701f2fbfc7196ba340f6481d1387d20527898\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ee3701f2fbfc7196ba340f6481d1387d20527898\"\n },\n {\n \"path\": \"serverless-single-page-app-plugin\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"08763fcfba643a06a452398517019bea4a5850ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/08763fcfba643a06a452398517019bea4a5850ba\"\n },\n {\n \"path\": \"serverless.yml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"20b22c5fad229f35d029bf6614d333d82fe8a987\",\n \"size\": 7803,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/20b22c5fad229f35d029bf6614d333d82fe8a987\"\n },\n {\n \"path\": \"src\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"8cdb35a88232c0f32f12f130c92c7cc55f97f471\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/8cdb35a88232c0f32f12f130c92c7cc55f97f471\"\n },\n {\n \"path\": \"static\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"53c6380a600a030d3722bff7ecde36f749fb6964\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/53c6380a600a030d3722bff7ecde36f749fb6964\"\n },\n {\n \"path\": \"utils\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"a592549c9f74db40b51efefcda2fd76810405f27\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/a592549c9f74db40b51efefcda2fd76810405f27\"\n },\n {\n \"path\": \"yarn.lock\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"475c9c1924ca752a0686303e2fdeb7b13ad75f57\",\n \"size\": 793903,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/475c9c1924ca752a0686303e2fdeb7b13ad75f57\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"message\":\"Create Post “1970-01-01-first-title”\",\"tree\":\"daee8d5d15d144e8779955166a2afeccde2770e1\",\"parents\":[\"726172deae99c8a2cea4c71e734a02a793d4d9e5\"]}", + "method": "POST", + "url": "/repos/owner/repo/git/commits?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:29:15 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "1504", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4982", + "X-RateLimit-Reset": "1568125713", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"a3cb42eec0d01b54ab184b9b47038bd6\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/commits/b54314c27f6635ba6597a4e5970afbdd0fa99cec", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BD2:244E4:AA208D:CE0F89:5D77A52B", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"b54314c27f6635ba6597a4e5970afbdd0fa99cec\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NTY3MDExOmI1NDMxNGMyN2Y2NjM1YmE2NTk3YTRlNTk3MGFmYmRkMGZhOTljZWM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/b54314c27f6635ba6597a4e5970afbdd0fa99cec\",\n \"html_url\": \"https://github.com/owner/repo/commit/b54314c27f6635ba6597a4e5970afbdd0fa99cec\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T13:29:15Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T13:29:15Z\"\n },\n \"tree\": {\n \"sha\": \"daee8d5d15d144e8779955166a2afeccde2770e1\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/daee8d5d15d144e8779955166a2afeccde2770e1\"\n },\n \"message\": \"Create Post “1970-01-01-first-title”\",\n \"parents\": [\n {\n \"sha\": \"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"html_url\": \"https://github.com/owner/repo/commit/726172deae99c8a2cea4c71e734a02a793d4d9e5\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "status": 201 + }, + { + "body": "{\"operationName\":\"createBranchAndPullRequest\",\"variables\":{\"createRefInput\":{\"name\":\"refs/heads/cms/1970-01-01-first-title\",\"oid\":\"b54314c27f6635ba6597a4e5970afbdd0fa99cec\",\"repositoryId\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\"},\"createPullRequestInput\":{\"baseRefName\":\"master\",\"body\":\"Automatically generated by Netlify CMS\",\"title\":\"Create Post “1970-01-01-first-title”\",\"headRefName\":\"cms/1970-01-01-first-title\",\"repositoryId\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\"}},\"query\":\"mutation createBranchAndPullRequest($createRefInput: CreateRefInput!, $createPullRequestInput: CreatePullRequestInput!) {\\n createRef(input: $createRefInput) {\\n branch: ref {\\n ...BranchParts\\n __typename\\n }\\n __typename\\n }\\n createPullRequest(input: $createPullRequestInput) {\\n clientMutationId\\n pullRequest {\\n ...PullRequestParts\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment BranchParts on Ref {\\n commit: target {\\n ...ObjectParts\\n __typename\\n }\\n id\\n name\\n repository {\\n ...RepositoryParts\\n __typename\\n }\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment PullRequestParts on PullRequest {\\n id\\n baseRefName\\n body\\n headRefName\\n headRefOid\\n number\\n state\\n title\\n merged_at: mergedAt\\n repository {\\n ...RepositoryParts\\n __typename\\n }\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:29:18 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4973", + "X-RateLimit-Reset": "1568125723", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7BD4:1510E:A78715:CC0806:5D77A52C", + "content-length": "952", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"createRef\":{\"branch\":{\"commit\":{\"id\":\"MDY6Q29tbWl0MjA3NTY3MDExOmI1NDMxNGMyN2Y2NjM1YmE2NTk3YTRlNTk3MGFmYmRkMGZhOTljZWM=\",\"sha\":\"b54314c27f6635ba6597a4e5970afbdd0fa99cec\",\"__typename\":\"Commit\"},\"id\":\"MDM6UmVmMjA3NTY3MDExOmNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxl\",\"name\":\"cms/1970-01-01-first-title\",\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\"},\"__typename\":\"Ref\"},\"__typename\":\"CreateRefPayload\"},\"createPullRequest\":{\"clientMutationId\":null,\"pullRequest\":{\"id\":\"MDExOlB1bGxSZXF1ZXN0MzE1OTk1MTk1\",\"baseRefName\":\"master\",\"body\":\"Automatically generated by Netlify CMS\",\"headRefName\":\"cms/1970-01-01-first-title\",\"headRefOid\":\"b54314c27f6635ba6597a4e5970afbdd0fa99cec\",\"number\":1,\"state\":\"OPEN\",\"title\":\"Create Post “1970-01-01-first-title”\",\"merged_at\":null,\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\"},\"__typename\":\"PullRequest\"},\"__typename\":\"CreatePullRequestPayload\"}}}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:29:18 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "404 Not Found", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4981", + "X-RateLimit-Reset": "1568125713", + "X-Poll-Interval": "300", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BD6:1510E:A788DA:CC0A43:5D77A52E", + "content-length": "113", + "connection": "keep-alive" + }, + "response": "{\n \"message\": \"Not Found\",\n \"documentation_url\": \"https://developer.github.com/v3/git/refs/#get-a-reference\"\n}\n", + "status": 404 + }, + { + "body": "{\"content\":\"IyBOZXRsaWZ5IENNUwoKVGhpcyB0cmVlIGlzIHVzZWQgYnkgdGhlIE5ldGxpZnkgQ01TIHRvIHN0b3JlIG1ldGFkYXRhIGluZm9ybWF0aW9uIGZvciBzcGVjaWZpYyBmaWxlcyBhbmQgYnJhbmNoZXMu\",\"encoding\":\"base64\"}", + "method": "POST", + "url": "/repos/owner/repo/git/blobs?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:29:19 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "207", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4980", + "X-RateLimit-Reset": "1568125713", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"926eb40dfae9f936db8869975472a47b\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BD8:244E7:1132CFC:14FA8DD:5D77A52E", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n}\n", + "status": 201 + }, + { + "body": "{\"tree\":[{\"path\":\"README.md\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"98787d1bd948850444433e91a43091a76c4eb455\"}]}", + "method": "POST", + "url": "/repos/owner/repo/git/trees?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:29:20 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "561", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4979", + "X-RateLimit-Reset": "1568125713", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"81950b02e5f8a0d6d61f17b81303fed3\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/trees/77d01c8bf1e79f9fb17c60fe405ce741bb4eb0a6", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BDB:15110:17EB362:1D0BE20:5D77A52F", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"77d01c8bf1e79f9fb17c60fe405ce741bb4eb0a6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/77d01c8bf1e79f9fb17c60fe405ce741bb4eb0a6\",\n \"tree\": [\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"message\":\"First Commit\",\"tree\":\"77d01c8bf1e79f9fb17c60fe405ce741bb4eb0a6\",\"parents\":[]}", + "method": "POST", + "url": "/repos/owner/repo/git/commits?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:29:21 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "1105", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4978", + "X-RateLimit-Reset": "1568125713", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"89f91bca53e0cf3560115cfc33bf0256\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/commits/7ebc0f89e51322b3040851b2f4951ae1d4a2451a", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BDC:1510F:11BDD44:15857DD:5D77A530", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"7ebc0f89e51322b3040851b2f4951ae1d4a2451a\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NTY3MDExOjdlYmMwZjg5ZTUxMzIyYjMwNDA4NTFiMmY0OTUxYWUxZDRhMjQ1MWE=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/7ebc0f89e51322b3040851b2f4951ae1d4a2451a\",\n \"html_url\": \"https://github.com/owner/repo/commit/7ebc0f89e51322b3040851b2f4951ae1d4a2451a\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T13:29:21Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T13:29:21Z\"\n },\n \"tree\": {\n \"sha\": \"77d01c8bf1e79f9fb17c60fe405ce741bb4eb0a6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/77d01c8bf1e79f9fb17c60fe405ce741bb4eb0a6\"\n },\n \"message\": \"First Commit\",\n \"parents\": [\n\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "status": 201 + }, + { + "body": "{\"ref\":\"refs/meta/_netlify_cms\",\"sha\":\"7ebc0f89e51322b3040851b2f4951ae1d4a2451a\"}", + "method": "POST", + "url": "/repos/owner/repo/git/refs?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:29:23 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "484", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4977", + "X-RateLimit-Reset": "1568125713", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"2dbdde126b34415fa6bfe7e38f5a5ddf\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "Location": "https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BDF:3ED7B:11ECDB0:15C3C4F:5D77A531", + "connection": "keep-alive" + }, + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NTY3MDExOnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"7ebc0f89e51322b3040851b2f4951ae1d4a2451a\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/7ebc0f89e51322b3040851b2f4951ae1d4a2451a\"\n }\n}\n", + "status": 201 + }, + { + "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjEsImhlYWQiOiJiNTQzMTRjMjdmNjYzNWJhNjU5N2E0ZTU5NzBhZmJkZDBmYTk5Y2VjIn0sInVzZXIiOiJvd25lciIsInN0YXR1cyI6ImRyYWZ0IiwiYnJhbmNoIjoiY21zLzE5NzAtMDEtMDEtZmlyc3QtdGl0bGUiLCJjb2xsZWN0aW9uIjoicG9zdHMiLCJjb21taXRNZXNzYWdlIjoiQ3JlYXRlIFBvc3Qg4oCcMTk3MC0wMS0wMS1maXJzdC10aXRsZeKAnSIsInRpdGxlIjoiZmlyc3QgdGl0bGUiLCJkZXNjcmlwdGlvbiI6ImZpcnN0IGRlc2NyaXB0aW9uIiwib2JqZWN0cyI6eyJlbnRyeSI6eyJwYXRoIjoiY29udGVudC9wb3N0cy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxlLm1kIiwic2hhIjoiYTA0MTI0NTgxNDg5MmUzZjczZjYzY2E1NDMzM2ZkYTY0OWI3ZmMwYiJ9LCJmaWxlcyI6W119LCJ0aW1lU3RhbXAiOiIxOTcwLTAxLTAxVDAwOjAwOjAwLjMwMFoifQ==\",\"encoding\":\"base64\"}", + "method": "POST", + "url": "/repos/owner/repo/git/blobs?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:29:24 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "207", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4976", + "X-RateLimit-Reset": "1568125713", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"06896efc826477f88e873a92abe9ddd5\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/blobs/5486c6b69c1678c7f19da5bc1617b9a663ff561d", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BE0:B4E0:1623321:1AF0038:5D77A533", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"5486c6b69c1678c7f19da5bc1617b9a663ff561d\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/5486c6b69c1678c7f19da5bc1617b9a663ff561d\"\n}\n", + "status": 201 + }, + { + "body": "{\"operationName\":\"commitTree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"7ebc0f89e51322b3040851b2f4951ae1d4a2451a\"},\"query\":\"query commitTree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n commit: object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n tree {\\n ...ObjectParts\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:29:24 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4972", + "X-RateLimit-Reset": "1568125723", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7BE2:244DF:198489:1F0868:5D77A534", + "content-length": "558", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"commit\":{\"id\":\"MDY6Q29tbWl0MjA3NTY3MDExOjdlYmMwZjg5ZTUxMzIyYjMwNDA4NTFiMmY0OTUxYWUxZDRhMjQ1MWE=\",\"sha\":\"7ebc0f89e51322b3040851b2f4951ae1d4a2451a\",\"__typename\":\"Commit\",\"tree\":{\"id\":\"MDQ6VHJlZTIwNzU2NzAxMTo3N2QwMWM4YmYxZTc5ZjlmYjE3YzYwZmU0MDVjZTc0MWJiNGViMGE2\",\"sha\":\"77d01c8bf1e79f9fb17c60fe405ce741bb4eb0a6\",\"__typename\":\"Tree\",\"entries\":[{\"path\":\"README.md\",\"sha\":\"98787d1bd948850444433e91a43091a76c4eb455\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"}]}}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"tree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"7ebc0f89e51322b3040851b2f4951ae1d4a2451a\"},\"query\":\"query tree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n tree: object(oid: $sha) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:29:25 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4971", + "X-RateLimit-Reset": "1568125723", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7BE5:244EB:1774CAC:1C7AA43:5D77A534", + "content-length": "260", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"tree\":{\"id\":\"MDY6Q29tbWl0MjA3NTY3MDExOjdlYmMwZjg5ZTUxMzIyYjMwNDA4NTFiMmY0OTUxYWUxZDRhMjQ1MWE=\",\"sha\":\"7ebc0f89e51322b3040851b2f4951ae1d4a2451a\",\"__typename\":\"Commit\"}}}}\n", + "status": 200 + }, + { + "body": "{\"base_tree\":\"7ebc0f89e51322b3040851b2f4951ae1d4a2451a\",\"tree\":[{\"path\":\"1970-01-01-first-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"5486c6b69c1678c7f19da5bc1617b9a663ff561d\"}]}", + "method": "POST", + "url": "/repos/owner/repo/git/trees?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:29:25 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "895", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4975", + "X-RateLimit-Reset": "1568125713", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"e91d4703cee8a576f32b9f9fe6bc43fd\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/trees/cceaac963f6cc4f564e1eb881df9cf664c8f3457", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BE6:2B24:172E095:1C2BF0E:5D77A535", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"cceaac963f6cc4f564e1eb881df9cf664c8f3457\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/cceaac963f6cc4f564e1eb881df9cf664c8f3457\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"5486c6b69c1678c7f19da5bc1617b9a663ff561d\",\n \"size\": 462,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/5486c6b69c1678c7f19da5bc1617b9a663ff561d\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"message\":\"Updating “1970-01-01-first-title” metadata\",\"tree\":\"cceaac963f6cc4f564e1eb881df9cf664c8f3457\",\"parents\":[\"7ebc0f89e51322b3040851b2f4951ae1d4a2451a\"]}", + "method": "POST", + "url": "/repos/owner/repo/git/commits?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:29:26 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "1510", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4974", + "X-RateLimit-Reset": "1568125713", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"01ab50f4c3c6f36a7d7395b875223b65\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/commits/36bbc1502db1a806ab75d6308f0862e6d17fe4b7", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BE8:1510F:11BE3D3:158600F:5D77A536", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"36bbc1502db1a806ab75d6308f0862e6d17fe4b7\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NTY3MDExOjM2YmJjMTUwMmRiMWE4MDZhYjc1ZDYzMDhmMDg2MmU2ZDE3ZmU0Yjc=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/36bbc1502db1a806ab75d6308f0862e6d17fe4b7\",\n \"html_url\": \"https://github.com/owner/repo/commit/36bbc1502db1a806ab75d6308f0862e6d17fe4b7\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T13:29:26Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T13:29:26Z\"\n },\n \"tree\": {\n \"sha\": \"cceaac963f6cc4f564e1eb881df9cf664c8f3457\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/cceaac963f6cc4f564e1eb881df9cf664c8f3457\"\n },\n \"message\": \"Updating “1970-01-01-first-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"7ebc0f89e51322b3040851b2f4951ae1d4a2451a\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/7ebc0f89e51322b3040851b2f4951ae1d4a2451a\",\n \"html_url\": \"https://github.com/owner/repo/commit/7ebc0f89e51322b3040851b2f4951ae1d4a2451a\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "status": 201 + }, + { + "body": "{\"sha\":\"36bbc1502db1a806ab75d6308f0862e6d17fe4b7\",\"force\":false}", + "method": "PATCH", + "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:29:28 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4973", + "X-RateLimit-Reset": "1568125713", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"b41753e25d19c7f32e4a74a413cf20d3\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BEB:B4DC:A6EEB7:CAFDC6:5D77A537", + "content-length": "484", + "connection": "keep-alive" + }, + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NTY3MDExOnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"36bbc1502db1a806ab75d6308f0862e6d17fe4b7\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/36bbc1502db1a806ab75d6308f0862e6d17fe4b7\"\n }\n}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"unpublishedBranchFile\",\"variables\":{\"headOwner\":\"owner\",\"headRepoName\":\"repo\",\"headExpression\":\"cms/1970-01-01-first-title:content/posts/1970-01-01-first-title.md\",\"baseOwner\":\"owner\",\"baseRepoName\":\"repo\",\"baseExpression\":\"master:content/posts/1970-01-01-first-title.md\"},\"query\":\"query unpublishedBranchFile($headOwner: String!, $headRepoName: String!, $headExpression: String!, $baseOwner: String!, $baseRepoName: String!, $baseExpression: String!) {\\n head: repository(owner: $headOwner, name: $headRepoName) {\\n ...RepositoryParts\\n object(expression: $headExpression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n base: repository(owner: $baseOwner, name: $baseRepoName) {\\n ...RepositoryParts\\n object(expression: $baseExpression) {\\n ... on Blob {\\n id\\n oid\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:29:28 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4970", + "X-RateLimit-Reset": "1568125723", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7BEC:9D20:10E0134:14A1302:5D77A538", + "content-length": "496", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"head\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzU2NzAxMTphMDQxMjQ1ODE0ODkyZTNmNzNmNjNjYTU0MzMzZmRhNjQ5YjdmYzBi\",\"text\":\"---\\ntemplate: post\\ntitle: first title\\ndraft: true\\ndate: 1970-01-01T00:00:00.000Z\\ndescription: first description\\ncategory: first category\\ntags:\\n - tag1\\n---\\nfirst body\\n\",\"is_binary\":false,\"__typename\":\"Blob\"}},\"base\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"object\":null}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"statues\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"b54314c27f6635ba6597a4e5970afbdd0fa99cec\"},\"query\":\"query statues($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n status {\\n id\\n contexts {\\n id\\n context\\n state\\n target_url: targetUrl\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:29:29 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4969", + "X-RateLimit-Reset": "1568125723", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7BEE:1510F:11BE7BC:15864E3:5D77A539", + "content-length": "276", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDY6Q29tbWl0MjA3NTY3MDExOmI1NDMxNGMyN2Y2NjM1YmE2NTk3YTRlNTk3MGFmYmRkMGZhOTljZWM=\",\"sha\":\"b54314c27f6635ba6597a4e5970afbdd0fa99cec\",\"__typename\":\"Commit\",\"status\":null}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"statues\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"b54314c27f6635ba6597a4e5970afbdd0fa99cec\"},\"query\":\"query statues($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n status {\\n id\\n contexts {\\n id\\n context\\n state\\n target_url: targetUrl\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:29:35 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4968", + "X-RateLimit-Reset": "1568125723", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7A04:3ED82:17E4F2B:1D0F28E:5D77A53F", + "content-length": "276", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDY6Q29tbWl0MjA3NTY3MDExOmI1NDMxNGMyN2Y2NjM1YmE2NTk3YTRlNTk3MGFmYmRkMGZhOTljZWM=\",\"sha\":\"b54314c27f6635ba6597a4e5970afbdd0fa99cec\",\"__typename\":\"Commit\",\"status\":null}}}}\n", + "status": 200 + } +] \ No newline at end of file diff --git a/cypress/fixtures/Github Backend Editorial Workflow - GraphQL API - Open Authoring__can delete review entry from fork.json b/cypress/fixtures/Github Backend Editorial Workflow - GraphQL API - Open Authoring__can delete review entry from fork.json new file mode 100644 index 00000000..5eeff72e --- /dev/null +++ b/cypress/fixtures/Github Backend Editorial Workflow - GraphQL API - Open Authoring__can delete review entry from fork.json @@ -0,0 +1,1597 @@ +[ + { + "method": "GET", + "url": "/user", + "headers": { + "Date": "Tue, 10 Sep 2019 13:34:31 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4926", + "X-RateLimit-Reset": "1568126016", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"306a7697fb3e2ba7e728a792014e91b8\"", + "Last-Modified": "Sun, 01 Sep 2019 18:04:11 GMT", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A90:2B19:A59833:C97AE2:5D77A667", + "content-length": "1333", + "connection": "keep-alive" + }, + "response": "{\"login\":\"forkOwner\",\"id\":2,\"avatar_url\":\"https://avatars1.githubusercontent.com/u/7892489?v=4\",\"name\":\"forkOwner\"}", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/collaborators/forkOwner/permission", + "headers": { + "Date": "Tue, 10 Sep 2019 13:34:32 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "403 Forbidden", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4925", + "X-RateLimit-Reset": "1568126016", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A92:3ED7B:1205850:15E259C:5D77A668", + "content-length": "185", + "connection": "keep-alive" + }, + "response": "{\n \"message\": \"Must have push access to view collaborator permission.\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/collaborators/#review-a-users-permission-level\"\n}\n", + "status": 403 + }, + { + "method": "POST", + "url": "/repos/owner/repo/forks", + "headers": { + "Date": "Tue, 10 Sep 2019 13:34:33 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "22055", + "Server": "GitHub.com", + "Status": "202 Accepted", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4924", + "X-RateLimit-Reset": "1568126016", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A94:2B1F:11CD6EB:15B7994:5D77A668", + "connection": "keep-alive" + }, + "response": "{\n \"id\": 207567867,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1Njc4Njc=\",\n \"name\": \"repo\",\n \"full_name\": \"forkOwner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"forkOwner\",\n \"id\": 53494188,\n \"node_id\": \"MDQ6VXNlcjUzNDk0MTg4\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/forkOwner\",\n \"html_url\": \"https://github.com/forkOwner\",\n \"followers_url\": \"https://api.github.com/users/forkOwner/followers\",\n \"following_url\": \"https://api.github.com/users/forkOwner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/forkOwner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/forkOwner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/forkOwner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/forkOwner/orgs\",\n \"repos_url\": \"https://api.github.com/users/forkOwner/repos\",\n \"events_url\": \"https://api.github.com/users/forkOwner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/forkOwner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/forkOwner/repo\",\n \"description\": null,\n \"fork\": true,\n \"url\": \"https://api.github.com/repos/forkOwner/repo\",\n \"forks_url\": \"https://api.github.com/repos/forkOwner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/forkOwner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/forkOwner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/forkOwner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/forkOwner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/forkOwner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/forkOwner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/forkOwner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/forkOwner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/forkOwner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/forkOwner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/forkOwner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/forkOwner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/forkOwner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/forkOwner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/forkOwner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/forkOwner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/forkOwner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/forkOwner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/forkOwner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/forkOwner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/forkOwner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/forkOwner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/forkOwner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/forkOwner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/forkOwner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/forkOwner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/forkOwner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/forkOwner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/forkOwner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/forkOwner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/forkOwner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/forkOwner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/forkOwner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/forkOwner/repo/deployments\",\n \"created_at\": \"2019-09-10T13:31:46Z\",\n \"updated_at\": \"2019-09-10T13:31:48Z\",\n \"pushed_at\": \"2019-09-10T13:34:25Z\",\n \"git_url\": \"git://github.com/forkOwner/repo.git\",\n \"ssh_url\": \"git@github.com:forkOwner/repo.git\",\n \"clone_url\": \"https://github.com/forkOwner/repo.git\",\n \"svn_url\": \"https://github.com/forkOwner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": null,\n \"has_issues\": false,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\",\n \"permissions\": {\n \"admin\": true,\n \"push\": true,\n \"pull\": true\n },\n \"parent\": {\n \"id\": 207567011,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-10T13:28:07Z\",\n \"updated_at\": \"2019-09-10T13:31:40Z\",\n \"pushed_at\": \"2019-09-10T13:34:14Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n },\n \"source\": {\n \"id\": 207567011,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-10T13:28:07Z\",\n \"updated_at\": \"2019-09-10T13:31:40Z\",\n \"pushed_at\": \"2019-09-10T13:34:14Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n },\n \"network_count\": 1,\n \"subscribers_count\": 0\n}\n", + "status": 202 + }, + { + "method": "GET", + "url": "/repos/forkOwner/repo", + "headers": { + "Date": "Tue, 10 Sep 2019 13:34:34 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4923", + "X-RateLimit-Reset": "1568126016", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"b7e3548f150e4e4ae8eb44de281c8e95\"", + "Last-Modified": "Tue, 10 Sep 2019 13:31:48 GMT", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A98:3ED6F:1A770:2334E:5D77A669", + "content-length": "22145", + "connection": "keep-alive" + }, + "response": "{\n \"id\": 207567867,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1Njc4Njc=\",\n \"name\": \"repo\",\n \"full_name\": \"forkOwner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"forkOwner\",\n \"id\": 53494188,\n \"node_id\": \"MDQ6VXNlcjUzNDk0MTg4\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/forkOwner\",\n \"html_url\": \"https://github.com/forkOwner\",\n \"followers_url\": \"https://api.github.com/users/forkOwner/followers\",\n \"following_url\": \"https://api.github.com/users/forkOwner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/forkOwner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/forkOwner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/forkOwner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/forkOwner/orgs\",\n \"repos_url\": \"https://api.github.com/users/forkOwner/repos\",\n \"events_url\": \"https://api.github.com/users/forkOwner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/forkOwner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/forkOwner/repo\",\n \"description\": null,\n \"fork\": true,\n \"url\": \"https://api.github.com/repos/forkOwner/repo\",\n \"forks_url\": \"https://api.github.com/repos/forkOwner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/forkOwner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/forkOwner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/forkOwner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/forkOwner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/forkOwner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/forkOwner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/forkOwner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/forkOwner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/forkOwner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/forkOwner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/forkOwner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/forkOwner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/forkOwner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/forkOwner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/forkOwner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/forkOwner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/forkOwner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/forkOwner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/forkOwner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/forkOwner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/forkOwner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/forkOwner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/forkOwner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/forkOwner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/forkOwner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/forkOwner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/forkOwner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/forkOwner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/forkOwner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/forkOwner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/forkOwner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/forkOwner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/forkOwner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/forkOwner/repo/deployments\",\n \"created_at\": \"2019-09-10T13:31:46Z\",\n \"updated_at\": \"2019-09-10T13:31:48Z\",\n \"pushed_at\": \"2019-09-10T13:34:25Z\",\n \"git_url\": \"git://github.com/forkOwner/repo.git\",\n \"ssh_url\": \"git@github.com:forkOwner/repo.git\",\n \"clone_url\": \"https://github.com/forkOwner/repo.git\",\n \"svn_url\": \"https://github.com/forkOwner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": null,\n \"has_issues\": false,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\",\n \"permissions\": {\n \"admin\": true,\n \"push\": true,\n \"pull\": true\n },\n \"allow_squash_merge\": true,\n \"allow_merge_commit\": true,\n \"allow_rebase_merge\": true,\n \"parent\": {\n \"id\": 207567011,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-10T13:28:07Z\",\n \"updated_at\": \"2019-09-10T13:31:40Z\",\n \"pushed_at\": \"2019-09-10T13:34:14Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n },\n \"source\": {\n \"id\": 207567011,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-10T13:28:07Z\",\n \"updated_at\": \"2019-09-10T13:31:40Z\",\n \"pushed_at\": \"2019-09-10T13:34:14Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n },\n \"network_count\": 1,\n \"subscribers_count\": 0\n}\n", + "status": 200 + }, + { + "body": "{\"operationName\":null,\"variables\":{},\"query\":\"{\\n viewer {\\n id\\n avatar_url: avatarUrl\\n name\\n login\\n __typename\\n }\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:34:34 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4941", + "X-RateLimit-Reset": "1568126025", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7A99:2B0F:192DE9:1ED3BE:5D77A66A", + "content-length": "176", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"viewer\":{\"id\":\"MDQ6VXNlcjUzNDk0MTg4\",\"avatar_url\":\"https://avatars1.githubusercontent.com/u/7892489?v=4\",\"name\":null,\"login\":\"forkOwner\",\"__typename\":\"User\"}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"repoPermission\",\"variables\":{\"owner\":\"forkOwner\",\"name\":\"repo\"},\"query\":\"query repoPermission($owner: String!, $name: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n viewerPermission\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:34:35 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4940", + "X-RateLimit-Reset": "1568126025", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7A9A:1510E:A88AC8:CD4B64:5D77A66A", + "content-length": "119", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1Njc4Njc=\",\"__typename\":\"Repository\",\"viewerPermission\":\"ADMIN\"}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"files\",\"variables\":{\"owner\":\"forkOwner\",\"name\":\"repo\",\"expression\":\"master:static/media\"},\"query\":\"query files($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...FileEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment FileEntryParts on TreeEntry {\\n name\\n sha: oid\\n type\\n blob: object {\\n ... on Blob {\\n size: byteSize\\n __typename\\n }\\n __typename\\n }\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:34:36 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4939", + "X-RateLimit-Reset": "1568126025", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7A9E:2B0F:192E39:1ED422:5D77A66B", + "content-length": "1837", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1Njc4Njc=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6VHJlZTIwNzU2Nzg2Nzo5Yjc2OTliNTdlMTQzMDkxMGRiODI4MzFkY2Y2YjhhMWQxZGJkYWM5\",\"sha\":\"9b7699b57e1430910db82831dcf6b8a1d1dbdac9\",\"__typename\":\"Tree\",\"entries\":[{\"name\":\"42-line-bible.jpg\",\"sha\":\"41c8d12f9ca5864beb827c381fbeff935209d5fb\",\"type\":\"blob\",\"blob\":{\"size\":671242,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"gutenberg.jpg\",\"sha\":\"04315e355873ea5d358d9c371c39a6845c1ae4ae\",\"type\":\"blob\",\"blob\":{\"size\":155002,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-0.jpg\",\"sha\":\"b70a1b64fd4fa9635823231a0ba92c6dc9393f16\",\"type\":\"blob\",\"blob\":{\"size\":660287,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-1.jpg\",\"sha\":\"05eedae372b829c62501ac751b2d42dcc432541b\",\"type\":\"blob\",\"blob\":{\"size\":392411,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-2.jpg\",\"sha\":\"53845ed35faf8939bea242bb85eda7c324b1be0b\",\"type\":\"blob\",\"blob\":{\"size\":99147,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-3.jpg\",\"sha\":\"8b2339d97069e826fae1f156212e40ae458454e3\",\"type\":\"blob\",\"blob\":{\"size\":358022,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-4.jpg\",\"sha\":\"a8f6f21253a67a4284b5a953b2fe633d44152ecd\",\"type\":\"blob\",\"blob\":{\"size\":114837,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"movable-type.jpg\",\"sha\":\"57b4e925ea00bd8e195cf4418eb6eb2995ea5f10\",\"type\":\"blob\",\"blob\":{\"size\":559028,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"printing-press.jpg\",\"sha\":\"d27f56c9437d9becd2f56cc627c9322c2f1f61f6\",\"type\":\"blob\",\"blob\":{\"size\":279283,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"type-through-time.jpg\",\"sha\":\"3f08366a805c51a60ec5056010f22de4ba08abaa\",\"type\":\"blob\",\"blob\":{\"size\":117689,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"}]}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"files\",\"variables\":{\"owner\":\"forkOwner\",\"name\":\"repo\",\"expression\":\"master:content/posts\"},\"query\":\"query files($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...FileEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment FileEntryParts on TreeEntry {\\n name\\n sha: oid\\n type\\n blob: object {\\n ... on Blob {\\n size: byteSize\\n __typename\\n }\\n __typename\\n }\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:34:36 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4938", + "X-RateLimit-Reset": "1568126025", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7A9C:244EB:17959B8:1CA2FCC:5D77A66B", + "content-length": "1218", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1Njc4Njc=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6VHJlZTIwNzU2Nzg2NzozNDg5MjU3NWUyMTZjMDZlNzU3MDkzZjAzNmJkOGUwNTdjNzhhNTJm\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"__typename\":\"Tree\",\"entries\":[{\"name\":\"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\"sha\":\"6d51a38aed7139d2117724b1e307657b6ff2d043\",\"type\":\"blob\",\"blob\":{\"size\":1707,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\"sha\":\"d0582dd245a3f408fb3fe2333bf01400007476e9\",\"type\":\"blob\",\"blob\":{\"size\":2565,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2016-02-02---A-Brief-History-of-Typography.md\",\"sha\":\"0eea554365f002d0f1572af9a58522d335a794d5\",\"type\":\"blob\",\"blob\":{\"size\":2786,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2017-18-08---The-Birth-of-Movable-Type.md\",\"sha\":\"44f78c474d04273185a95821426f75affc9b0044\",\"type\":\"blob\",\"blob\":{\"size\":16071,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\"sha\":\"a532f0a9445cdf90a19c6812cff89d1674991774\",\"type\":\"blob\",\"blob\":{\"size\":7465,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"}]}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"forkOwner\",\"name\":\"repo\",\"expression\":\"0eea554365f002d0f1572af9a58522d335a794d5\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:34:36 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4937", + "X-RateLimit-Reset": "1568126025", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7AA5:B4DE:11988D6:1569DDF:5D77A66C", + "content-length": "3102", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1Njc4Njc=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzU2Nzg2NzowZWVhNTU0MzY1ZjAwMmQwZjE1NzJhZjlhNTg1MjJkMzM1YTc5NGQ1\",\"text\":\"---\\ntitle: \\\"A Brief History of Typography\\\"\\ndate: \\\"2016-02-02T22:40:32.169Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Design Inspiration\\\"\\ntags:\\n - \\\"Linotype\\\"\\n - \\\"Monotype\\\"\\n - \\\"History of typography\\\"\\n - \\\"Helvetica\\\"\\ndescription: \\\"Morbi in sem quis dui placerat ornare. Pellentesque odio nisi, euismod in, pharetra a, ultricies in, diam. Sed arcu. Cras consequat.\\\"\\ncanonical: ''\\n---\\n\\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \\n\\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\\n\\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-0.jpg)\\n\\n## Header Level 2\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \\n\\n
\\n\\t
\\n\\t\\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\\n\\t\\t
\\n\\t\\t\\t— Aliquam tincidunt mauris eu risus.\\n\\t\\t
\\n\\t
\\n
\\n\\n### Header Level 3\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\\n\\n```css\\n#header h1 a {\\n display: block;\\n width: 300px;\\n height: 80px;\\n}\\n```\\n\\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"forkOwner\",\"name\":\"repo\",\"expression\":\"a532f0a9445cdf90a19c6812cff89d1674991774\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:34:36 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4936", + "X-RateLimit-Reset": "1568126025", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7AA9:2B24:174E81B:1C53FCB:5D77A66C", + "content-length": "7803", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1Njc4Njc=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzU2Nzg2NzphNTMyZjBhOTQ0NWNkZjkwYTE5YzY4MTJjZmY4OWQxNjc0OTkxNzc0\",\"text\":\"---\\ntitle: Humane Typography in the Digital Age\\ndate: \\\"2017-08-19T22:40:32.169Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Typography\\\"\\ntags:\\n - \\\"Design\\\"\\n - \\\"Typography\\\"\\n - \\\"Web Development\\\"\\ndescription: \\\"An Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\\\"\\ncanonical: ''\\n---\\n\\n- [The first transition](#the-first-transition)\\n- [The digital age](#the-digital-age)\\n- [Loss of humanity through transitions](#loss-of-humanity-through-transitions)\\n- [Chasing perfection](#chasing-perfection)\\n\\nAn Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\\n\\nThe typography of this industrial age was no longer handcrafted. Mass production and profit became more important. Quantity mattered more than the quality. The books and printed works in general lost a part of its humanity. The typefaces were not produced by craftsmen anymore. It was the machines printing and tying the books together now. The craftsmen had to let go of their craft and became a cog in the process. An extension of the industrial machine.\\n\\nBut the victory of the industrialism didn’t mean that the craftsmen were completely extinct. The two worlds continued to coexist independently. Each recognising the good in the other — the power of industrialism and the humanity of craftsmanship. This was the second transition that would strip typography of a part of its humanity. We have to go 500 years back in time to meet the first one.\\n\\n## The first transition\\n\\nA similar conflict emerged after the invention of the first printing press in Europe. Johannes Gutenberg invented movable type and used it to produce different compositions. His workshop could print up to 240 impressions per hour. Until then, the books were being copied by hand. All the books were handwritten and decorated with hand drawn ornaments and figures. A process of copying a book was long but each book, even a copy, was a work of art.\\n\\nThe first printed books were, at first, perceived as inferior to the handwritten ones. They were smaller and cheaper to produce. Movable type provided the printers with flexibility that allowed them to print books in languages other than Latin. Gill describes the transition to industrialism as something that people needed and wanted. Something similar happened after the first printed books emerged. People wanted books in a language they understood and they wanted books they could take with them. They were hungry for knowledge and printed books satisfied this hunger.\\n\\n![42-line-bible.jpg](/media/42-line-bible.jpg)\\n\\n*The 42–Line Bible, printed by Gutenberg.*\\n\\nBut, through this transition, the book lost a large part of its humanity. The machine took over most of the process but craftsmanship was still a part of it. The typefaces were cut manually by the first punch cutters. The paper was made by hand. The illustrations and ornaments were still being hand drawn. These were the remains of the craftsmanship that went almost extinct in the times of Eric Gill.\\n\\n## The digital age\\n\\nThe first transition took away a large part of humanity from written communication. Industrialisation, the second transition described by Eric Gill, took away most of what was left. But it’s the third transition that stripped it naked. Typefaces are faceless these days. They’re just fonts on our computers. Hardly anyone knows their stories. Hardly anyone cares. Flicking through thousands of typefaces and finding the “right one” is a matter of minutes.\\n\\n> In the new computer age the proliferation of typefaces and type manipulations represents a new level of visual pollution threatening our culture. Out of thousands of typefaces, all we need are a few basic ones, and trash the rest.\\n>\\n— Massimo Vignelli\\n\\nTypography is not about typefaces. It’s not about what looks best, it’s about what feels right. What communicates the message best. Typography, in its essence, is about the message. “Typographical design should perform optically what the speaker creates through voice and gesture of his thoughts.”, as El Lissitzky, a famous Russian typographer, put it.\\n\\n## Loss of humanity through transitions\\n\\nEach transition took away a part of humanity from written language. Handwritten books being the most humane form and the digital typefaces being the least. Overuse of Helvetica is a good example. Messages are being told in a typeface just because it’s a safe option. It’s always there. Everyone knows it but yet, nobody knows it. Stop someone on the street and ask him what Helvetica is? Ask a designer the same question. Ask him where it came from, when, why and who designed it. Most of them will fail to answer these questions. Most of them used it in their precious projects but they still don’t spot it in the street.\\n\\n
\\n\\t
\\n\\t\\t

Knowledge of the quality of a typeface is of the greatest importance for the functional, aesthetic and psychological effect.

\\n\\t\\t
\\n\\t\\t\\t— Josef Mueller-Brockmann\\n\\t\\t
\\n\\t
\\n
\\n\\nTypefaces don’t look handmade these days. And that’s all right. They don’t have to. Industrialism took that away from them and we’re fine with it. We’ve traded that part of humanity for a process that produces more books that are easier to read. That can’t be bad. And it isn’t.\\n\\n> Humane typography will often be comparatively rough and even uncouth; but while a certain uncouthness does not seriously matter in humane works, uncouthness has no excuse whatever in the productions of the machine.\\n>\\n> — Eric Gill\\n\\nWe’ve come close to “perfection” in the last five centuries. The letters are crisp and without rough edges. We print our compositions with high–precision printers on a high quality, machine made paper.\\n\\n![type-through-time.jpg](/media/type-through-time.jpg)\\n\\n*Type through 5 centuries.*\\n\\nWe lost a part of ourselves because of this chase after perfection. We forgot about the craftsmanship along the way. And the worst part is that we don’t care. The transition to the digital age made that clear. We choose typefaces like clueless zombies. There’s no meaning in our work. Type sizes, leading, margins… It’s all just a few clicks or lines of code. The message isn’t important anymore. There’s no more “why” behind the “what”.\\n\\n## Chasing perfection\\n\\nHuman beings aren’t perfect. Perfection is something that will always elude us. There will always be a small part of humanity in everything we do. No matter how small that part, we should make sure that it transcends the limits of the medium. We have to think about the message first. What typeface should we use and why? Does the typeface match the message and what we want to communicate with it? What will be the leading and why? Will there be more typefaces in our design? On what ground will they be combined? What makes our design unique and why? This is the part of humanity that is left in typography. It might be the last part. Are we really going to give it up?\\n\\n*Originally published by [Matej Latin](http://matejlatin.co.uk/) on [Medium](https://medium.com/design-notes/humane-typography-in-the-digital-age-9bd5c16199bd?ref=webdesignernews.com#.lygo82z0x).*\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"forkOwner\",\"name\":\"repo\",\"expression\":\"6d51a38aed7139d2117724b1e307657b6ff2d043\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:34:36 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4935", + "X-RateLimit-Reset": "1568126025", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7AA1:9D1F:9EFE6F:C20221:5D77A66C", + "content-length": "1973", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1Njc4Njc=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzU2Nzg2Nzo2ZDUxYTM4YWVkNzEzOWQyMTE3NzI0YjFlMzA3NjU3YjZmZjJkMDQz\",\"text\":\"---\\ntitle: Perfecting the Art of Perfection\\ndate: \\\"2016-09-01T23:46:37.121Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Design Inspiration\\\"\\ntags:\\n - \\\"Handwriting\\\"\\n - \\\"Learning to write\\\"\\ndescription: \\\"Quisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\\\"\\ncanonical: ''\\n---\\n\\nQuisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\\n\\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-2.jpg)\\n\\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. \\n\\nPraesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"forkOwner\",\"name\":\"repo\",\"expression\":\"d0582dd245a3f408fb3fe2333bf01400007476e9\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:34:37 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4934", + "X-RateLimit-Reset": "1568126025", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7AA2:B4DE:11988D4:1569DDC:5D77A66C", + "content-length": "2866", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1Njc4Njc=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzU2Nzg2NzpkMDU4MmRkMjQ1YTNmNDA4ZmIzZmUyMzMzYmYwMTQwMDAwNzQ3NmU5\",\"text\":\"---\\ntitle: The Origins of Social Stationery Lettering\\ndate: \\\"2016-12-01T22:40:32.169Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Design Culture\\\"\\ndescription: \\\"Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante.\\\"\\ncanonical: ''\\n---\\n\\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \\n\\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\\n\\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-3.jpg)\\n\\n## Header Level 2\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \\n\\n
\\n\\t
\\n\\t\\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\\n\\t\\t
\\n\\t\\t\\t— Aliquam tincidunt mauris eu risus.\\n\\t\\t
\\n\\t
\\n
\\n\\n### Header Level 3\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\\n\\n```css\\n#header h1 a {\\n display: block;\\n width: 300px;\\n height: 80px;\\n}\\n```\\n\\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"forkOwner\",\"name\":\"repo\",\"expression\":\"44f78c474d04273185a95821426f75affc9b0044\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:34:37 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4933", + "X-RateLimit-Reset": "1568126025", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7AA7:B4E0:1643933:1B17BC5:5D77A66C", + "content-length": "16478", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1Njc4Njc=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzU2Nzg2Nzo0NGY3OGM0NzRkMDQyNzMxODVhOTU4MjE0MjZmNzVhZmZjOWIwMDQ0\",\"text\":\"---\\ntitle: \\\"Johannes Gutenberg: The Birth of Movable Type\\\"\\ndate: \\\"2017-08-18T22:12:03.284Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Typography\\\"\\ntags:\\n - \\\"Open source\\\"\\n - \\\"Gatsby\\\"\\n - \\\"Typography\\\"\\ndescription: \\\"German inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\\\"\\ncanonical: ''\\n---\\n\\nGerman inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\\n\\n**Johannes Gensfleisch zur Laden zum Gutenberg** (c. 1398 – 1468) was a German blacksmith, goldsmith, printer, and publisher who introduced printing to Europe. His invention of mechanical movable type printing started the Printing Revolution and is widely regarded as the most important event of the modern period. It played a key role in the development of the Renaissance, Reformation, the Age of Enlightenment, and the Scientific revolution and laid the material basis for the modern knowledge-based economy and the spread of learning to the masses.\\n\\n
\\n\\t\\\"Gutenberg\\\"\\n\\t
Johannes Gutenberg
\\n
\\n\\nWith his invention of the printing press, Gutenberg was the first European to use movable type printing, in around 1439. Among his many contributions to printing are: the invention of a process for mass-producing movable type; the use of oil-based ink; and the use of a wooden printing press similar to the agricultural screw presses of the period. His truly epochal invention was the combination of these elements into a practical system that allowed the mass production of printed books and was economically viable for printers and readers alike. Gutenberg's method for making type is traditionally considered to have included a type metal alloy and a hand mould for casting type. The alloy was a mixture of lead, tin, and antimony that melted at a relatively low temperature for faster and more economical casting, cast well, and created a durable type.\\n\\nIn Renaissance Europe, the arrival of mechanical movable type printing introduced the era of mass communication which permanently altered the structure of society. The relatively unrestricted circulation of information — including revolutionary ideas — transcended borders, captured the masses in the Reformation and threatened the power of political and religious authorities; the sharp increase in literacy broke the monopoly of the literate elite on education and learning and bolstered the emerging middle class. Across Europe, the increasing cultural self-awareness of its people led to the rise of proto-nationalism, accelerated by the flowering of the European vernacular languages to the detriment of Latin's status as lingua franca. In the 19th century, the replacement of the hand-operated Gutenberg-style press by steam-powered rotary presses allowed printing on an industrial scale, while Western-style printing was adopted all over the world, becoming practically the sole medium for modern bulk printing.\\n\\nThe use of movable type was a marked improvement on the handwritten manuscript, which was the existing method of book production in Europe, and upon woodblock printing, and revolutionized European book-making. Gutenberg's printing technology spread rapidly throughout Europe and later the world.\\n\\nHis major work, the Gutenberg Bible (also known as the 42-line Bible), has been acclaimed for its high aesthetic and technical quality.\\n\\n## Printing Press\\n\\nAround 1439, Gutenberg was involved in a financial misadventure making polished metal mirrors (which were believed to capture holy light from religious relics) for sale to pilgrims to Aachen: in 1439 the city was planning to exhibit its collection of relics from Emperor Charlemagne but the event was delayed by one year due to a severe flood and the capital already spent could not be repaid. When the question of satisfying the investors came up, Gutenberg is said to have promised to share a “secret”. It has been widely speculated that this secret may have been the idea of printing with movable type. Also around 1439–1440, the Dutch Laurens Janszoon Coster came up with the idea of printing. Legend has it that the idea came to him “like a ray of light”.\\n\\n
\\n\\t\\\"Early\\n\\t
Early wooden printing press as depicted in 1568.
\\n
\\n\\nUntil at least 1444 he lived in Strasbourg, most likely in the St. Arbogast parish. It was in Strasbourg in 1440 that Gutenberg is said to have perfected and unveiled the secret of printing based on his research, mysteriously entitled Kunst und Aventur (art and enterprise). It is not clear what work he was engaged in, or whether some early trials with printing from movable type may have been conducted there. After this, there is a gap of four years in the record. In 1448, he was back in Mainz, where he took out a loan from his brother-in-law Arnold Gelthus, quite possibly for a printing press or related paraphernalia. By this date, Gutenberg may have been familiar with intaglio printing; it is claimed that he had worked on copper engravings with an artist known as the Master of Playing Cards.\\n\\nBy 1450, the press was in operation, and a German poem had been printed, possibly the first item to be printed there. Gutenberg was able to convince the wealthy moneylender Johann Fust for a loan of 800 guilders. Peter Schöffer, who became Fust’s son-in-law, also joined the enterprise. Schöffer had worked as a scribe in Paris and is believed to have designed some of the first typefaces.\\n\\n
\\n\\t
\\n\\t\\t

All that has been written to me about that marvelous man seen at Frankfurt is true. I have not seen complete Bibles but only a number of quires of various books of the Bible. The script was very neat and legible, not at all difficult to follow—your grace would be able to read it without effort, and indeed without glasses.

\\n\\t\\t
\\n\\t\\t\\t—Future pope Pius II in a letter to Cardinal Carvajal, March 1455\\n\\t\\t
\\n\\t
\\n
\\n\\nGutenberg's workshop was set up at Hof Humbrecht, a property belonging to a distant relative. It is not clear when Gutenberg conceived the Bible project, but for this he borrowed another 800 guilders from Fust, and work commenced in 1452. At the same time, the press was also printing other, more lucrative texts (possibly Latin grammars). There is also some speculation that there may have been two presses, one for the pedestrian texts, and one for the Bible. One of the profit-making enterprises of the new press was the printing of thousands of indulgences for the church, documented from 1454–55.\\n\\nIn 1455 Gutenberg completed his 42-line Bible, known as the Gutenberg Bible. About 180 copies were printed, most on paper and some on vellum.\\n\\n## Court Case\\n\\nSome time in 1456, there was a dispute between Gutenberg and Fust, and Fust demanded his money back, accusing Gutenberg of misusing the funds. Meanwhile the expenses of the Bible project had proliferated, and Gutenberg's debt now exceeded 20,000 guilders. Fust sued at the archbishop's court. A November 1455 legal document records that there was a partnership for a \\\"project of the books,\\\" the funds for which Gutenberg had used for other purposes, according to Fust. The court decided in favor of Fust, giving him control over the Bible printing workshop and half of all printed Bibles.\\n\\nThus Gutenberg was effectively bankrupt, but it appears he retained (or re-started) a small printing shop, and participated in the printing of a Bible in the town of Bamberg around 1459, for which he seems at least to have supplied the type. But since his printed books never carry his name or a date, it is difficult to be certain, and there is consequently a considerable scholarly debate on this subject. It is also possible that the large Catholicon dictionary, 300 copies of 754 pages, printed in Mainz in 1460, may have been executed in his workshop.\\n\\nMeanwhile, the Fust–Schöffer shop was the first in Europe to bring out a book with the printer's name and date, the Mainz Psalter of August 1457, and while proudly proclaiming the mechanical process by which it had been produced, it made no mention of Gutenberg.\\n\\n## Later Life\\n\\nIn 1462, during a conflict between two archbishops, Mainz was sacked by archbishop Adolph von Nassau, and Gutenberg was exiled. An old man by now, he moved to Eltville where he may have initiated and supervised a new printing press belonging to the brothers Bechtermünze.\\n\\nIn January 1465, Gutenberg's achievements were recognized and he was given the title Hofmann (gentleman of the court) by von Nassau. This honor included a stipend, an annual court outfit, as well as 2,180 litres of grain and 2,000 litres of wine tax-free. It is believed he may have moved back to Mainz around this time, but this is not certain.\\n\\n***\\n\\nGutenberg died in 1468 and was buried in the Franciscan church at Mainz, his contributions largely unknown. This church and the cemetery were later destroyed, and Gutenberg's grave is now lost.\\n\\nIn 1504, he was mentioned as the inventor of typography in a book by Professor Ivo Wittig. It was not until 1567 that the first portrait of Gutenberg, almost certainly an imaginary reconstruction, appeared in Heinrich Pantaleon's biography of famous Germans.\\n\\n## Printing Method With Movable Type\\n\\nGutenberg's early printing process, and what tests he may have made with movable type, are not known in great detail. His later Bibles were printed in such a way as to have required large quantities of type, some estimates suggesting as many as 100,000 individual sorts. Setting each page would take, perhaps, half a day, and considering all the work in loading the press, inking the type, pulling the impressions, hanging up the sheets, distributing the type, etc., it is thought that the Gutenberg–Fust shop might have employed as many as 25 craftsmen.\\n\\n![Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5](/media/movable-type.jpg)\\n\\n*Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5*\\n\\nGutenberg's technique of making movable type remains unclear. In the following decades, punches and copper matrices became standardized in the rapidly disseminating printing presses across Europe. Whether Gutenberg used this sophisticated technique or a somewhat primitive version has been the subject of considerable debate.\\n\\nIn the standard process of making type, a hard metal punch (made by punchcutting, with the letter carved back to front) is hammered into a softer copper bar, creating a matrix. This is then placed into a hand-held mould and a piece of type, or \\\"sort\\\", is cast by filling the mould with molten type-metal; this cools almost at once, and the resulting piece of type can be removed from the mould. The matrix can be reused to create hundreds, or thousands, of identical sorts so that the same character appearing anywhere within the book will appear very uniform, giving rise, over time, to the development of distinct styles of typefaces or fonts. After casting, the sorts are arranged into type-cases, and used to make up pages which are inked and printed, a procedure which can be repeated hundreds, or thousands, of times. The sorts can be reused in any combination, earning the process the name of “movable type”.\\n\\nThe invention of the making of types with punch, matrix and mold has been widely attributed to Gutenberg. However, recent evidence suggests that Gutenberg's process was somewhat different. If he used the punch and matrix approach, all his letters should have been nearly identical, with some variations due to miscasting and inking. However, the type used in Gutenberg's earliest work shows other variations.\\n\\n
\\n\\t
\\n\\t\\t

It is a press, certainly, but a press from which shall flow in inexhaustible streams… Through it, god will spread his word.

\\n\\t\\t
\\n\\t\\t\\t—Johannes Gutenberg\\n\\t\\t
\\n\\t
\\n
\\n\\nIn 2001, the physicist Blaise Agüera y Arcas and Princeton librarian Paul Needham, used digital scans of a Papal bull in the Scheide Library, Princeton, to carefully compare the same letters (types) appearing in different parts of the printed text. The irregularities in Gutenberg's type, particularly in simple characters such as the hyphen, suggested that the variations could not have come from either ink smear or from wear and damage on the pieces of metal on the types themselves. While some identical types are clearly used on other pages, other variations, subjected to detailed image analysis, suggested that they could not have been produced from the same matrix. Transmitted light pictures of the page also appeared to reveal substructures in the type that could not arise from traditional punchcutting techniques. They hypothesized that the method may have involved impressing simple shapes to create alphabets in “cuneiform” style in a matrix made of some soft material, perhaps sand. Casting the type would destroy the mould, and the matrix would need to be recreated to make each additional sort. This could explain the variations in the type, as well as the substructures observed in the printed images.\\n\\nThus, they feel that “the decisive factor for the birth of typography”, the use of reusable moulds for casting type, might have been a more progressive process than was previously thought. They suggest that the additional step of using the punch to create a mould that could be reused many times was not taken until twenty years later, in the 1470s. Others have not accepted some or all of their suggestions, and have interpreted the evidence in other ways, and the truth of the matter remains very uncertain.\\n\\nA 1568 history by Hadrianus Junius of Holland claims that the basic idea of the movable type came to Gutenberg from Laurens Janszoon Coster via Fust, who was apprenticed to Coster in the 1430s and may have brought some of his equipment from Haarlem to Mainz. While Coster appears to have experimented with moulds and castable metal type, there is no evidence that he had actually printed anything with this technology. He was an inventor and a goldsmith. However, there is one indirect supporter of the claim that Coster might be the inventor. The author of the Cologne Chronicle of 1499 quotes Ulrich Zell, the first printer of Cologne, that printing was performed in Mainz in 1450, but that some type of printing of lower quality had previously occurred in the Netherlands. However, the chronicle does not mention the name of Coster, while it actually credits Gutenberg as the \\\"first inventor of printing\\\" in the very same passage (fol. 312). The first securely dated book by Dutch printers is from 1471, and the Coster connection is today regarded as a mere legend.\\n\\nThe 19th century printer and typefounder Fournier Le Jeune suggested that Gutenberg might not have been using type cast with a reusable matrix, but possibly wooden types that were carved individually. A similar suggestion was made by Nash in 2004. This remains possible, albeit entirely unproven.\\n\\nIt has also been questioned whether Gutenberg used movable types at all. In 2004, Italian professor Bruno Fabbiani claimed that examination of the 42-line Bible revealed an overlapping of letters, suggesting that Gutenberg did not in fact use movable type (individual cast characters) but rather used whole plates made from a system somewhat like a modern typewriter, whereby the letters were stamped successively into the plate and then printed. However, most specialists regard the occasional overlapping of type as caused by paper movement over pieces of type of slightly unequal height.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/forkOwner/repo/contents/forkOwner/repo/posts/1970-01-01-first-title.json?ts=300&ref=refs/meta/_netlify_cms", + "headers": { + "Date": "Tue, 10 Sep 2019 13:34:40 GMT", + "Content-Type": "application/vnd.github.VERSION.raw; charset=utf-8", + "Content-Length": "553", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4922", + "X-RateLimit-Reset": "1568126016", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"006a9d07a95115ecf4a7062a5dc3f98fc2d3d943\"", + "Last-Modified": "Tue, 10 Sep 2019 13:34:17 GMT", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7AAA:244E7:114C894:151A59A:5D77A66F", + "connection": "keep-alive" + }, + "response": "{\"type\":\"PR\",\"pr\":{\"number\":5,\"head\":{\"sha\":\"794bf5159c62a1714d38a3935c0812e75f52863e\"}},\"user\":\"forkOwner\",\"status\":\"pending_review\",\"branch\":\"cms/forkOwner/repo/posts/1970-01-01-first-title\",\"collection\":\"posts\",\"commitMessage\":\"Create Post “1970-01-01-first-title”\",\"title\":\"first title\",\"description\":\"first description\",\"objects\":{\"entry\":{\"path\":\"content/posts/1970-01-01-first-title.md\",\"sha\":\"a041245814892e3f73f63ca54333fda649b7fc0b\"},\"files\":[]},\"timeStamp\":\"1970-01-01T00:00:00.300Z\"}", + "status": 200 + }, + { + "body": "{\"operationName\":\"unpublishedBranchFile\",\"variables\":{\"headOwner\":\"forkOwner\",\"headRepoName\":\"repo\",\"headExpression\":\"cms/forkOwner/repo/posts/1970-01-01-first-title:content/posts/1970-01-01-first-title.md\",\"baseOwner\":\"owner\",\"baseRepoName\":\"repo\",\"baseExpression\":\"master:content/posts/1970-01-01-first-title.md\"},\"query\":\"query unpublishedBranchFile($headOwner: String!, $headRepoName: String!, $headExpression: String!, $baseOwner: String!, $baseRepoName: String!, $baseExpression: String!) {\\n head: repository(owner: $headOwner, name: $headRepoName) {\\n ...RepositoryParts\\n object(expression: $headExpression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n base: repository(owner: $baseOwner, name: $baseRepoName) {\\n ...RepositoryParts\\n object(expression: $baseExpression) {\\n ... on Blob {\\n id\\n oid\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:34:41 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4932", + "X-RateLimit-Reset": "1568126025", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7AAC:15110:180CB37:1D354F1:5D77A670", + "content-length": "189", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"head\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1Njc4Njc=\",\"__typename\":\"Repository\",\"object\":null},\"base\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"object\":null}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"master:content/posts/1970-01-01-first-title.md\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:34:41 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4931", + "X-RateLimit-Reset": "1568126025", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7AAE:B4DA:50396C:61DD81:5D77A671", + "content-length": "106", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"object\":null}}}\n", + "status": 200 + }, + { + "body": "{\"content\":\"LS0tCnRlbXBsYXRlOiBwb3N0CnRpdGxlOiBmaXJzdCB0aXRsZQpkcmFmdDogdHJ1ZQpkYXRlOiAxOTcwLTAxLTAxVDAwOjAwOjAwLjAwMFoKZGVzY3JpcHRpb246IGZpcnN0IGRlc2NyaXB0aW9uCmNhdGVnb3J5OiBmaXJzdCBjYXRlZ29yeQp0YWdzOgogIC0gdGFnMQotLS0KZmlyc3QgYm9keQo=\",\"encoding\":\"base64\"}", + "method": "POST", + "url": "/repos/forkOwner/repo/git/blobs?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:34:42 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "212", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4921", + "X-RateLimit-Reset": "1568126016", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"e534bfcd1b6dc6f9245f32d16a0c64c9\"", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/forkOwner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7AB0:B4DA:5039D1:61DDF7:5D77A671", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"a041245814892e3f73f63ca54333fda649b7fc0b\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b\"\n}\n", + "status": 201 + }, + { + "body": "{\"operationName\":\"branch\",\"variables\":{\"owner\":\"forkOwner\",\"name\":\"repo\",\"qualifiedName\":\"refs/heads/master\"},\"query\":\"query branch($owner: String!, $name: String!, $qualifiedName: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n branch: ref(qualifiedName: $qualifiedName) {\\n ...BranchParts\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BranchParts on Ref {\\n commit: target {\\n ...ObjectParts\\n __typename\\n }\\n id\\n name\\n repository {\\n ...RepositoryParts\\n __typename\\n }\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:34:43 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4930", + "X-RateLimit-Reset": "1568126025", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7AB2:2B1F:11CE2EF:15B889B:5D77A672", + "content-length": "429", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1Njc4Njc=\",\"__typename\":\"Repository\",\"branch\":{\"commit\":{\"id\":\"MDY6Q29tbWl0MjA3NTY3ODY3OjcyNjE3MmRlYWU5OWM4YTJjZWE0YzcxZTczNGEwMmE3OTNkNGQ5ZTU=\",\"sha\":\"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\"__typename\":\"Commit\"},\"id\":\"MDM6UmVmMjA3NTY3ODY3Om1hc3Rlcg==\",\"name\":\"master\",\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1Njc4Njc=\",\"__typename\":\"Repository\"},\"__typename\":\"Ref\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"tree\",\"variables\":{\"owner\":\"forkOwner\",\"name\":\"repo\",\"sha\":\"726172deae99c8a2cea4c71e734a02a793d4d9e5\"},\"query\":\"query tree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n tree: object(oid: $sha) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:34:43 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4928", + "X-RateLimit-Reset": "1568126025", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7AB6:3ED7B:1206634:15E36D3:5D77A673", + "content-length": "260", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1Njc4Njc=\",\"__typename\":\"Repository\",\"tree\":{\"id\":\"MDY6Q29tbWl0MjA3NTY3ODY3OjcyNjE3MmRlYWU5OWM4YTJjZWE0YzcxZTczNGEwMmE3OTNkNGQ5ZTU=\",\"sha\":\"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\"__typename\":\"Commit\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"commitTree\",\"variables\":{\"owner\":\"forkOwner\",\"name\":\"repo\",\"sha\":\"726172deae99c8a2cea4c71e734a02a793d4d9e5\"},\"query\":\"query commitTree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n commit: object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n tree {\\n ...ObjectParts\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:34:43 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4929", + "X-RateLimit-Reset": "1568126025", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7AB4:2B1F:11CE3E3:15B89C9:5D77A673", + "content-length": "5040", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1Njc4Njc=\",\"__typename\":\"Repository\",\"commit\":{\"id\":\"MDY6Q29tbWl0MjA3NTY3ODY3OjcyNjE3MmRlYWU5OWM4YTJjZWE0YzcxZTczNGEwMmE3OTNkNGQ5ZTU=\",\"sha\":\"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\"__typename\":\"Commit\",\"tree\":{\"id\":\"MDQ6VHJlZTIwNzU2Nzg2NzpjNWI3ZjZkNjc0YmExOTNiYjdiNGE1ZmNmNDkzMzAzNGUxYjdmMmI3\",\"sha\":\"c5b7f6d674ba193bb7b4a5fcf4933034e1b7f2b7\",\"__typename\":\"Tree\",\"entries\":[{\"path\":\".circleci\",\"sha\":\"e5e9af3301cac61f120b8e4d40b1733c7a45685a\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\".eslintignore\",\"sha\":\"80b4531b026d19f8fa589efd122e76199d23f967\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".eslintrc.js\",\"sha\":\"370684994aaed5b858da3a006f48cfa57e88fd27\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".flowconfig\",\"sha\":\"14aa2ac4cc0e15223ad98630a6f1325fc81f8043\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".gitattributes\",\"sha\":\"10a369ddf4f603337cabc6f21646508323941ce1\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".github\",\"sha\":\"4ebeece548b52b20af59622354530a6d33b50b43\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\".gitignore\",\"sha\":\"c071ba35b0e49899bab6d610a68eef667dbbf157\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".prettierignore\",\"sha\":\"393f050e123d998cf8c8b362ff95cc8ac4d250e5\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".prettierrc\",\"sha\":\"e52ad05bb13b084d7949dd76e1b2517455162150\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".stylelintrc.json\",\"sha\":\"4b4c9698d10d756f5faa025659b86375428ed0a7\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".vscode\",\"sha\":\"286e97ec0113ea8242b41ac222e2c3e8077e6f1e\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"CHANGELOG.md\",\"sha\":\"070a5d4f0eacd2dc0be81ae8996f8982de43046e\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"CODE_OF_CONDUCT.md\",\"sha\":\"92bc7565ff0ee145a0041b5179a820f14f39ab22\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"CONTRIBUTING.md\",\"sha\":\"8552aa241254a61258e1ff9666ab36f32fb1e3b9\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"LICENSE\",\"sha\":\"42d85938357b49977c126ca03b199129082d4fb8\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"README.md\",\"sha\":\"19df50a78654c8d757ca7f38447aa3d09c7abcce\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"backend\",\"sha\":\"b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"config.js\",\"sha\":\"58afd573bbb69fcca000efd0f5d90b93c93a98dd\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"content\",\"sha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"flow-typed\",\"sha\":\"86c32fd6c3118be5e0dbbb231a834447357236c6\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"flow\",\"sha\":\"0af45ad00d155c8d8c7407d913ff85278244c9ce\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"gatsby-browser.js\",\"sha\":\"9bd2c9dce175f04980e91cd9dc295a299e3cdb80\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"gatsby-config.js\",\"sha\":\"353a109dad62e3f25bf9f5e6a2167f21a6c8b459\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"gatsby-node.js\",\"sha\":\"14a207883c2093d2cc071bc5a464e165bcc1fead\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"gatsby\",\"sha\":\"4f23c06cd1740bf78304d2c0b29bf6bfdf427981\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"jest\",\"sha\":\"5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"netlify.toml\",\"sha\":\"599b99cc5700404fde316a7ede829776f23e7d45\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"package.json\",\"sha\":\"9d777616438b90a18f1a4ebfd5f114b4c06c6f17\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"postcss-config.js\",\"sha\":\"d216501e9b351a72e00ba0b7459a6500e27e7da2\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"renovate.json\",\"sha\":\"dcc309398785698b8870545c32051a3d72dd8271\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"serverless-scripts\",\"sha\":\"ee3701f2fbfc7196ba340f6481d1387d20527898\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"serverless-single-page-app-plugin\",\"sha\":\"08763fcfba643a06a452398517019bea4a5850ba\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"serverless.yml\",\"sha\":\"20b22c5fad229f35d029bf6614d333d82fe8a987\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"src\",\"sha\":\"8cdb35a88232c0f32f12f130c92c7cc55f97f471\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"static\",\"sha\":\"53c6380a600a030d3722bff7ecde36f749fb6964\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"utils\",\"sha\":\"a592549c9f74db40b51efefcda2fd76810405f27\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"yarn.lock\",\"sha\":\"475c9c1924ca752a0686303e2fdeb7b13ad75f57\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"}]}}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"commitTree\",\"variables\":{\"owner\":\"forkOwner\",\"name\":\"repo\",\"sha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\"},\"query\":\"query commitTree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n commit: object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n tree {\\n ...ObjectParts\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:34:44 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4926", + "X-RateLimit-Reset": "1568126025", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7AB8:B4DC:A80E9F:CC5CCD:5D77A674", + "content-length": "256", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1Njc4Njc=\",\"__typename\":\"Repository\",\"commit\":{\"id\":\"MDQ6VHJlZTIwNzU2Nzg2NzowMjk0ZWYxMDZjNTg3NDM5MDdhNWM4NTVkYTFlYjBmODdiMGI2ZGZj\",\"sha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\"__typename\":\"Tree\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"tree\",\"variables\":{\"owner\":\"forkOwner\",\"name\":\"repo\",\"sha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\"},\"query\":\"query tree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n tree: object(oid: $sha) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:34:44 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4927", + "X-RateLimit-Reset": "1568126025", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7ABA:2B1F:11CE4AA:15B8ACC:5D77A674", + "content-length": "502", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1Njc4Njc=\",\"__typename\":\"Repository\",\"tree\":{\"id\":\"MDQ6VHJlZTIwNzU2Nzg2NzowMjk0ZWYxMDZjNTg3NDM5MDdhNWM4NTVkYTFlYjBmODdiMGI2ZGZj\",\"sha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\"__typename\":\"Tree\",\"entries\":[{\"path\":\"pages\",\"sha\":\"1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"posts\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"}]}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"commitTree\",\"variables\":{\"owner\":\"forkOwner\",\"name\":\"repo\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\"},\"query\":\"query commitTree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n commit: object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n tree {\\n ...ObjectParts\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:34:45 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4924", + "X-RateLimit-Reset": "1568126025", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7ABD:15110:180D1E9:1D35D60:5D77A674", + "content-length": "256", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1Njc4Njc=\",\"__typename\":\"Repository\",\"commit\":{\"id\":\"MDQ6VHJlZTIwNzU2Nzg2NzozNDg5MjU3NWUyMTZjMDZlNzU3MDkzZjAzNmJkOGUwNTdjNzhhNTJm\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"__typename\":\"Tree\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"tree\",\"variables\":{\"owner\":\"forkOwner\",\"name\":\"repo\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\"},\"query\":\"query tree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n tree: object(oid: $sha) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:34:45 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4925", + "X-RateLimit-Reset": "1568126025", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7ABE:2B19:A5A29C:C987F1:5D77A674", + "content-length": "1075", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1Njc4Njc=\",\"__typename\":\"Repository\",\"tree\":{\"id\":\"MDQ6VHJlZTIwNzU2Nzg2NzozNDg5MjU3NWUyMTZjMDZlNzU3MDkzZjAzNmJkOGUwNTdjNzhhNTJm\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"__typename\":\"Tree\",\"entries\":[{\"path\":\"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\"sha\":\"6d51a38aed7139d2117724b1e307657b6ff2d043\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\"sha\":\"d0582dd245a3f408fb3fe2333bf01400007476e9\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"2016-02-02---A-Brief-History-of-Typography.md\",\"sha\":\"0eea554365f002d0f1572af9a58522d335a794d5\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"2017-18-08---The-Birth-of-Movable-Type.md\",\"sha\":\"44f78c474d04273185a95821426f75affc9b0044\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\"sha\":\"a532f0a9445cdf90a19c6812cff89d1674991774\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"}]}}}}\n", + "status": 200 + }, + { + "body": "{\"base_tree\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"tree\":[{\"path\":\"1970-01-01-first-title.md\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"a041245814892e3f73f63ca54333fda649b7fc0b\"}]}", + "method": "POST", + "url": "/repos/forkOwner/repo/git/trees?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:34:46 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "2397", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4920", + "X-RateLimit-Reset": "1568126016", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"f0da3cfe1d93508ff3394044fecf0870\"", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/forkOwner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7AC1:3ED77:A7E1DC:CB677C:5D77A675", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a041245814892e3f73f63ca54333fda649b7fc0b\",\n \"size\": 167,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b\"\n },\n {\n \"path\": \"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"size\": 1707,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\"\n },\n {\n \"path\": \"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"size\": 2565,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\"\n },\n {\n \"path\": \"2016-02-02---A-Brief-History-of-Typography.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"0eea554365f002d0f1572af9a58522d335a794d5\",\n \"size\": 2786,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\"\n },\n {\n \"path\": \"2017-18-08---The-Birth-of-Movable-Type.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"44f78c474d04273185a95821426f75affc9b0044\",\n \"size\": 16071,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\"\n },\n {\n \"path\": \"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"size\": 7465,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"base_tree\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\"tree\":[{\"path\":\"posts\",\"mode\":\"040000\",\"type\":\"tree\",\"sha\":\"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\"parentSha\":\"34892575e216c06e757093f036bd8e057c78a52f\"}]}", + "method": "POST", + "url": "/repos/forkOwner/repo/git/trees?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:34:46 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "846", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4919", + "X-RateLimit-Reset": "1568126016", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"2a4689a3495349436da3f799f67c3aa9\"", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/forkOwner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7AC2:B4DE:11994BD:156AC95:5D77A676", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"tree\": [\n {\n \"path\": \"pages\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\"\n },\n {\n \"path\": \"posts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"base_tree\":\"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\"tree\":[{\"path\":\"content\",\"mode\":\"040000\",\"type\":\"tree\",\"sha\":\"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\"parentSha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\"}]}", + "method": "POST", + "url": "/repos/forkOwner/repo/git/trees?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:34:47 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "11959", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4918", + "X-RateLimit-Reset": "1568126016", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"f36a35e8ea247dd844853de0d6154f29\"", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/forkOwner/repo/git/trees/daee8d5d15d144e8779955166a2afeccde2770e1", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7AC4:2B24:174F878:1C55434:5D77A677", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"daee8d5d15d144e8779955166a2afeccde2770e1\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/daee8d5d15d144e8779955166a2afeccde2770e1\",\n \"tree\": [\n {\n \"path\": \".circleci\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"e5e9af3301cac61f120b8e4d40b1733c7a45685a\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/e5e9af3301cac61f120b8e4d40b1733c7a45685a\"\n },\n {\n \"path\": \".eslintignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"80b4531b026d19f8fa589efd122e76199d23f967\",\n \"size\": 39,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/80b4531b026d19f8fa589efd122e76199d23f967\"\n },\n {\n \"path\": \".eslintrc.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"370684994aaed5b858da3a006f48cfa57e88fd27\",\n \"size\": 414,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/370684994aaed5b858da3a006f48cfa57e88fd27\"\n },\n {\n \"path\": \".flowconfig\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14aa2ac4cc0e15223ad98630a6f1325fc81f8043\",\n \"size\": 283,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/14aa2ac4cc0e15223ad98630a6f1325fc81f8043\"\n },\n {\n \"path\": \".gitattributes\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"10a369ddf4f603337cabc6f21646508323941ce1\",\n \"size\": 135,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/10a369ddf4f603337cabc6f21646508323941ce1\"\n },\n {\n \"path\": \".github\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4ebeece548b52b20af59622354530a6d33b50b43\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/4ebeece548b52b20af59622354530a6d33b50b43\"\n },\n {\n \"path\": \".gitignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"c071ba35b0e49899bab6d610a68eef667dbbf157\",\n \"size\": 169,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/c071ba35b0e49899bab6d610a68eef667dbbf157\"\n },\n {\n \"path\": \".prettierignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"393f050e123d998cf8c8b362ff95cc8ac4d250e5\",\n \"size\": 45,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/393f050e123d998cf8c8b362ff95cc8ac4d250e5\"\n },\n {\n \"path\": \".prettierrc\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e52ad05bb13b084d7949dd76e1b2517455162150\",\n \"size\": 223,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/e52ad05bb13b084d7949dd76e1b2517455162150\"\n },\n {\n \"path\": \".stylelintrc.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"4b4c9698d10d756f5faa025659b86375428ed0a7\",\n \"size\": 718,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/4b4c9698d10d756f5faa025659b86375428ed0a7\"\n },\n {\n \"path\": \".vscode\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"286e97ec0113ea8242b41ac222e2c3e8077e6f1e\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/286e97ec0113ea8242b41ac222e2c3e8077e6f1e\"\n },\n {\n \"path\": \"CHANGELOG.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"070a5d4f0eacd2dc0be81ae8996f8982de43046e\",\n \"size\": 2113,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/070a5d4f0eacd2dc0be81ae8996f8982de43046e\"\n },\n {\n \"path\": \"CODE_OF_CONDUCT.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"92bc7565ff0ee145a0041b5179a820f14f39ab22\",\n \"size\": 3355,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/92bc7565ff0ee145a0041b5179a820f14f39ab22\"\n },\n {\n \"path\": \"CONTRIBUTING.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"8552aa241254a61258e1ff9666ab36f32fb1e3b9\",\n \"size\": 3548,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/8552aa241254a61258e1ff9666ab36f32fb1e3b9\"\n },\n {\n \"path\": \"LICENSE\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"42d85938357b49977c126ca03b199129082d4fb8\",\n \"size\": 1091,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/42d85938357b49977c126ca03b199129082d4fb8\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"19df50a78654c8d757ca7f38447aa3d09c7abcce\",\n \"size\": 3698,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/19df50a78654c8d757ca7f38447aa3d09c7abcce\"\n },\n {\n \"path\": \"backend\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\"\n },\n {\n \"path\": \"config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"58afd573bbb69fcca000efd0f5d90b93c93a98dd\",\n \"size\": 853,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/58afd573bbb69fcca000efd0f5d90b93c93a98dd\"\n },\n {\n \"path\": \"content\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639\"\n },\n {\n \"path\": \"flow-typed\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"86c32fd6c3118be5e0dbbb231a834447357236c6\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/86c32fd6c3118be5e0dbbb231a834447357236c6\"\n },\n {\n \"path\": \"flow\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"0af45ad00d155c8d8c7407d913ff85278244c9ce\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/0af45ad00d155c8d8c7407d913ff85278244c9ce\"\n },\n {\n \"path\": \"gatsby-browser.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9bd2c9dce175f04980e91cd9dc295a299e3cdb80\",\n \"size\": 90,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/9bd2c9dce175f04980e91cd9dc295a299e3cdb80\"\n },\n {\n \"path\": \"gatsby-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"353a109dad62e3f25bf9f5e6a2167f21a6c8b459\",\n \"size\": 7228,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/353a109dad62e3f25bf9f5e6a2167f21a6c8b459\"\n },\n {\n \"path\": \"gatsby-node.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14a207883c2093d2cc071bc5a464e165bcc1fead\",\n \"size\": 409,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/14a207883c2093d2cc071bc5a464e165bcc1fead\"\n },\n {\n \"path\": \"gatsby\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4f23c06cd1740bf78304d2c0b29bf6bfdf427981\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/4f23c06cd1740bf78304d2c0b29bf6bfdf427981\"\n },\n {\n \"path\": \"jest\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\"\n },\n {\n \"path\": \"netlify.toml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"599b99cc5700404fde316a7ede829776f23e7d45\",\n \"size\": 137,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/599b99cc5700404fde316a7ede829776f23e7d45\"\n },\n {\n \"path\": \"package.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9d777616438b90a18f1a4ebfd5f114b4c06c6f17\",\n \"size\": 6855,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/9d777616438b90a18f1a4ebfd5f114b4c06c6f17\"\n },\n {\n \"path\": \"postcss-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d216501e9b351a72e00ba0b7459a6500e27e7da2\",\n \"size\": 703,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/d216501e9b351a72e00ba0b7459a6500e27e7da2\"\n },\n {\n \"path\": \"renovate.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"dcc309398785698b8870545c32051a3d72dd8271\",\n \"size\": 460,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/dcc309398785698b8870545c32051a3d72dd8271\"\n },\n {\n \"path\": \"serverless-scripts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ee3701f2fbfc7196ba340f6481d1387d20527898\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/ee3701f2fbfc7196ba340f6481d1387d20527898\"\n },\n {\n \"path\": \"serverless-single-page-app-plugin\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"08763fcfba643a06a452398517019bea4a5850ba\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/08763fcfba643a06a452398517019bea4a5850ba\"\n },\n {\n \"path\": \"serverless.yml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"20b22c5fad229f35d029bf6614d333d82fe8a987\",\n \"size\": 7803,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/20b22c5fad229f35d029bf6614d333d82fe8a987\"\n },\n {\n \"path\": \"src\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"8cdb35a88232c0f32f12f130c92c7cc55f97f471\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/8cdb35a88232c0f32f12f130c92c7cc55f97f471\"\n },\n {\n \"path\": \"static\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"53c6380a600a030d3722bff7ecde36f749fb6964\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/53c6380a600a030d3722bff7ecde36f749fb6964\"\n },\n {\n \"path\": \"utils\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"a592549c9f74db40b51efefcda2fd76810405f27\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/a592549c9f74db40b51efefcda2fd76810405f27\"\n },\n {\n \"path\": \"yarn.lock\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"475c9c1924ca752a0686303e2fdeb7b13ad75f57\",\n \"size\": 793903,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/475c9c1924ca752a0686303e2fdeb7b13ad75f57\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"message\":\"Create Post “1970-01-01-first-title”\",\"tree\":\"daee8d5d15d144e8779955166a2afeccde2770e1\",\"parents\":[\"726172deae99c8a2cea4c71e734a02a793d4d9e5\"]}", + "method": "POST", + "url": "/repos/forkOwner/repo/git/commits?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:34:48 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "1565", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4917", + "X-RateLimit-Reset": "1568126016", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"fedbce95a584c8a2cb1083afb31c7e7c\"", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/forkOwner/repo/git/commits/e1034178e4bee2579beab89a9954895257864a24", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7AC6:2B19:A5A4FA:C98AF3:5D77A677", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"e1034178e4bee2579beab89a9954895257864a24\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NTY3ODY3OmUxMDM0MTc4ZTRiZWUyNTc5YmVhYjg5YTk5NTQ4OTUyNTc4NjRhMjQ=\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/e1034178e4bee2579beab89a9954895257864a24\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/e1034178e4bee2579beab89a9954895257864a24\",\n \"author\": {\n \"name\": \"forkOwner\",\n \"email\": \"53494188+forkOwner@users.noreply.github.com\",\n \"date\": \"2019-09-10T13:34:48Z\"\n },\n \"committer\": {\n \"name\": \"forkOwner\",\n \"email\": \"53494188+forkOwner@users.noreply.github.com\",\n \"date\": \"2019-09-10T13:34:48Z\"\n },\n \"tree\": {\n \"sha\": \"daee8d5d15d144e8779955166a2afeccde2770e1\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/daee8d5d15d144e8779955166a2afeccde2770e1\"\n },\n \"message\": \"Create Post “1970-01-01-first-title”\",\n \"parents\": [\n {\n \"sha\": \"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/726172deae99c8a2cea4c71e734a02a793d4d9e5\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "status": 201 + }, + { + "body": "{\"operationName\":\"createBranch\",\"variables\":{\"createRefInput\":{\"name\":\"refs/heads/cms/forkOwner/repo/posts/1970-01-01-first-title\",\"oid\":\"e1034178e4bee2579beab89a9954895257864a24\",\"repositoryId\":\"MDEwOlJlcG9zaXRvcnkyMDc1Njc4Njc=\"}},\"query\":\"mutation createBranch($createRefInput: CreateRefInput!) {\\n createRef(input: $createRefInput) {\\n branch: ref {\\n ...BranchParts\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment BranchParts on Ref {\\n commit: target {\\n ...ObjectParts\\n __typename\\n }\\n id\\n name\\n repository {\\n ...RepositoryParts\\n __typename\\n }\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:34:49 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4923", + "X-RateLimit-Reset": "1568126025", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7AC8:B4E0:1644D1C:1B19434:5D77A678", + "content-length": "604", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"createRef\":{\"branch\":{\"commit\":{\"id\":\"MDY6Q29tbWl0MjA3NTY3ODY3OmUxMDM0MTc4ZTRiZWUyNTc5YmVhYjg5YTk5NTQ4OTUyNTc4NjRhMjQ=\",\"sha\":\"e1034178e4bee2579beab89a9954895257864a24\",\"__typename\":\"Commit\"},\"id\":\"MDM6UmVmMjA3NTY3ODY3OmNtcy9lcmV6cm9rYWgtdGVzdC9nYXRzYnktbmV0bGlmeS1jbXMtYXdzLTE1NjgxMjIwODcxNzQtNjVyMXMwa3U2Ym8vcG9zdHMvMTk3MC0wMS0wMS1maXJzdC10aXRsZQ==\",\"name\":\"cms/forkOwner/repo/posts/1970-01-01-first-title\",\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1Njc4Njc=\",\"__typename\":\"Repository\"},\"__typename\":\"Ref\"},\"__typename\":\"CreateRefPayload\"}}}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/forkOwner/repo/git/refs/meta/_netlify_cms?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:34:50 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4916", + "X-RateLimit-Reset": "1568126016", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"0430b5cc1a3eb8cb78296cc3fb63c572\"", + "Last-Modified": "Tue, 10 Sep 2019 13:31:48 GMT", + "X-Poll-Interval": "300", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7ACA:3ED77:A7E5A3:CB6C2D:5D77A67A", + "content-length": "494", + "connection": "keep-alive" + }, + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NTY3ODY3OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"948f910b887b9dad4059199a0f0e4ca06b866b86\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/948f910b887b9dad4059199a0f0e4ca06b866b86\"\n }\n}\n", + "status": 200 + }, + { + "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJ1c2VyIjoiZm9ya093bmVyIiwic3RhdHVzIjoiZHJhZnQiLCJicmFuY2giOiJjbXMvZm9ya093bmVyL3JlcG8vcG9zdHMvMTk3MC0wMS0wMS1maXJzdC10aXRsZSIsImNvbGxlY3Rpb24iOiJwb3N0cyIsImNvbW1pdE1lc3NhZ2UiOiJDcmVhdGUgUG9zdCDigJwxOTcwLTAxLTAxLWZpcnN0LXRpdGxl4oCdIiwidGl0bGUiOiJmaXJzdCB0aXRsZSIsImRlc2NyaXB0aW9uIjoiZmlyc3QgZGVzY3JpcHRpb24iLCJvYmplY3RzIjp7ImVudHJ5Ijp7InBhdGgiOiJjb250ZW50L3Bvc3RzLzE5NzAtMDEtMDEtZmlyc3QtdGl0bGUubWQiLCJzaGEiOiJhMDQxMjQ1ODE0ODkyZTNmNzNmNjNjYTU0MzMzZmRhNjQ5YjdmYzBiIn0sImZpbGVzIjpbXX0sInRpbWVTdGFtcCI6IjE5NzAtMDEtMDFUMDA6MDA6MDAuMzAwWiJ9\",\"encoding\":\"base64\"}", + "method": "POST", + "url": "/repos/forkOwner/repo/git/blobs?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:34:51 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "212", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4915", + "X-RateLimit-Reset": "1568126016", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"54f6490b9715c8c0813a4ff80c9f09f4\"", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/forkOwner/repo/git/blobs/b7953b5b2815d858dd0f67d5cce660774d85827b", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7ACC:B4DA:503EA9:61E3D7:5D77A67A", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"b7953b5b2815d858dd0f67d5cce660774d85827b\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/b7953b5b2815d858dd0f67d5cce660774d85827b\"\n}\n", + "status": 201 + }, + { + "body": "{\"operationName\":\"tree\",\"variables\":{\"owner\":\"forkOwner\",\"name\":\"repo\",\"sha\":\"948f910b887b9dad4059199a0f0e4ca06b866b86\"},\"query\":\"query tree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n tree: object(oid: $sha) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:34:51 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4921", + "X-RateLimit-Reset": "1568126025", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7AD0:9D20:10F905A:14C03AA:5D77A67B", + "content-length": "260", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1Njc4Njc=\",\"__typename\":\"Repository\",\"tree\":{\"id\":\"MDY6Q29tbWl0MjA3NTY3ODY3Ojk0OGY5MTBiODg3YjlkYWQ0MDU5MTk5YTBmMGU0Y2EwNmI4NjZiODY=\",\"sha\":\"948f910b887b9dad4059199a0f0e4ca06b866b86\",\"__typename\":\"Commit\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"commitTree\",\"variables\":{\"owner\":\"forkOwner\",\"name\":\"repo\",\"sha\":\"948f910b887b9dad4059199a0f0e4ca06b866b86\"},\"query\":\"query commitTree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n commit: object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n tree {\\n ...ObjectParts\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:34:51 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4922", + "X-RateLimit-Reset": "1568126025", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7ACE:244EB:17971E9:1CA4DE7:5D77A67B", + "content-length": "685", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1Njc4Njc=\",\"__typename\":\"Repository\",\"commit\":{\"id\":\"MDY6Q29tbWl0MjA3NTY3ODY3Ojk0OGY5MTBiODg3YjlkYWQ0MDU5MTk5YTBmMGU0Y2EwNmI4NjZiODY=\",\"sha\":\"948f910b887b9dad4059199a0f0e4ca06b866b86\",\"__typename\":\"Commit\",\"tree\":{\"id\":\"MDQ6VHJlZTIwNzU2Nzg2Nzo4YWNhMWIxZGU5MjZjZGFiNDRhOTU2OWZjZjc5N2VmZmQxYmM3Mjli\",\"sha\":\"8aca1b1de926cdab44a9569fcf797effd1bc729b\",\"__typename\":\"Tree\",\"entries\":[{\"path\":\"README.md\",\"sha\":\"98787d1bd948850444433e91a43091a76c4eb455\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"forkOwner\",\"sha\":\"2ca6e2a408d578c4ec1bb44a71bef88c7e0a16e5\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"}]}}}}}\n", + "status": 200 + }, + { + "body": "{\"base_tree\":\"948f910b887b9dad4059199a0f0e4ca06b866b86\",\"tree\":[{\"path\":\"forkOwner/repo/posts/1970-01-01-first-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"b7953b5b2815d858dd0f67d5cce660774d85827b\"}]}", + "method": "POST", + "url": "/repos/forkOwner/repo/git/trees?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:34:52 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "878", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4914", + "X-RateLimit-Reset": "1568126016", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"649c0edb639d5d37a4d77f313f2c2134\"", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/forkOwner/repo/git/trees/12fbacfbb396749a45b22c0ab520b5927da6488d", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7AD2:244E7:114D637:151B6EF:5D77A67C", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"12fbacfbb396749a45b22c0ab520b5927da6488d\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/12fbacfbb396749a45b22c0ab520b5927da6488d\",\n \"tree\": [\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n },\n {\n \"path\": \"forkOwner\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"a03cc9e4fd5f46ff1a1383b22aa4edc809590222\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/a03cc9e4fd5f46ff1a1383b22aa4edc809590222\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"message\":\"Updating “forkOwner/repo/posts/1970-01-01-first-title” metadata\",\"tree\":\"12fbacfbb396749a45b22c0ab520b5927da6488d\",\"parents\":[\"948f910b887b9dad4059199a0f0e4ca06b866b86\"]}", + "method": "POST", + "url": "/repos/forkOwner/repo/git/commits?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:34:53 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "1641", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4913", + "X-RateLimit-Reset": "1568126016", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"7c803dc41d88c0f3622c1c14bdd1a601\"", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/forkOwner/repo/git/commits/a2964c3e8534ec199585df3489081102cabe25e4", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7AD5:B4DA:503FF9:61E574:5D77A67C", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"a2964c3e8534ec199585df3489081102cabe25e4\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NTY3ODY3OmEyOTY0YzNlODUzNGVjMTk5NTg1ZGYzNDg5MDgxMTAyY2FiZTI1ZTQ=\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/a2964c3e8534ec199585df3489081102cabe25e4\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/a2964c3e8534ec199585df3489081102cabe25e4\",\n \"author\": {\n \"name\": \"forkOwner\",\n \"email\": \"53494188+forkOwner@users.noreply.github.com\",\n \"date\": \"2019-09-10T13:34:53Z\"\n },\n \"committer\": {\n \"name\": \"forkOwner\",\n \"email\": \"53494188+forkOwner@users.noreply.github.com\",\n \"date\": \"2019-09-10T13:34:53Z\"\n },\n \"tree\": {\n \"sha\": \"12fbacfbb396749a45b22c0ab520b5927da6488d\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/12fbacfbb396749a45b22c0ab520b5927da6488d\"\n },\n \"message\": \"Updating “forkOwner/repo/posts/1970-01-01-first-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"948f910b887b9dad4059199a0f0e4ca06b866b86\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/948f910b887b9dad4059199a0f0e4ca06b866b86\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/948f910b887b9dad4059199a0f0e4ca06b866b86\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "status": 201 + }, + { + "body": "{\"sha\":\"a2964c3e8534ec199585df3489081102cabe25e4\",\"force\":false}", + "method": "PATCH", + "url": "/repos/forkOwner/repo/git/refs/meta/_netlify_cms?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:34:54 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4912", + "X-RateLimit-Reset": "1568126016", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"a3065f2b0a84492e7d6e2a1b87003710\"", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7AD6:244EB:1797536:1CA5221:5D77A67D", + "content-length": "494", + "connection": "keep-alive" + }, + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NTY3ODY3OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"a2964c3e8534ec199585df3489081102cabe25e4\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/a2964c3e8534ec199585df3489081102cabe25e4\"\n }\n}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"unpublishedBranchFile\",\"variables\":{\"headOwner\":\"forkOwner\",\"headRepoName\":\"repo\",\"headExpression\":\"cms/forkOwner/repo/posts/1970-01-01-first-title:content/posts/1970-01-01-first-title.md\",\"baseOwner\":\"owner\",\"baseRepoName\":\"repo\",\"baseExpression\":\"master:content/posts/1970-01-01-first-title.md\"},\"query\":\"query unpublishedBranchFile($headOwner: String!, $headRepoName: String!, $headExpression: String!, $baseOwner: String!, $baseRepoName: String!, $baseExpression: String!) {\\n head: repository(owner: $headOwner, name: $headRepoName) {\\n ...RepositoryParts\\n object(expression: $headExpression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n base: repository(owner: $baseOwner, name: $baseRepoName) {\\n ...RepositoryParts\\n object(expression: $baseExpression) {\\n ... on Blob {\\n id\\n oid\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:34:55 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4920", + "X-RateLimit-Reset": "1568126025", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7AD8:B4E0:1645625:1B19F6A:5D77A67E", + "content-length": "496", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"head\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1Njc4Njc=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzU2Nzg2NzphMDQxMjQ1ODE0ODkyZTNmNzNmNjNjYTU0MzMzZmRhNjQ5YjdmYzBi\",\"text\":\"---\\ntemplate: post\\ntitle: first title\\ndraft: true\\ndate: 1970-01-01T00:00:00.000Z\\ndescription: first description\\ncategory: first category\\ntags:\\n - tag1\\n---\\nfirst body\\n\",\"is_binary\":false,\"__typename\":\"Blob\"}},\"base\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"object\":null}}}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/forkOwner/repo/git/refs/heads/cms?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:34:56 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4911", + "X-RateLimit-Reset": "1568126016", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"4c70416c52d05d7baf28623e1cfe5a2c\"", + "Last-Modified": "Tue, 10 Sep 2019 13:31:48 GMT", + "X-Poll-Interval": "300", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7ADA:244E1:4FE5CA:6056E7:5D77A680", + "content-length": "788", + "connection": "keep-alive" + }, + "response": "[\n {\n \"ref\": \"refs/heads/cms/forkOwner/repo/posts/1970-01-01-first-title\",\n \"node_id\": \"MDM6UmVmMjA3NTY3ODY3OmNtcy9lcmV6cm9rYWgtdGVzdC9nYXRzYnktbmV0bGlmeS1jbXMtYXdzLTE1NjgxMjIwODcxNzQtNjVyMXMwa3U2Ym8vcG9zdHMvMTk3MC0wMS0wMS1maXJzdC10aXRsZQ==\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/refs/heads/cms/forkOwner/repo/posts/1970-01-01-first-title\",\n \"object\": {\n \"sha\": \"e1034178e4bee2579beab89a9954895257864a24\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/e1034178e4bee2579beab89a9954895257864a24\"\n }\n }\n]\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"unpublishedBranchFile\",\"variables\":{\"headOwner\":\"forkOwner\",\"headRepoName\":\"repo\",\"headExpression\":\"cms/forkOwner/repo/posts/1970-01-01-first-title:content/posts/1970-01-01-first-title.md\",\"baseOwner\":\"owner\",\"baseRepoName\":\"repo\",\"baseExpression\":\"master:content/posts/1970-01-01-first-title.md\"},\"query\":\"query unpublishedBranchFile($headOwner: String!, $headRepoName: String!, $headExpression: String!, $baseOwner: String!, $baseRepoName: String!, $baseExpression: String!) {\\n head: repository(owner: $headOwner, name: $headRepoName) {\\n ...RepositoryParts\\n object(expression: $headExpression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n base: repository(owner: $baseOwner, name: $baseRepoName) {\\n ...RepositoryParts\\n object(expression: $baseExpression) {\\n ... on Blob {\\n id\\n oid\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:34:57 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4919", + "X-RateLimit-Reset": "1568126025", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7ADC:15110:180E44D:1D3744D:5D77A681", + "content-length": "496", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"head\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1Njc4Njc=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzU2Nzg2NzphMDQxMjQ1ODE0ODkyZTNmNzNmNjNjYTU0MzMzZmRhNjQ5YjdmYzBi\",\"text\":\"---\\ntemplate: post\\ntitle: first title\\ndraft: true\\ndate: 1970-01-01T00:00:00.000Z\\ndescription: first description\\ncategory: first category\\ntags:\\n - tag1\\n---\\nfirst body\\n\",\"is_binary\":false,\"__typename\":\"Blob\"}},\"base\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"object\":null}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"repository\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\"},\"query\":\"query repository($owner: String!, $name: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:34:58 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4918", + "X-RateLimit-Reset": "1568126025", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7ADE:9D20:10F98D7:14C0E11:5D77A682", + "content-length": "92", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\"}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"createPullRequest\",\"variables\":{\"createPullRequestInput\":{\"baseRefName\":\"master\",\"body\":\"Automatically generated by Netlify CMS\",\"title\":\"Create Post “1970-01-01-first-title”\",\"headRefName\":\"forkOwner:cms/forkOwner/repo/posts/1970-01-01-first-title\",\"repositoryId\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\"}},\"query\":\"mutation createPullRequest($createPullRequestInput: CreatePullRequestInput!) {\\n createPullRequest(input: $createPullRequestInput) {\\n clientMutationId\\n pullRequest {\\n ...PullRequestParts\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment PullRequestParts on PullRequest {\\n id\\n baseRefName\\n body\\n headRefName\\n headRefOid\\n number\\n state\\n title\\n merged_at: mergedAt\\n repository {\\n ...RepositoryParts\\n __typename\\n }\\n __typename\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:35:00 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4917", + "X-RateLimit-Reset": "1568126025", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7AE1:2B0F:19329E:1ED96F:5D77A683", + "content-length": "595", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"createPullRequest\":{\"clientMutationId\":null,\"pullRequest\":{\"id\":\"MDExOlB1bGxSZXF1ZXN0MzE1OTk3OTEx\",\"baseRefName\":\"master\",\"body\":\"Automatically generated by Netlify CMS\",\"headRefName\":\"cms/forkOwner/repo/posts/1970-01-01-first-title\",\"headRefOid\":\"e1034178e4bee2579beab89a9954895257864a24\",\"number\":6,\"state\":\"OPEN\",\"title\":\"Create Post “1970-01-01-first-title”\",\"merged_at\":null,\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\"},\"__typename\":\"PullRequest\"},\"__typename\":\"CreatePullRequestPayload\"}}}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/forkOwner/repo/git/refs/meta/_netlify_cms?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:35:01 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4910", + "X-RateLimit-Reset": "1568126016", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"a3065f2b0a84492e7d6e2a1b87003710\"", + "Last-Modified": "Tue, 10 Sep 2019 13:31:48 GMT", + "X-Poll-Interval": "300", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7AE2:1510E:A8A189:CD6779:5D77A684", + "content-length": "494", + "connection": "keep-alive" + }, + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NTY3ODY3OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"a2964c3e8534ec199585df3489081102cabe25e4\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/a2964c3e8534ec199585df3489081102cabe25e4\"\n }\n}\n", + "status": 200 + }, + { + "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjYsImhlYWQiOnsic2hhIjoiZTEwMzQxNzhlNGJlZTI1NzliZWFiODlhOTk1NDg5NTI1Nzg2NGEyNCJ9fSwidXNlciI6ImZvcmtPd25lciIsInN0YXR1cyI6InBlbmRpbmdfcmV2aWV3IiwiYnJhbmNoIjoiY21zL2ZvcmtPd25lci9yZXBvL3Bvc3RzLzE5NzAtMDEtMDEtZmlyc3QtdGl0bGUiLCJjb2xsZWN0aW9uIjoicG9zdHMiLCJjb21taXRNZXNzYWdlIjoiQ3JlYXRlIFBvc3Qg4oCcMTk3MC0wMS0wMS1maXJzdC10aXRsZeKAnSIsInRpdGxlIjoiZmlyc3QgdGl0bGUiLCJkZXNjcmlwdGlvbiI6ImZpcnN0IGRlc2NyaXB0aW9uIiwib2JqZWN0cyI6eyJlbnRyeSI6eyJwYXRoIjoiY29udGVudC9wb3N0cy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxlLm1kIiwic2hhIjoiYTA0MTI0NTgxNDg5MmUzZjczZjYzY2E1NDMzM2ZkYTY0OWI3ZmMwYiJ9LCJmaWxlcyI6W119LCJ0aW1lU3RhbXAiOiIxOTcwLTAxLTAxVDAwOjAwOjAwLjMwMFoifQ==\",\"encoding\":\"base64\"}", + "method": "POST", + "url": "/repos/forkOwner/repo/git/blobs?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:35:02 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "212", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4909", + "X-RateLimit-Reset": "1568126016", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"537a358ead6b7afdfccb0c1ece33514e\"", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/forkOwner/repo/git/blobs/7606b797e8f7feec10b2d51d4d2d24dffe0a45ec", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7AE4:1510F:11D988C:15A7B4E:5D77A685", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"7606b797e8f7feec10b2d51d4d2d24dffe0a45ec\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/7606b797e8f7feec10b2d51d4d2d24dffe0a45ec\"\n}\n", + "status": 201 + }, + { + "body": "{\"operationName\":\"tree\",\"variables\":{\"owner\":\"forkOwner\",\"name\":\"repo\",\"sha\":\"a2964c3e8534ec199585df3489081102cabe25e4\"},\"query\":\"query tree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n tree: object(oid: $sha) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:35:03 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4916", + "X-RateLimit-Reset": "1568126025", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7AE8:244DF:19B4C1:1F460B:5D77A686", + "content-length": "260", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1Njc4Njc=\",\"__typename\":\"Repository\",\"tree\":{\"id\":\"MDY6Q29tbWl0MjA3NTY3ODY3OmEyOTY0YzNlODUzNGVjMTk5NTg1ZGYzNDg5MDgxMTAyY2FiZTI1ZTQ=\",\"sha\":\"a2964c3e8534ec199585df3489081102cabe25e4\",\"__typename\":\"Commit\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"commitTree\",\"variables\":{\"owner\":\"forkOwner\",\"name\":\"repo\",\"sha\":\"a2964c3e8534ec199585df3489081102cabe25e4\"},\"query\":\"query commitTree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n commit: object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n tree {\\n ...ObjectParts\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:35:03 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4915", + "X-RateLimit-Reset": "1568126025", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7AE6:9D21:16CCDAE:1BC4C1A:5D77A686", + "content-length": "685", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1Njc4Njc=\",\"__typename\":\"Repository\",\"commit\":{\"id\":\"MDY6Q29tbWl0MjA3NTY3ODY3OmEyOTY0YzNlODUzNGVjMTk5NTg1ZGYzNDg5MDgxMTAyY2FiZTI1ZTQ=\",\"sha\":\"a2964c3e8534ec199585df3489081102cabe25e4\",\"__typename\":\"Commit\",\"tree\":{\"id\":\"MDQ6VHJlZTIwNzU2Nzg2NzoxMmZiYWNmYmIzOTY3NDlhNDViMjJjMGFiNTIwYjU5MjdkYTY0ODhk\",\"sha\":\"12fbacfbb396749a45b22c0ab520b5927da6488d\",\"__typename\":\"Tree\",\"entries\":[{\"path\":\"README.md\",\"sha\":\"98787d1bd948850444433e91a43091a76c4eb455\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"forkOwner\",\"sha\":\"a03cc9e4fd5f46ff1a1383b22aa4edc809590222\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"}]}}}}}\n", + "status": 200 + }, + { + "body": "{\"base_tree\":\"a2964c3e8534ec199585df3489081102cabe25e4\",\"tree\":[{\"path\":\"forkOwner/repo/posts/1970-01-01-first-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"7606b797e8f7feec10b2d51d4d2d24dffe0a45ec\"}]}", + "method": "POST", + "url": "/repos/forkOwner/repo/git/trees?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:35:04 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "878", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4908", + "X-RateLimit-Reset": "1568126016", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"d6d87c90b677ab4b627b4220cc20078e\"", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/forkOwner/repo/git/trees/b4ed25c6c0dd1bfce4e0ddddcaca2fdd959f0d9c", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7AEA:244EB:179853B:1CA663A:5D77A687", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"b4ed25c6c0dd1bfce4e0ddddcaca2fdd959f0d9c\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/b4ed25c6c0dd1bfce4e0ddddcaca2fdd959f0d9c\",\n \"tree\": [\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n },\n {\n \"path\": \"forkOwner\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"78015d33ac0f6fdc5d33e7f6fb26730e8ecc94ef\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/78015d33ac0f6fdc5d33e7f6fb26730e8ecc94ef\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"message\":\"Updating “forkOwner/repo/posts/1970-01-01-first-title” metadata\",\"tree\":\"b4ed25c6c0dd1bfce4e0ddddcaca2fdd959f0d9c\",\"parents\":[\"a2964c3e8534ec199585df3489081102cabe25e4\"]}", + "method": "POST", + "url": "/repos/forkOwner/repo/git/commits?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:35:05 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "1641", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4907", + "X-RateLimit-Reset": "1568126016", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"d82e13fb5b2e636b7be9bd7d3edc66ca\"", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/forkOwner/repo/git/commits/79d3701b92faec04d3e84cdd30e7a72ba216e2ed", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7AED:2B24:17515C2:1C5787E:5D77A688", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"79d3701b92faec04d3e84cdd30e7a72ba216e2ed\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NTY3ODY3Ojc5ZDM3MDFiOTJmYWVjMDRkM2U4NGNkZDMwZTdhNzJiYTIxNmUyZWQ=\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/79d3701b92faec04d3e84cdd30e7a72ba216e2ed\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/79d3701b92faec04d3e84cdd30e7a72ba216e2ed\",\n \"author\": {\n \"name\": \"forkOwner\",\n \"email\": \"53494188+forkOwner@users.noreply.github.com\",\n \"date\": \"2019-09-10T13:35:05Z\"\n },\n \"committer\": {\n \"name\": \"forkOwner\",\n \"email\": \"53494188+forkOwner@users.noreply.github.com\",\n \"date\": \"2019-09-10T13:35:05Z\"\n },\n \"tree\": {\n \"sha\": \"b4ed25c6c0dd1bfce4e0ddddcaca2fdd959f0d9c\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/b4ed25c6c0dd1bfce4e0ddddcaca2fdd959f0d9c\"\n },\n \"message\": \"Updating “forkOwner/repo/posts/1970-01-01-first-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"a2964c3e8534ec199585df3489081102cabe25e4\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/a2964c3e8534ec199585df3489081102cabe25e4\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/a2964c3e8534ec199585df3489081102cabe25e4\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "status": 201 + }, + { + "body": "{\"sha\":\"79d3701b92faec04d3e84cdd30e7a72ba216e2ed\",\"force\":false}", + "method": "PATCH", + "url": "/repos/forkOwner/repo/git/refs/meta/_netlify_cms?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:35:06 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4906", + "X-RateLimit-Reset": "1568126016", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"992356b5842a48142205593759f8d157\"", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7AEE:3ED6F:1A7FF:23409:5D77A689", + "content-length": "494", + "connection": "keep-alive" + }, + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NTY3ODY3OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"79d3701b92faec04d3e84cdd30e7a72ba216e2ed\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/79d3701b92faec04d3e84cdd30e7a72ba216e2ed\"\n }\n}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"closePullRequestAndDeleteBranch\",\"variables\":{\"deleteRefInput\":{\"refId\":\"MDM6UmVmMjA3NTY3ODY3OmNtcy9lcmV6cm9rYWgtdGVzdC9nYXRzYnktbmV0bGlmeS1jbXMtYXdzLTE1NjgxMjIwODcxNzQtNjVyMXMwa3U2Ym8vcG9zdHMvMTk3MC0wMS0wMS1maXJzdC10aXRsZQ==\"},\"closePullRequestInput\":{\"pullRequestId\":\"MDExOlB1bGxSZXF1ZXN0MzE1OTk3OTEx\"}},\"query\":\"mutation closePullRequestAndDeleteBranch($closePullRequestInput: ClosePullRequestInput!, $deleteRefInput: DeleteRefInput!) {\\n closePullRequest(input: $closePullRequestInput) {\\n clientMutationId\\n pullRequest {\\n ...PullRequestParts\\n __typename\\n }\\n __typename\\n }\\n deleteRef(input: $deleteRefInput) {\\n clientMutationId\\n __typename\\n }\\n}\\n\\nfragment PullRequestParts on PullRequest {\\n id\\n baseRefName\\n body\\n headRefName\\n headRefOid\\n number\\n state\\n title\\n merged_at: mergedAt\\n repository {\\n ...RepositoryParts\\n __typename\\n }\\n __typename\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:35:08 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4914", + "X-RateLimit-Reset": "1568126025", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7AF1:B4E0:1646D03:1B1BB66:5D77A68B", + "content-length": "665", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"closePullRequest\":{\"clientMutationId\":null,\"pullRequest\":{\"id\":\"MDExOlB1bGxSZXF1ZXN0MzE1OTk3OTEx\",\"baseRefName\":\"master\",\"body\":\"Automatically generated by Netlify CMS\",\"headRefName\":\"cms/forkOwner/repo/posts/1970-01-01-first-title\",\"headRefOid\":\"e1034178e4bee2579beab89a9954895257864a24\",\"number\":6,\"state\":\"CLOSED\",\"title\":\"Create Post “1970-01-01-first-title”\",\"merged_at\":null,\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\"},\"__typename\":\"PullRequest\"},\"__typename\":\"ClosePullRequestPayload\"},\"deleteRef\":{\"clientMutationId\":null,\"__typename\":\"DeleteRefPayload\"}}}\n", + "status": 200 + } +] \ No newline at end of file diff --git a/cypress/fixtures/Github Backend Editorial Workflow - GraphQL API - Open Authoring__can publish an editorial workflow entry.json b/cypress/fixtures/Github Backend Editorial Workflow - GraphQL API - Open Authoring__can publish an editorial workflow entry.json new file mode 100644 index 00000000..e81512b5 --- /dev/null +++ b/cypress/fixtures/Github Backend Editorial Workflow - GraphQL API - Open Authoring__can publish an editorial workflow entry.json @@ -0,0 +1,1633 @@ +[ + { + "method": "GET", + "url": "/user", + "headers": { + "Date": "Tue, 10 Sep 2019 13:30:45 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": "1568125713", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"fb606f875be1d23b690ea5f5e26b9fe9\"", + "Last-Modified": "Wed, 28 Aug 2019 04:48:54 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B10:9D1E:490EAB:595FC4:5D77A584", + "content-length": "1321", + "connection": "keep-alive" + }, + "response": "{\"login\":\"owner\",\"id\":1,\"avatar_url\":\"https://avatars1.githubusercontent.com/u/7892489?v=4\",\"name\":\"owner\"}", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/collaborators/owner/permission", + "headers": { + "Date": "Tue, 10 Sep 2019 13:30:45 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": "1568125713", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"254416b9fc40a4c5acc82d271a9b493b\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B12:9D21:16B3F62:1BA5B83:5D77A585", + "content-length": "1071", + "connection": "keep-alive" + }, + "response": "{\n \"permission\": \"admin\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n}\n", + "status": 200 + }, + { + "body": "{\"operationName\":null,\"variables\":{},\"query\":\"{\\n viewer {\\n id\\n avatar_url: avatarUrl\\n name\\n login\\n __typename\\n }\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:30:46 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4917", + "X-RateLimit-Reset": "1568125723", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7B14:9D21:16B404C:1BA5CA3:5D77A585", + "content-length": "179", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"viewer\":{\"id\":\"MDQ6VXNlcjI2NzYwNTcx\",\"avatar_url\":\"https://avatars1.githubusercontent.com/u/7892489?v=4\",\"name\":\"owner\",\"login\":\"owner\",\"__typename\":\"User\"}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"repoPermission\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\"},\"query\":\"query repoPermission($owner: String!, $name: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n viewerPermission\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:30:46 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4916", + "X-RateLimit-Reset": "1568125723", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7B16:1510C:17212C:1C4981:5D77A586", + "content-length": "119", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"viewerPermission\":\"ADMIN\"}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"files\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"master:content/posts\"},\"query\":\"query files($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...FileEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment FileEntryParts on TreeEntry {\\n name\\n sha: oid\\n type\\n blob: object {\\n ... on Blob {\\n size: byteSize\\n __typename\\n }\\n __typename\\n }\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:30:47 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4915", + "X-RateLimit-Reset": "1568125723", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7B18:3ED76:45F633:55BAB1:5D77A587", + "content-length": "1218", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6VHJlZTIwNzU2NzAxMTozNDg5MjU3NWUyMTZjMDZlNzU3MDkzZjAzNmJkOGUwNTdjNzhhNTJm\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"__typename\":\"Tree\",\"entries\":[{\"name\":\"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\"sha\":\"6d51a38aed7139d2117724b1e307657b6ff2d043\",\"type\":\"blob\",\"blob\":{\"size\":1707,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\"sha\":\"d0582dd245a3f408fb3fe2333bf01400007476e9\",\"type\":\"blob\",\"blob\":{\"size\":2565,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2016-02-02---A-Brief-History-of-Typography.md\",\"sha\":\"0eea554365f002d0f1572af9a58522d335a794d5\",\"type\":\"blob\",\"blob\":{\"size\":2786,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2017-18-08---The-Birth-of-Movable-Type.md\",\"sha\":\"44f78c474d04273185a95821426f75affc9b0044\",\"type\":\"blob\",\"blob\":{\"size\":16071,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\"sha\":\"a532f0a9445cdf90a19c6812cff89d1674991774\",\"type\":\"blob\",\"blob\":{\"size\":7465,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"}]}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"files\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"master:static/media\"},\"query\":\"query files($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...FileEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment FileEntryParts on TreeEntry {\\n name\\n sha: oid\\n type\\n blob: object {\\n ... on Blob {\\n size: byteSize\\n __typename\\n }\\n __typename\\n }\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:30:47 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4914", + "X-RateLimit-Reset": "1568125723", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7B1A:B4E0:162BD10:1AFA9D9:5D77A587", + "content-length": "1837", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6VHJlZTIwNzU2NzAxMTo5Yjc2OTliNTdlMTQzMDkxMGRiODI4MzFkY2Y2YjhhMWQxZGJkYWM5\",\"sha\":\"9b7699b57e1430910db82831dcf6b8a1d1dbdac9\",\"__typename\":\"Tree\",\"entries\":[{\"name\":\"42-line-bible.jpg\",\"sha\":\"41c8d12f9ca5864beb827c381fbeff935209d5fb\",\"type\":\"blob\",\"blob\":{\"size\":671242,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"gutenberg.jpg\",\"sha\":\"04315e355873ea5d358d9c371c39a6845c1ae4ae\",\"type\":\"blob\",\"blob\":{\"size\":155002,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-0.jpg\",\"sha\":\"b70a1b64fd4fa9635823231a0ba92c6dc9393f16\",\"type\":\"blob\",\"blob\":{\"size\":660287,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-1.jpg\",\"sha\":\"05eedae372b829c62501ac751b2d42dcc432541b\",\"type\":\"blob\",\"blob\":{\"size\":392411,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-2.jpg\",\"sha\":\"53845ed35faf8939bea242bb85eda7c324b1be0b\",\"type\":\"blob\",\"blob\":{\"size\":99147,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-3.jpg\",\"sha\":\"8b2339d97069e826fae1f156212e40ae458454e3\",\"type\":\"blob\",\"blob\":{\"size\":358022,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-4.jpg\",\"sha\":\"a8f6f21253a67a4284b5a953b2fe633d44152ecd\",\"type\":\"blob\",\"blob\":{\"size\":114837,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"movable-type.jpg\",\"sha\":\"57b4e925ea00bd8e195cf4418eb6eb2995ea5f10\",\"type\":\"blob\",\"blob\":{\"size\":559028,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"printing-press.jpg\",\"sha\":\"d27f56c9437d9becd2f56cc627c9322c2f1f61f6\",\"type\":\"blob\",\"blob\":{\"size\":279283,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"type-through-time.jpg\",\"sha\":\"3f08366a805c51a60ec5056010f22de4ba08abaa\",\"type\":\"blob\",\"blob\":{\"size\":117689,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"}]}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"6d51a38aed7139d2117724b1e307657b6ff2d043\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:30:48 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4913", + "X-RateLimit-Reset": "1568125723", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7B1C:B4DE:1186B2D:1553C1A:5D77A587", + "content-length": "1973", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzU2NzAxMTo2ZDUxYTM4YWVkNzEzOWQyMTE3NzI0YjFlMzA3NjU3YjZmZjJkMDQz\",\"text\":\"---\\ntitle: Perfecting the Art of Perfection\\ndate: \\\"2016-09-01T23:46:37.121Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Design Inspiration\\\"\\ntags:\\n - \\\"Handwriting\\\"\\n - \\\"Learning to write\\\"\\ndescription: \\\"Quisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\\\"\\ncanonical: ''\\n---\\n\\nQuisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\\n\\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-2.jpg)\\n\\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. \\n\\nPraesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"d0582dd245a3f408fb3fe2333bf01400007476e9\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:30:48 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4912", + "X-RateLimit-Reset": "1568125723", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7B20:244EB:177D506:1C852E0:5D77A587", + "content-length": "2866", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzU2NzAxMTpkMDU4MmRkMjQ1YTNmNDA4ZmIzZmUyMzMzYmYwMTQwMDAwNzQ3NmU5\",\"text\":\"---\\ntitle: The Origins of Social Stationery Lettering\\ndate: \\\"2016-12-01T22:40:32.169Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Design Culture\\\"\\ndescription: \\\"Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante.\\\"\\ncanonical: ''\\n---\\n\\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \\n\\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\\n\\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-3.jpg)\\n\\n## Header Level 2\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \\n\\n
\\n\\t
\\n\\t\\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\\n\\t\\t
\\n\\t\\t\\t— Aliquam tincidunt mauris eu risus.\\n\\t\\t
\\n\\t
\\n
\\n\\n### Header Level 3\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\\n\\n```css\\n#header h1 a {\\n display: block;\\n width: 300px;\\n height: 80px;\\n}\\n```\\n\\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"0eea554365f002d0f1572af9a58522d335a794d5\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:30:48 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4911", + "X-RateLimit-Reset": "1568125723", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7B38:244EB:177D5CB:1C853CF:5D77A588", + "content-length": "3102", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzU2NzAxMTowZWVhNTU0MzY1ZjAwMmQwZjE1NzJhZjlhNTg1MjJkMzM1YTc5NGQ1\",\"text\":\"---\\ntitle: \\\"A Brief History of Typography\\\"\\ndate: \\\"2016-02-02T22:40:32.169Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Design Inspiration\\\"\\ntags:\\n - \\\"Linotype\\\"\\n - \\\"Monotype\\\"\\n - \\\"History of typography\\\"\\n - \\\"Helvetica\\\"\\ndescription: \\\"Morbi in sem quis dui placerat ornare. Pellentesque odio nisi, euismod in, pharetra a, ultricies in, diam. Sed arcu. Cras consequat.\\\"\\ncanonical: ''\\n---\\n\\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \\n\\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\\n\\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-0.jpg)\\n\\n## Header Level 2\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \\n\\n
\\n\\t
\\n\\t\\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\\n\\t\\t
\\n\\t\\t\\t— Aliquam tincidunt mauris eu risus.\\n\\t\\t
\\n\\t
\\n
\\n\\n### Header Level 3\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\\n\\n```css\\n#header h1 a {\\n display: block;\\n width: 300px;\\n height: 80px;\\n}\\n```\\n\\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"a532f0a9445cdf90a19c6812cff89d1674991774\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:30:49 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4910", + "X-RateLimit-Reset": "1568125723", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7B3A:244E4:AA6F5D:CE70F7:5D77A589", + "content-length": "7803", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzU2NzAxMTphNTMyZjBhOTQ0NWNkZjkwYTE5YzY4MTJjZmY4OWQxNjc0OTkxNzc0\",\"text\":\"---\\ntitle: Humane Typography in the Digital Age\\ndate: \\\"2017-08-19T22:40:32.169Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Typography\\\"\\ntags:\\n - \\\"Design\\\"\\n - \\\"Typography\\\"\\n - \\\"Web Development\\\"\\ndescription: \\\"An Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\\\"\\ncanonical: ''\\n---\\n\\n- [The first transition](#the-first-transition)\\n- [The digital age](#the-digital-age)\\n- [Loss of humanity through transitions](#loss-of-humanity-through-transitions)\\n- [Chasing perfection](#chasing-perfection)\\n\\nAn Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\\n\\nThe typography of this industrial age was no longer handcrafted. Mass production and profit became more important. Quantity mattered more than the quality. The books and printed works in general lost a part of its humanity. The typefaces were not produced by craftsmen anymore. It was the machines printing and tying the books together now. The craftsmen had to let go of their craft and became a cog in the process. An extension of the industrial machine.\\n\\nBut the victory of the industrialism didn’t mean that the craftsmen were completely extinct. The two worlds continued to coexist independently. Each recognising the good in the other — the power of industrialism and the humanity of craftsmanship. This was the second transition that would strip typography of a part of its humanity. We have to go 500 years back in time to meet the first one.\\n\\n## The first transition\\n\\nA similar conflict emerged after the invention of the first printing press in Europe. Johannes Gutenberg invented movable type and used it to produce different compositions. His workshop could print up to 240 impressions per hour. Until then, the books were being copied by hand. All the books were handwritten and decorated with hand drawn ornaments and figures. A process of copying a book was long but each book, even a copy, was a work of art.\\n\\nThe first printed books were, at first, perceived as inferior to the handwritten ones. They were smaller and cheaper to produce. Movable type provided the printers with flexibility that allowed them to print books in languages other than Latin. Gill describes the transition to industrialism as something that people needed and wanted. Something similar happened after the first printed books emerged. People wanted books in a language they understood and they wanted books they could take with them. They were hungry for knowledge and printed books satisfied this hunger.\\n\\n![42-line-bible.jpg](/media/42-line-bible.jpg)\\n\\n*The 42–Line Bible, printed by Gutenberg.*\\n\\nBut, through this transition, the book lost a large part of its humanity. The machine took over most of the process but craftsmanship was still a part of it. The typefaces were cut manually by the first punch cutters. The paper was made by hand. The illustrations and ornaments were still being hand drawn. These were the remains of the craftsmanship that went almost extinct in the times of Eric Gill.\\n\\n## The digital age\\n\\nThe first transition took away a large part of humanity from written communication. Industrialisation, the second transition described by Eric Gill, took away most of what was left. But it’s the third transition that stripped it naked. Typefaces are faceless these days. They’re just fonts on our computers. Hardly anyone knows their stories. Hardly anyone cares. Flicking through thousands of typefaces and finding the “right one” is a matter of minutes.\\n\\n> In the new computer age the proliferation of typefaces and type manipulations represents a new level of visual pollution threatening our culture. Out of thousands of typefaces, all we need are a few basic ones, and trash the rest.\\n>\\n— Massimo Vignelli\\n\\nTypography is not about typefaces. It’s not about what looks best, it’s about what feels right. What communicates the message best. Typography, in its essence, is about the message. “Typographical design should perform optically what the speaker creates through voice and gesture of his thoughts.”, as El Lissitzky, a famous Russian typographer, put it.\\n\\n## Loss of humanity through transitions\\n\\nEach transition took away a part of humanity from written language. Handwritten books being the most humane form and the digital typefaces being the least. Overuse of Helvetica is a good example. Messages are being told in a typeface just because it’s a safe option. It’s always there. Everyone knows it but yet, nobody knows it. Stop someone on the street and ask him what Helvetica is? Ask a designer the same question. Ask him where it came from, when, why and who designed it. Most of them will fail to answer these questions. Most of them used it in their precious projects but they still don’t spot it in the street.\\n\\n
\\n\\t
\\n\\t\\t

Knowledge of the quality of a typeface is of the greatest importance for the functional, aesthetic and psychological effect.

\\n\\t\\t
\\n\\t\\t\\t— Josef Mueller-Brockmann\\n\\t\\t
\\n\\t
\\n
\\n\\nTypefaces don’t look handmade these days. And that’s all right. They don’t have to. Industrialism took that away from them and we’re fine with it. We’ve traded that part of humanity for a process that produces more books that are easier to read. That can’t be bad. And it isn’t.\\n\\n> Humane typography will often be comparatively rough and even uncouth; but while a certain uncouthness does not seriously matter in humane works, uncouthness has no excuse whatever in the productions of the machine.\\n>\\n> — Eric Gill\\n\\nWe’ve come close to “perfection” in the last five centuries. The letters are crisp and without rough edges. We print our compositions with high–precision printers on a high quality, machine made paper.\\n\\n![type-through-time.jpg](/media/type-through-time.jpg)\\n\\n*Type through 5 centuries.*\\n\\nWe lost a part of ourselves because of this chase after perfection. We forgot about the craftsmanship along the way. And the worst part is that we don’t care. The transition to the digital age made that clear. We choose typefaces like clueless zombies. There’s no meaning in our work. Type sizes, leading, margins… It’s all just a few clicks or lines of code. The message isn’t important anymore. There’s no more “why” behind the “what”.\\n\\n## Chasing perfection\\n\\nHuman beings aren’t perfect. Perfection is something that will always elude us. There will always be a small part of humanity in everything we do. No matter how small that part, we should make sure that it transcends the limits of the medium. We have to think about the message first. What typeface should we use and why? Does the typeface match the message and what we want to communicate with it? What will be the leading and why? Will there be more typefaces in our design? On what ground will they be combined? What makes our design unique and why? This is the part of humanity that is left in typography. It might be the last part. Are we really going to give it up?\\n\\n*Originally published by [Matej Latin](http://matejlatin.co.uk/) on [Medium](https://medium.com/design-notes/humane-typography-in-the-digital-age-9bd5c16199bd?ref=webdesignernews.com#.lygo82z0x).*\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"44f78c474d04273185a95821426f75affc9b0044\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:30:50 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4909", + "X-RateLimit-Reset": "1568125723", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7B3C:244EB:177D8C6:1C85793:5D77A58A", + "content-length": "16478", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzU2NzAxMTo0NGY3OGM0NzRkMDQyNzMxODVhOTU4MjE0MjZmNzVhZmZjOWIwMDQ0\",\"text\":\"---\\ntitle: \\\"Johannes Gutenberg: The Birth of Movable Type\\\"\\ndate: \\\"2017-08-18T22:12:03.284Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Typography\\\"\\ntags:\\n - \\\"Open source\\\"\\n - \\\"Gatsby\\\"\\n - \\\"Typography\\\"\\ndescription: \\\"German inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\\\"\\ncanonical: ''\\n---\\n\\nGerman inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\\n\\n**Johannes Gensfleisch zur Laden zum Gutenberg** (c. 1398 – 1468) was a German blacksmith, goldsmith, printer, and publisher who introduced printing to Europe. His invention of mechanical movable type printing started the Printing Revolution and is widely regarded as the most important event of the modern period. It played a key role in the development of the Renaissance, Reformation, the Age of Enlightenment, and the Scientific revolution and laid the material basis for the modern knowledge-based economy and the spread of learning to the masses.\\n\\n
\\n\\t\\\"Gutenberg\\\"\\n\\t
Johannes Gutenberg
\\n
\\n\\nWith his invention of the printing press, Gutenberg was the first European to use movable type printing, in around 1439. Among his many contributions to printing are: the invention of a process for mass-producing movable type; the use of oil-based ink; and the use of a wooden printing press similar to the agricultural screw presses of the period. His truly epochal invention was the combination of these elements into a practical system that allowed the mass production of printed books and was economically viable for printers and readers alike. Gutenberg's method for making type is traditionally considered to have included a type metal alloy and a hand mould for casting type. The alloy was a mixture of lead, tin, and antimony that melted at a relatively low temperature for faster and more economical casting, cast well, and created a durable type.\\n\\nIn Renaissance Europe, the arrival of mechanical movable type printing introduced the era of mass communication which permanently altered the structure of society. The relatively unrestricted circulation of information — including revolutionary ideas — transcended borders, captured the masses in the Reformation and threatened the power of political and religious authorities; the sharp increase in literacy broke the monopoly of the literate elite on education and learning and bolstered the emerging middle class. Across Europe, the increasing cultural self-awareness of its people led to the rise of proto-nationalism, accelerated by the flowering of the European vernacular languages to the detriment of Latin's status as lingua franca. In the 19th century, the replacement of the hand-operated Gutenberg-style press by steam-powered rotary presses allowed printing on an industrial scale, while Western-style printing was adopted all over the world, becoming practically the sole medium for modern bulk printing.\\n\\nThe use of movable type was a marked improvement on the handwritten manuscript, which was the existing method of book production in Europe, and upon woodblock printing, and revolutionized European book-making. Gutenberg's printing technology spread rapidly throughout Europe and later the world.\\n\\nHis major work, the Gutenberg Bible (also known as the 42-line Bible), has been acclaimed for its high aesthetic and technical quality.\\n\\n## Printing Press\\n\\nAround 1439, Gutenberg was involved in a financial misadventure making polished metal mirrors (which were believed to capture holy light from religious relics) for sale to pilgrims to Aachen: in 1439 the city was planning to exhibit its collection of relics from Emperor Charlemagne but the event was delayed by one year due to a severe flood and the capital already spent could not be repaid. When the question of satisfying the investors came up, Gutenberg is said to have promised to share a “secret”. It has been widely speculated that this secret may have been the idea of printing with movable type. Also around 1439–1440, the Dutch Laurens Janszoon Coster came up with the idea of printing. Legend has it that the idea came to him “like a ray of light”.\\n\\n
\\n\\t\\\"Early\\n\\t
Early wooden printing press as depicted in 1568.
\\n
\\n\\nUntil at least 1444 he lived in Strasbourg, most likely in the St. Arbogast parish. It was in Strasbourg in 1440 that Gutenberg is said to have perfected and unveiled the secret of printing based on his research, mysteriously entitled Kunst und Aventur (art and enterprise). It is not clear what work he was engaged in, or whether some early trials with printing from movable type may have been conducted there. After this, there is a gap of four years in the record. In 1448, he was back in Mainz, where he took out a loan from his brother-in-law Arnold Gelthus, quite possibly for a printing press or related paraphernalia. By this date, Gutenberg may have been familiar with intaglio printing; it is claimed that he had worked on copper engravings with an artist known as the Master of Playing Cards.\\n\\nBy 1450, the press was in operation, and a German poem had been printed, possibly the first item to be printed there. Gutenberg was able to convince the wealthy moneylender Johann Fust for a loan of 800 guilders. Peter Schöffer, who became Fust’s son-in-law, also joined the enterprise. Schöffer had worked as a scribe in Paris and is believed to have designed some of the first typefaces.\\n\\n
\\n\\t
\\n\\t\\t

All that has been written to me about that marvelous man seen at Frankfurt is true. I have not seen complete Bibles but only a number of quires of various books of the Bible. The script was very neat and legible, not at all difficult to follow—your grace would be able to read it without effort, and indeed without glasses.

\\n\\t\\t
\\n\\t\\t\\t—Future pope Pius II in a letter to Cardinal Carvajal, March 1455\\n\\t\\t
\\n\\t
\\n
\\n\\nGutenberg's workshop was set up at Hof Humbrecht, a property belonging to a distant relative. It is not clear when Gutenberg conceived the Bible project, but for this he borrowed another 800 guilders from Fust, and work commenced in 1452. At the same time, the press was also printing other, more lucrative texts (possibly Latin grammars). There is also some speculation that there may have been two presses, one for the pedestrian texts, and one for the Bible. One of the profit-making enterprises of the new press was the printing of thousands of indulgences for the church, documented from 1454–55.\\n\\nIn 1455 Gutenberg completed his 42-line Bible, known as the Gutenberg Bible. About 180 copies were printed, most on paper and some on vellum.\\n\\n## Court Case\\n\\nSome time in 1456, there was a dispute between Gutenberg and Fust, and Fust demanded his money back, accusing Gutenberg of misusing the funds. Meanwhile the expenses of the Bible project had proliferated, and Gutenberg's debt now exceeded 20,000 guilders. Fust sued at the archbishop's court. A November 1455 legal document records that there was a partnership for a \\\"project of the books,\\\" the funds for which Gutenberg had used for other purposes, according to Fust. The court decided in favor of Fust, giving him control over the Bible printing workshop and half of all printed Bibles.\\n\\nThus Gutenberg was effectively bankrupt, but it appears he retained (or re-started) a small printing shop, and participated in the printing of a Bible in the town of Bamberg around 1459, for which he seems at least to have supplied the type. But since his printed books never carry his name or a date, it is difficult to be certain, and there is consequently a considerable scholarly debate on this subject. It is also possible that the large Catholicon dictionary, 300 copies of 754 pages, printed in Mainz in 1460, may have been executed in his workshop.\\n\\nMeanwhile, the Fust–Schöffer shop was the first in Europe to bring out a book with the printer's name and date, the Mainz Psalter of August 1457, and while proudly proclaiming the mechanical process by which it had been produced, it made no mention of Gutenberg.\\n\\n## Later Life\\n\\nIn 1462, during a conflict between two archbishops, Mainz was sacked by archbishop Adolph von Nassau, and Gutenberg was exiled. An old man by now, he moved to Eltville where he may have initiated and supervised a new printing press belonging to the brothers Bechtermünze.\\n\\nIn January 1465, Gutenberg's achievements were recognized and he was given the title Hofmann (gentleman of the court) by von Nassau. This honor included a stipend, an annual court outfit, as well as 2,180 litres of grain and 2,000 litres of wine tax-free. It is believed he may have moved back to Mainz around this time, but this is not certain.\\n\\n***\\n\\nGutenberg died in 1468 and was buried in the Franciscan church at Mainz, his contributions largely unknown. This church and the cemetery were later destroyed, and Gutenberg's grave is now lost.\\n\\nIn 1504, he was mentioned as the inventor of typography in a book by Professor Ivo Wittig. It was not until 1567 that the first portrait of Gutenberg, almost certainly an imaginary reconstruction, appeared in Heinrich Pantaleon's biography of famous Germans.\\n\\n## Printing Method With Movable Type\\n\\nGutenberg's early printing process, and what tests he may have made with movable type, are not known in great detail. His later Bibles were printed in such a way as to have required large quantities of type, some estimates suggesting as many as 100,000 individual sorts. Setting each page would take, perhaps, half a day, and considering all the work in loading the press, inking the type, pulling the impressions, hanging up the sheets, distributing the type, etc., it is thought that the Gutenberg–Fust shop might have employed as many as 25 craftsmen.\\n\\n![Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5](/media/movable-type.jpg)\\n\\n*Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5*\\n\\nGutenberg's technique of making movable type remains unclear. In the following decades, punches and copper matrices became standardized in the rapidly disseminating printing presses across Europe. Whether Gutenberg used this sophisticated technique or a somewhat primitive version has been the subject of considerable debate.\\n\\nIn the standard process of making type, a hard metal punch (made by punchcutting, with the letter carved back to front) is hammered into a softer copper bar, creating a matrix. This is then placed into a hand-held mould and a piece of type, or \\\"sort\\\", is cast by filling the mould with molten type-metal; this cools almost at once, and the resulting piece of type can be removed from the mould. The matrix can be reused to create hundreds, or thousands, of identical sorts so that the same character appearing anywhere within the book will appear very uniform, giving rise, over time, to the development of distinct styles of typefaces or fonts. After casting, the sorts are arranged into type-cases, and used to make up pages which are inked and printed, a procedure which can be repeated hundreds, or thousands, of times. The sorts can be reused in any combination, earning the process the name of “movable type”.\\n\\nThe invention of the making of types with punch, matrix and mold has been widely attributed to Gutenberg. However, recent evidence suggests that Gutenberg's process was somewhat different. If he used the punch and matrix approach, all his letters should have been nearly identical, with some variations due to miscasting and inking. However, the type used in Gutenberg's earliest work shows other variations.\\n\\n
\\n\\t
\\n\\t\\t

It is a press, certainly, but a press from which shall flow in inexhaustible streams… Through it, god will spread his word.

\\n\\t\\t
\\n\\t\\t\\t—Johannes Gutenberg\\n\\t\\t
\\n\\t
\\n
\\n\\nIn 2001, the physicist Blaise Agüera y Arcas and Princeton librarian Paul Needham, used digital scans of a Papal bull in the Scheide Library, Princeton, to carefully compare the same letters (types) appearing in different parts of the printed text. The irregularities in Gutenberg's type, particularly in simple characters such as the hyphen, suggested that the variations could not have come from either ink smear or from wear and damage on the pieces of metal on the types themselves. While some identical types are clearly used on other pages, other variations, subjected to detailed image analysis, suggested that they could not have been produced from the same matrix. Transmitted light pictures of the page also appeared to reveal substructures in the type that could not arise from traditional punchcutting techniques. They hypothesized that the method may have involved impressing simple shapes to create alphabets in “cuneiform” style in a matrix made of some soft material, perhaps sand. Casting the type would destroy the mould, and the matrix would need to be recreated to make each additional sort. This could explain the variations in the type, as well as the substructures observed in the printed images.\\n\\nThus, they feel that “the decisive factor for the birth of typography”, the use of reusable moulds for casting type, might have been a more progressive process than was previously thought. They suggest that the additional step of using the punch to create a mould that could be reused many times was not taken until twenty years later, in the 1470s. Others have not accepted some or all of their suggestions, and have interpreted the evidence in other ways, and the truth of the matter remains very uncertain.\\n\\nA 1568 history by Hadrianus Junius of Holland claims that the basic idea of the movable type came to Gutenberg from Laurens Janszoon Coster via Fust, who was apprenticed to Coster in the 1430s and may have brought some of his equipment from Haarlem to Mainz. While Coster appears to have experimented with moulds and castable metal type, there is no evidence that he had actually printed anything with this technology. He was an inventor and a goldsmith. However, there is one indirect supporter of the claim that Coster might be the inventor. The author of the Cologne Chronicle of 1499 quotes Ulrich Zell, the first printer of Cologne, that printing was performed in Mainz in 1450, but that some type of printing of lower quality had previously occurred in the Netherlands. However, the chronicle does not mention the name of Coster, while it actually credits Gutenberg as the \\\"first inventor of printing\\\" in the very same passage (fol. 312). The first securely dated book by Dutch printers is from 1471, and the Coster connection is today regarded as a mere legend.\\n\\nThe 19th century printer and typefounder Fournier Le Jeune suggested that Gutenberg might not have been using type cast with a reusable matrix, but possibly wooden types that were carved individually. A similar suggestion was made by Nash in 2004. This remains possible, albeit entirely unproven.\\n\\nIt has also been questioned whether Gutenberg used movable types at all. In 2004, Italian professor Bruno Fabbiani claimed that examination of the 42-line Bible revealed an overlapping of letters, suggesting that Gutenberg did not in fact use movable type (individual cast characters) but rather used whole plates made from a system somewhat like a modern typewriter, whereby the letters were stamped successively into the plate and then printed. However, most specialists regard the occasional overlapping of type as caused by paper movement over pieces of type of slightly unequal height.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/1970-01-01-first-title.json?ts=300&ref=refs/meta/_netlify_cms", + "headers": { + "Date": "Tue, 10 Sep 2019 13:30:52 GMT", + "Content-Type": "application/vnd.github.VERSION.raw; charset=utf-8", + "Content-Length": "462", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4933", + "X-RateLimit-Reset": "1568125713", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"b0bdc2ebfde22c5f4ad437035431dc3fa0ce8686\"", + "Last-Modified": "Tue, 10 Sep 2019 13:30:27 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B3E:2B24:17371DA:1C37241:5D77A58B", + "connection": "keep-alive" + }, + "response": "{\"type\":\"PR\",\"pr\":{\"number\":2,\"head\":\"8a58a77a739d88c20c838328fd1b9a8a403599f8\"},\"user\":\"owner\",\"status\":\"draft\",\"branch\":\"cms/1970-01-01-first-title\",\"collection\":\"posts\",\"commitMessage\":\"Create Post “1970-01-01-first-title”\",\"title\":\"first title\",\"description\":\"first description\",\"objects\":{\"entry\":{\"path\":\"content/posts/1970-01-01-first-title.md\",\"sha\":\"a041245814892e3f73f63ca54333fda649b7fc0b\"},\"files\":[]},\"timeStamp\":\"1970-01-01T00:00:00.600Z\"}", + "status": 200 + }, + { + "body": "{\"operationName\":\"unpublishedBranchFile\",\"variables\":{\"headOwner\":\"owner\",\"headRepoName\":\"repo\",\"headExpression\":\"cms/1970-01-01-first-title:content/posts/1970-01-01-first-title.md\",\"baseOwner\":\"owner\",\"baseRepoName\":\"repo\",\"baseExpression\":\"master:content/posts/1970-01-01-first-title.md\"},\"query\":\"query unpublishedBranchFile($headOwner: String!, $headRepoName: String!, $headExpression: String!, $baseOwner: String!, $baseRepoName: String!, $baseExpression: String!) {\\n head: repository(owner: $headOwner, name: $headRepoName) {\\n ...RepositoryParts\\n object(expression: $headExpression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n base: repository(owner: $baseOwner, name: $baseRepoName) {\\n ...RepositoryParts\\n object(expression: $baseExpression) {\\n ... on Blob {\\n id\\n oid\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:30:52 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4908", + "X-RateLimit-Reset": "1568125723", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7B41:2B15:4BB597:5BD90D:5D77A58C", + "content-length": "189", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"head\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"object\":null},\"base\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"object\":null}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"master:content/posts/1970-01-01-first-title.md\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:30:53 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4907", + "X-RateLimit-Reset": "1568125723", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7B43:244EB:177DD6B:1C85D31:5D77A58C", + "content-length": "106", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"object\":null}}}\n", + "status": 200 + }, + { + "body": "{\"content\":\"LS0tCnRlbXBsYXRlOiBwb3N0CnRpdGxlOiBmaXJzdCB0aXRsZQpkcmFmdDogdHJ1ZQpkYXRlOiAxOTcwLTAxLTAxVDAwOjAwOjAwLjAwMFoKZGVzY3JpcHRpb246IGZpcnN0IGRlc2NyaXB0aW9uCmNhdGVnb3J5OiBmaXJzdCBjYXRlZ29yeQp0YWdzOgogIC0gdGFnMQotLS0KZmlyc3QgYm9keQo=\",\"encoding\":\"base64\"}", + "method": "POST", + "url": "/repos/owner/repo/git/blobs?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:30:54 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "207", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4932", + "X-RateLimit-Reset": "1568125713", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"83b3e749712791d5ee508f9924334557\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B44:15110:17F4EE0:1D17E4C:5D77A58D", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"a041245814892e3f73f63ca54333fda649b7fc0b\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b\"\n}\n", + "status": 201 + }, + { + "body": "{\"operationName\":\"branch\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"qualifiedName\":\"refs/heads/master\"},\"query\":\"query branch($owner: String!, $name: String!, $qualifiedName: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n branch: ref(qualifiedName: $qualifiedName) {\\n ...BranchParts\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BranchParts on Ref {\\n commit: target {\\n ...ObjectParts\\n __typename\\n }\\n id\\n name\\n repository {\\n ...RepositoryParts\\n __typename\\n }\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:30:54 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4906", + "X-RateLimit-Reset": "1568125723", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7B46:B4DE:1187362:15545EA:5D77A58E", + "content-length": "429", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"branch\":{\"commit\":{\"id\":\"MDY6Q29tbWl0MjA3NTY3MDExOjcyNjE3MmRlYWU5OWM4YTJjZWE0YzcxZTczNGEwMmE3OTNkNGQ5ZTU=\",\"sha\":\"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\"__typename\":\"Commit\"},\"id\":\"MDM6UmVmMjA3NTY3MDExOm1hc3Rlcg==\",\"name\":\"master\",\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\"},\"__typename\":\"Ref\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"tree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"726172deae99c8a2cea4c71e734a02a793d4d9e5\"},\"query\":\"query tree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n tree: object(oid: $sha) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:30:55 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4905", + "X-RateLimit-Reset": "1568125723", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7B4B:1510C:1722A0:1C4B5E:5D77A58F", + "content-length": "260", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"tree\":{\"id\":\"MDY6Q29tbWl0MjA3NTY3MDExOjcyNjE3MmRlYWU5OWM4YTJjZWE0YzcxZTczNGEwMmE3OTNkNGQ5ZTU=\",\"sha\":\"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\"__typename\":\"Commit\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"commitTree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"726172deae99c8a2cea4c71e734a02a793d4d9e5\"},\"query\":\"query commitTree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n commit: object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n tree {\\n ...ObjectParts\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:30:55 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4904", + "X-RateLimit-Reset": "1568125723", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7B48:2B15:4BB69C:5BDA4E:5D77A58F", + "content-length": "5040", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"commit\":{\"id\":\"MDY6Q29tbWl0MjA3NTY3MDExOjcyNjE3MmRlYWU5OWM4YTJjZWE0YzcxZTczNGEwMmE3OTNkNGQ5ZTU=\",\"sha\":\"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\"__typename\":\"Commit\",\"tree\":{\"id\":\"MDQ6VHJlZTIwNzU2NzAxMTpjNWI3ZjZkNjc0YmExOTNiYjdiNGE1ZmNmNDkzMzAzNGUxYjdmMmI3\",\"sha\":\"c5b7f6d674ba193bb7b4a5fcf4933034e1b7f2b7\",\"__typename\":\"Tree\",\"entries\":[{\"path\":\".circleci\",\"sha\":\"e5e9af3301cac61f120b8e4d40b1733c7a45685a\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\".eslintignore\",\"sha\":\"80b4531b026d19f8fa589efd122e76199d23f967\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".eslintrc.js\",\"sha\":\"370684994aaed5b858da3a006f48cfa57e88fd27\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".flowconfig\",\"sha\":\"14aa2ac4cc0e15223ad98630a6f1325fc81f8043\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".gitattributes\",\"sha\":\"10a369ddf4f603337cabc6f21646508323941ce1\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".github\",\"sha\":\"4ebeece548b52b20af59622354530a6d33b50b43\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\".gitignore\",\"sha\":\"c071ba35b0e49899bab6d610a68eef667dbbf157\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".prettierignore\",\"sha\":\"393f050e123d998cf8c8b362ff95cc8ac4d250e5\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".prettierrc\",\"sha\":\"e52ad05bb13b084d7949dd76e1b2517455162150\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".stylelintrc.json\",\"sha\":\"4b4c9698d10d756f5faa025659b86375428ed0a7\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".vscode\",\"sha\":\"286e97ec0113ea8242b41ac222e2c3e8077e6f1e\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"CHANGELOG.md\",\"sha\":\"070a5d4f0eacd2dc0be81ae8996f8982de43046e\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"CODE_OF_CONDUCT.md\",\"sha\":\"92bc7565ff0ee145a0041b5179a820f14f39ab22\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"CONTRIBUTING.md\",\"sha\":\"8552aa241254a61258e1ff9666ab36f32fb1e3b9\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"LICENSE\",\"sha\":\"42d85938357b49977c126ca03b199129082d4fb8\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"README.md\",\"sha\":\"19df50a78654c8d757ca7f38447aa3d09c7abcce\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"backend\",\"sha\":\"b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"config.js\",\"sha\":\"58afd573bbb69fcca000efd0f5d90b93c93a98dd\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"content\",\"sha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"flow-typed\",\"sha\":\"86c32fd6c3118be5e0dbbb231a834447357236c6\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"flow\",\"sha\":\"0af45ad00d155c8d8c7407d913ff85278244c9ce\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"gatsby-browser.js\",\"sha\":\"9bd2c9dce175f04980e91cd9dc295a299e3cdb80\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"gatsby-config.js\",\"sha\":\"353a109dad62e3f25bf9f5e6a2167f21a6c8b459\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"gatsby-node.js\",\"sha\":\"14a207883c2093d2cc071bc5a464e165bcc1fead\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"gatsby\",\"sha\":\"4f23c06cd1740bf78304d2c0b29bf6bfdf427981\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"jest\",\"sha\":\"5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"netlify.toml\",\"sha\":\"599b99cc5700404fde316a7ede829776f23e7d45\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"package.json\",\"sha\":\"9d777616438b90a18f1a4ebfd5f114b4c06c6f17\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"postcss-config.js\",\"sha\":\"d216501e9b351a72e00ba0b7459a6500e27e7da2\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"renovate.json\",\"sha\":\"dcc309398785698b8870545c32051a3d72dd8271\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"serverless-scripts\",\"sha\":\"ee3701f2fbfc7196ba340f6481d1387d20527898\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"serverless-single-page-app-plugin\",\"sha\":\"08763fcfba643a06a452398517019bea4a5850ba\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"serverless.yml\",\"sha\":\"20b22c5fad229f35d029bf6614d333d82fe8a987\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"src\",\"sha\":\"8cdb35a88232c0f32f12f130c92c7cc55f97f471\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"static\",\"sha\":\"53c6380a600a030d3722bff7ecde36f749fb6964\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"utils\",\"sha\":\"a592549c9f74db40b51efefcda2fd76810405f27\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"yarn.lock\",\"sha\":\"475c9c1924ca752a0686303e2fdeb7b13ad75f57\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"}]}}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"tree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\"},\"query\":\"query tree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n tree: object(oid: $sha) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:30:56 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4903", + "X-RateLimit-Reset": "1568125723", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7B4F:15110:17F523F:1D18285:5D77A58F", + "content-length": "502", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"tree\":{\"id\":\"MDQ6VHJlZTIwNzU2NzAxMTowMjk0ZWYxMDZjNTg3NDM5MDdhNWM4NTVkYTFlYjBmODdiMGI2ZGZj\",\"sha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\"__typename\":\"Tree\",\"entries\":[{\"path\":\"pages\",\"sha\":\"1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"posts\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"}]}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"commitTree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\"},\"query\":\"query commitTree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n commit: object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n tree {\\n ...ObjectParts\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:30:56 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4902", + "X-RateLimit-Reset": "1568125723", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7B4D:2B24:173787A:1C37A64:5D77A58F", + "content-length": "256", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"commit\":{\"id\":\"MDQ6VHJlZTIwNzU2NzAxMTowMjk0ZWYxMDZjNTg3NDM5MDdhNWM4NTVkYTFlYjBmODdiMGI2ZGZj\",\"sha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\"__typename\":\"Tree\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"commitTree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\"},\"query\":\"query commitTree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n commit: object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n tree {\\n ...ObjectParts\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:30:56 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4901", + "X-RateLimit-Reset": "1568125723", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7B50:3ED77:A71BEA:CA7427:5D77A590", + "content-length": "256", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"commit\":{\"id\":\"MDQ6VHJlZTIwNzU2NzAxMTozNDg5MjU3NWUyMTZjMDZlNzU3MDkzZjAzNmJkOGUwNTdjNzhhNTJm\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"__typename\":\"Tree\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"tree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\"},\"query\":\"query tree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n tree: object(oid: $sha) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:30:56 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4900", + "X-RateLimit-Reset": "1568125723", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7B52:1510D:44AC95:5431CD:5D77A590", + "content-length": "1075", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"tree\":{\"id\":\"MDQ6VHJlZTIwNzU2NzAxMTozNDg5MjU3NWUyMTZjMDZlNzU3MDkzZjAzNmJkOGUwNTdjNzhhNTJm\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"__typename\":\"Tree\",\"entries\":[{\"path\":\"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\"sha\":\"6d51a38aed7139d2117724b1e307657b6ff2d043\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\"sha\":\"d0582dd245a3f408fb3fe2333bf01400007476e9\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"2016-02-02---A-Brief-History-of-Typography.md\",\"sha\":\"0eea554365f002d0f1572af9a58522d335a794d5\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"2017-18-08---The-Birth-of-Movable-Type.md\",\"sha\":\"44f78c474d04273185a95821426f75affc9b0044\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\"sha\":\"a532f0a9445cdf90a19c6812cff89d1674991774\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"}]}}}}\n", + "status": 200 + }, + { + "body": "{\"base_tree\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"tree\":[{\"path\":\"1970-01-01-first-title.md\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"a041245814892e3f73f63ca54333fda649b7fc0b\"}]}", + "method": "POST", + "url": "/repos/owner/repo/git/trees?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:30:57 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "2362", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4931", + "X-RateLimit-Reset": "1568125713", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"6d65750d5f558dadf97dc866bf8b2047\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B56:1510E:A7DDB6:CC7378:5D77A591", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a041245814892e3f73f63ca54333fda649b7fc0b\",\n \"size\": 167,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b\"\n },\n {\n \"path\": \"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"size\": 1707,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\"\n },\n {\n \"path\": \"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"size\": 2565,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\"\n },\n {\n \"path\": \"2016-02-02---A-Brief-History-of-Typography.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"0eea554365f002d0f1572af9a58522d335a794d5\",\n \"size\": 2786,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\"\n },\n {\n \"path\": \"2017-18-08---The-Birth-of-Movable-Type.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"44f78c474d04273185a95821426f75affc9b0044\",\n \"size\": 16071,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\"\n },\n {\n \"path\": \"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"size\": 7465,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"base_tree\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\"tree\":[{\"path\":\"posts\",\"mode\":\"040000\",\"type\":\"tree\",\"sha\":\"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\"parentSha\":\"34892575e216c06e757093f036bd8e057c78a52f\"}]}", + "method": "POST", + "url": "/repos/owner/repo/git/trees?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:30:58 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "831", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4930", + "X-RateLimit-Reset": "1568125713", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"941458d17a55aece507a4092046edf20\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B58:2B1F:11BC18A:15A2182:5D77A592", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"tree\": [\n {\n \"path\": \"pages\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\"\n },\n {\n \"path\": \"posts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"base_tree\":\"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\"tree\":[{\"path\":\"content\",\"mode\":\"040000\",\"type\":\"tree\",\"sha\":\"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\"parentSha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\"}]}", + "method": "POST", + "url": "/repos/owner/repo/git/trees?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:30:59 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "11769", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4929", + "X-RateLimit-Reset": "1568125713", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"5b931daea9222fce9b5272abe62d9270\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/trees/daee8d5d15d144e8779955166a2afeccde2770e1", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B5A:9D20:10E6FCC:14A9D01:5D77A592", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"daee8d5d15d144e8779955166a2afeccde2770e1\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/daee8d5d15d144e8779955166a2afeccde2770e1\",\n \"tree\": [\n {\n \"path\": \".circleci\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"e5e9af3301cac61f120b8e4d40b1733c7a45685a\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/e5e9af3301cac61f120b8e4d40b1733c7a45685a\"\n },\n {\n \"path\": \".eslintignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"80b4531b026d19f8fa589efd122e76199d23f967\",\n \"size\": 39,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/80b4531b026d19f8fa589efd122e76199d23f967\"\n },\n {\n \"path\": \".eslintrc.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"370684994aaed5b858da3a006f48cfa57e88fd27\",\n \"size\": 414,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/370684994aaed5b858da3a006f48cfa57e88fd27\"\n },\n {\n \"path\": \".flowconfig\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14aa2ac4cc0e15223ad98630a6f1325fc81f8043\",\n \"size\": 283,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14aa2ac4cc0e15223ad98630a6f1325fc81f8043\"\n },\n {\n \"path\": \".gitattributes\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"10a369ddf4f603337cabc6f21646508323941ce1\",\n \"size\": 135,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/10a369ddf4f603337cabc6f21646508323941ce1\"\n },\n {\n \"path\": \".github\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4ebeece548b52b20af59622354530a6d33b50b43\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4ebeece548b52b20af59622354530a6d33b50b43\"\n },\n {\n \"path\": \".gitignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"c071ba35b0e49899bab6d610a68eef667dbbf157\",\n \"size\": 169,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/c071ba35b0e49899bab6d610a68eef667dbbf157\"\n },\n {\n \"path\": \".prettierignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"393f050e123d998cf8c8b362ff95cc8ac4d250e5\",\n \"size\": 45,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/393f050e123d998cf8c8b362ff95cc8ac4d250e5\"\n },\n {\n \"path\": \".prettierrc\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e52ad05bb13b084d7949dd76e1b2517455162150\",\n \"size\": 223,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/e52ad05bb13b084d7949dd76e1b2517455162150\"\n },\n {\n \"path\": \".stylelintrc.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"4b4c9698d10d756f5faa025659b86375428ed0a7\",\n \"size\": 718,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/4b4c9698d10d756f5faa025659b86375428ed0a7\"\n },\n {\n \"path\": \".vscode\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"286e97ec0113ea8242b41ac222e2c3e8077e6f1e\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/286e97ec0113ea8242b41ac222e2c3e8077e6f1e\"\n },\n {\n \"path\": \"CHANGELOG.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"070a5d4f0eacd2dc0be81ae8996f8982de43046e\",\n \"size\": 2113,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/070a5d4f0eacd2dc0be81ae8996f8982de43046e\"\n },\n {\n \"path\": \"CODE_OF_CONDUCT.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"92bc7565ff0ee145a0041b5179a820f14f39ab22\",\n \"size\": 3355,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/92bc7565ff0ee145a0041b5179a820f14f39ab22\"\n },\n {\n \"path\": \"CONTRIBUTING.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"8552aa241254a61258e1ff9666ab36f32fb1e3b9\",\n \"size\": 3548,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/8552aa241254a61258e1ff9666ab36f32fb1e3b9\"\n },\n {\n \"path\": \"LICENSE\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"42d85938357b49977c126ca03b199129082d4fb8\",\n \"size\": 1091,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/42d85938357b49977c126ca03b199129082d4fb8\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"19df50a78654c8d757ca7f38447aa3d09c7abcce\",\n \"size\": 3698,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/19df50a78654c8d757ca7f38447aa3d09c7abcce\"\n },\n {\n \"path\": \"backend\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\"\n },\n {\n \"path\": \"config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"58afd573bbb69fcca000efd0f5d90b93c93a98dd\",\n \"size\": 853,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/58afd573bbb69fcca000efd0f5d90b93c93a98dd\"\n },\n {\n \"path\": \"content\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639\"\n },\n {\n \"path\": \"flow-typed\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"86c32fd6c3118be5e0dbbb231a834447357236c6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/86c32fd6c3118be5e0dbbb231a834447357236c6\"\n },\n {\n \"path\": \"flow\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"0af45ad00d155c8d8c7407d913ff85278244c9ce\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/0af45ad00d155c8d8c7407d913ff85278244c9ce\"\n },\n {\n \"path\": \"gatsby-browser.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9bd2c9dce175f04980e91cd9dc295a299e3cdb80\",\n \"size\": 90,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9bd2c9dce175f04980e91cd9dc295a299e3cdb80\"\n },\n {\n \"path\": \"gatsby-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"353a109dad62e3f25bf9f5e6a2167f21a6c8b459\",\n \"size\": 7228,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/353a109dad62e3f25bf9f5e6a2167f21a6c8b459\"\n },\n {\n \"path\": \"gatsby-node.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14a207883c2093d2cc071bc5a464e165bcc1fead\",\n \"size\": 409,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14a207883c2093d2cc071bc5a464e165bcc1fead\"\n },\n {\n \"path\": \"gatsby\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4f23c06cd1740bf78304d2c0b29bf6bfdf427981\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4f23c06cd1740bf78304d2c0b29bf6bfdf427981\"\n },\n {\n \"path\": \"jest\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\"\n },\n {\n \"path\": \"netlify.toml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"599b99cc5700404fde316a7ede829776f23e7d45\",\n \"size\": 137,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/599b99cc5700404fde316a7ede829776f23e7d45\"\n },\n {\n \"path\": \"package.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9d777616438b90a18f1a4ebfd5f114b4c06c6f17\",\n \"size\": 6855,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9d777616438b90a18f1a4ebfd5f114b4c06c6f17\"\n },\n {\n \"path\": \"postcss-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d216501e9b351a72e00ba0b7459a6500e27e7da2\",\n \"size\": 703,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d216501e9b351a72e00ba0b7459a6500e27e7da2\"\n },\n {\n \"path\": \"renovate.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"dcc309398785698b8870545c32051a3d72dd8271\",\n \"size\": 460,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/dcc309398785698b8870545c32051a3d72dd8271\"\n },\n {\n \"path\": \"serverless-scripts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ee3701f2fbfc7196ba340f6481d1387d20527898\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ee3701f2fbfc7196ba340f6481d1387d20527898\"\n },\n {\n \"path\": \"serverless-single-page-app-plugin\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"08763fcfba643a06a452398517019bea4a5850ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/08763fcfba643a06a452398517019bea4a5850ba\"\n },\n {\n \"path\": \"serverless.yml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"20b22c5fad229f35d029bf6614d333d82fe8a987\",\n \"size\": 7803,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/20b22c5fad229f35d029bf6614d333d82fe8a987\"\n },\n {\n \"path\": \"src\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"8cdb35a88232c0f32f12f130c92c7cc55f97f471\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/8cdb35a88232c0f32f12f130c92c7cc55f97f471\"\n },\n {\n \"path\": \"static\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"53c6380a600a030d3722bff7ecde36f749fb6964\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/53c6380a600a030d3722bff7ecde36f749fb6964\"\n },\n {\n \"path\": \"utils\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"a592549c9f74db40b51efefcda2fd76810405f27\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/a592549c9f74db40b51efefcda2fd76810405f27\"\n },\n {\n \"path\": \"yarn.lock\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"475c9c1924ca752a0686303e2fdeb7b13ad75f57\",\n \"size\": 793903,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/475c9c1924ca752a0686303e2fdeb7b13ad75f57\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"message\":\"Create Post “1970-01-01-first-title”\",\"tree\":\"daee8d5d15d144e8779955166a2afeccde2770e1\",\"parents\":[\"726172deae99c8a2cea4c71e734a02a793d4d9e5\"]}", + "method": "POST", + "url": "/repos/owner/repo/git/commits?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:31:00 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "1504", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4928", + "X-RateLimit-Reset": "1568125713", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"0cfd65fba79179bd919bf2356bc73c86\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/commits/58918518ad776fba1f196ce03e7828af11421529", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B5C:B4DE:1187ACE:1554F1C:5D77A593", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"58918518ad776fba1f196ce03e7828af11421529\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NTY3MDExOjU4OTE4NTE4YWQ3NzZmYmExZjE5NmNlMDNlNzgyOGFmMTE0MjE1Mjk=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/58918518ad776fba1f196ce03e7828af11421529\",\n \"html_url\": \"https://github.com/owner/repo/commit/58918518ad776fba1f196ce03e7828af11421529\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T13:31:00Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T13:31:00Z\"\n },\n \"tree\": {\n \"sha\": \"daee8d5d15d144e8779955166a2afeccde2770e1\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/daee8d5d15d144e8779955166a2afeccde2770e1\"\n },\n \"message\": \"Create Post “1970-01-01-first-title”\",\n \"parents\": [\n {\n \"sha\": \"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"html_url\": \"https://github.com/owner/repo/commit/726172deae99c8a2cea4c71e734a02a793d4d9e5\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "status": 201 + }, + { + "body": "{\"operationName\":\"createBranchAndPullRequest\",\"variables\":{\"createRefInput\":{\"name\":\"refs/heads/cms/1970-01-01-first-title\",\"oid\":\"58918518ad776fba1f196ce03e7828af11421529\",\"repositoryId\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\"},\"createPullRequestInput\":{\"baseRefName\":\"master\",\"body\":\"Automatically generated by Netlify CMS\",\"title\":\"Create Post “1970-01-01-first-title”\",\"headRefName\":\"cms/1970-01-01-first-title\",\"repositoryId\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\"}},\"query\":\"mutation createBranchAndPullRequest($createRefInput: CreateRefInput!, $createPullRequestInput: CreatePullRequestInput!) {\\n createRef(input: $createRefInput) {\\n branch: ref {\\n ...BranchParts\\n __typename\\n }\\n __typename\\n }\\n createPullRequest(input: $createPullRequestInput) {\\n clientMutationId\\n pullRequest {\\n ...PullRequestParts\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment BranchParts on Ref {\\n commit: target {\\n ...ObjectParts\\n __typename\\n }\\n id\\n name\\n repository {\\n ...RepositoryParts\\n __typename\\n }\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment PullRequestParts on PullRequest {\\n id\\n baseRefName\\n body\\n headRefName\\n headRefOid\\n number\\n state\\n title\\n merged_at: mergedAt\\n repository {\\n ...RepositoryParts\\n __typename\\n }\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:31:02 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4899", + "X-RateLimit-Reset": "1568125723", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7B5E:244E7:113B145:1504BE3:5D77A594", + "content-length": "952", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"createRef\":{\"branch\":{\"commit\":{\"id\":\"MDY6Q29tbWl0MjA3NTY3MDExOjU4OTE4NTE4YWQ3NzZmYmExZjE5NmNlMDNlNzgyOGFmMTE0MjE1Mjk=\",\"sha\":\"58918518ad776fba1f196ce03e7828af11421529\",\"__typename\":\"Commit\"},\"id\":\"MDM6UmVmMjA3NTY3MDExOmNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxl\",\"name\":\"cms/1970-01-01-first-title\",\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\"},\"__typename\":\"Ref\"},\"__typename\":\"CreateRefPayload\"},\"createPullRequest\":{\"clientMutationId\":null,\"pullRequest\":{\"id\":\"MDExOlB1bGxSZXF1ZXN0MzE1OTk1OTUz\",\"baseRefName\":\"master\",\"body\":\"Automatically generated by Netlify CMS\",\"headRefName\":\"cms/1970-01-01-first-title\",\"headRefOid\":\"58918518ad776fba1f196ce03e7828af11421529\",\"number\":3,\"state\":\"OPEN\",\"title\":\"Create Post “1970-01-01-first-title”\",\"merged_at\":null,\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\"},\"__typename\":\"PullRequest\"},\"__typename\":\"CreatePullRequestPayload\"}}}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:31:02 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4927", + "X-RateLimit-Reset": "1568125713", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"1ec4bdfeea5fba72114b7674eb80cb5a\"", + "Last-Modified": "Tue, 10 Sep 2019 13:28:36 GMT", + "X-Poll-Interval": "300", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B61:9D21:16B5A15:1BA7CD8:5D77A596", + "content-length": "484", + "connection": "keep-alive" + }, + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NTY3MDExOnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"611793a1b7ad54cf36b96ffd59324c95f088e769\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/611793a1b7ad54cf36b96ffd59324c95f088e769\"\n }\n}\n", + "status": 200 + }, + { + "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjMsImhlYWQiOiI1ODkxODUxOGFkNzc2ZmJhMWYxOTZjZTAzZTc4MjhhZjExNDIxNTI5In0sInVzZXIiOiJvd25lciIsInN0YXR1cyI6ImRyYWZ0IiwiYnJhbmNoIjoiY21zLzE5NzAtMDEtMDEtZmlyc3QtdGl0bGUiLCJjb2xsZWN0aW9uIjoicG9zdHMiLCJjb21taXRNZXNzYWdlIjoiQ3JlYXRlIFBvc3Qg4oCcMTk3MC0wMS0wMS1maXJzdC10aXRsZeKAnSIsInRpdGxlIjoiZmlyc3QgdGl0bGUiLCJkZXNjcmlwdGlvbiI6ImZpcnN0IGRlc2NyaXB0aW9uIiwib2JqZWN0cyI6eyJlbnRyeSI6eyJwYXRoIjoiY29udGVudC9wb3N0cy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxlLm1kIiwic2hhIjoiYTA0MTI0NTgxNDg5MmUzZjczZjYzY2E1NDMzM2ZkYTY0OWI3ZmMwYiJ9LCJmaWxlcyI6W119LCJ0aW1lU3RhbXAiOiIxOTcwLTAxLTAxVDAwOjAwOjAwLjMwMFoifQ==\",\"encoding\":\"base64\"}", + "method": "POST", + "url": "/repos/owner/repo/git/blobs?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:31:03 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "207", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4926", + "X-RateLimit-Reset": "1568125713", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"f73cfc0670540b86c328b89b80bcb09e\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/blobs/6ef1106deb92c54b6e5668a4e31bc271d82b4cd8", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B62:3ED77:A7225B:CA7C2E:5D77A597", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"6ef1106deb92c54b6e5668a4e31bc271d82b4cd8\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/6ef1106deb92c54b6e5668a4e31bc271d82b4cd8\"\n}\n", + "status": 201 + }, + { + "body": "{\"operationName\":\"commitTree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"611793a1b7ad54cf36b96ffd59324c95f088e769\"},\"query\":\"query commitTree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n commit: object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n tree {\\n ...ObjectParts\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:31:04 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4898", + "X-RateLimit-Reset": "1568125723", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7B64:244DF:1992C6:1F1AC9:5D77A597", + "content-length": "698", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"commit\":{\"id\":\"MDY6Q29tbWl0MjA3NTY3MDExOjYxMTc5M2ExYjdhZDU0Y2YzNmI5NmZmZDU5MzI0Yzk1ZjA4OGU3Njk=\",\"sha\":\"611793a1b7ad54cf36b96ffd59324c95f088e769\",\"__typename\":\"Commit\",\"tree\":{\"id\":\"MDQ6VHJlZTIwNzU2NzAxMTo4YzAyOGY0YjQ3Y2E5ZjFiN2IyNTRlOTQ3MGQzNjY3NWM4NDUxMGRj\",\"sha\":\"8c028f4b47ca9f1b7b254e9470d36675c84510dc\",\"__typename\":\"Tree\",\"entries\":[{\"path\":\"1970-01-01-first-title.json\",\"sha\":\"b0bdc2ebfde22c5f4ad437035431dc3fa0ce8686\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"README.md\",\"sha\":\"98787d1bd948850444433e91a43091a76c4eb455\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"}]}}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"tree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"611793a1b7ad54cf36b96ffd59324c95f088e769\"},\"query\":\"query tree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n tree: object(oid: $sha) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:31:04 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4897", + "X-RateLimit-Reset": "1568125723", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7B66:244EB:177EFAF:1C873F5:5D77A597", + "content-length": "260", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"tree\":{\"id\":\"MDY6Q29tbWl0MjA3NTY3MDExOjYxMTc5M2ExYjdhZDU0Y2YzNmI5NmZmZDU5MzI0Yzk1ZjA4OGU3Njk=\",\"sha\":\"611793a1b7ad54cf36b96ffd59324c95f088e769\",\"__typename\":\"Commit\"}}}}\n", + "status": 200 + }, + { + "body": "{\"base_tree\":\"611793a1b7ad54cf36b96ffd59324c95f088e769\",\"tree\":[{\"path\":\"1970-01-01-first-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"6ef1106deb92c54b6e5668a4e31bc271d82b4cd8\"}]}", + "method": "POST", + "url": "/repos/owner/repo/git/trees?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:31:05 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "895", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4925", + "X-RateLimit-Reset": "1568125713", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"537624acfa805fa1ae0944d44e15d4c0\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/trees/bd55e768c401688946f092795707430b9da6631b", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B69:15110:17F61CF:1D195DB:5D77A598", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"bd55e768c401688946f092795707430b9da6631b\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/bd55e768c401688946f092795707430b9da6631b\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"6ef1106deb92c54b6e5668a4e31bc271d82b4cd8\",\n \"size\": 462,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/6ef1106deb92c54b6e5668a4e31bc271d82b4cd8\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"message\":\"Updating “1970-01-01-first-title” metadata\",\"tree\":\"bd55e768c401688946f092795707430b9da6631b\",\"parents\":[\"611793a1b7ad54cf36b96ffd59324c95f088e769\"]}", + "method": "POST", + "url": "/repos/owner/repo/git/commits?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:31:06 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "1510", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4924", + "X-RateLimit-Reset": "1568125713", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"383e73b5c4e272f10bd4455b4c14cdcc\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/commits/2037f77112241e0beebb186d48d2dc9b8805bb3a", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B6B:B4DE:1188317:155594A:5D77A599", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"2037f77112241e0beebb186d48d2dc9b8805bb3a\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NTY3MDExOjIwMzdmNzcxMTIyNDFlMGJlZWJiMTg2ZDQ4ZDJkYzliODgwNWJiM2E=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/2037f77112241e0beebb186d48d2dc9b8805bb3a\",\n \"html_url\": \"https://github.com/owner/repo/commit/2037f77112241e0beebb186d48d2dc9b8805bb3a\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T13:31:06Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T13:31:06Z\"\n },\n \"tree\": {\n \"sha\": \"bd55e768c401688946f092795707430b9da6631b\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/bd55e768c401688946f092795707430b9da6631b\"\n },\n \"message\": \"Updating “1970-01-01-first-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"611793a1b7ad54cf36b96ffd59324c95f088e769\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/611793a1b7ad54cf36b96ffd59324c95f088e769\",\n \"html_url\": \"https://github.com/owner/repo/commit/611793a1b7ad54cf36b96ffd59324c95f088e769\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "status": 201 + }, + { + "body": "{\"sha\":\"2037f77112241e0beebb186d48d2dc9b8805bb3a\",\"force\":false}", + "method": "PATCH", + "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:31:07 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4923", + "X-RateLimit-Reset": "1568125713", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"365812b7f48e165f7810384af52fce4d\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B6D:244E4:AA7E27:CE8350:5D77A59A", + "content-length": "484", + "connection": "keep-alive" + }, + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NTY3MDExOnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"2037f77112241e0beebb186d48d2dc9b8805bb3a\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/2037f77112241e0beebb186d48d2dc9b8805bb3a\"\n }\n}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"unpublishedBranchFile\",\"variables\":{\"headOwner\":\"owner\",\"headRepoName\":\"repo\",\"headExpression\":\"cms/1970-01-01-first-title:content/posts/1970-01-01-first-title.md\",\"baseOwner\":\"owner\",\"baseRepoName\":\"repo\",\"baseExpression\":\"master:content/posts/1970-01-01-first-title.md\"},\"query\":\"query unpublishedBranchFile($headOwner: String!, $headRepoName: String!, $headExpression: String!, $baseOwner: String!, $baseRepoName: String!, $baseExpression: String!) {\\n head: repository(owner: $headOwner, name: $headRepoName) {\\n ...RepositoryParts\\n object(expression: $headExpression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n base: repository(owner: $baseOwner, name: $baseRepoName) {\\n ...RepositoryParts\\n object(expression: $baseExpression) {\\n ... on Blob {\\n id\\n oid\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:31:08 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4896", + "X-RateLimit-Reset": "1568125723", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7B70:244EB:177F6A7:1C87CA1:5D77A59B", + "content-length": "496", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"head\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzU2NzAxMTphMDQxMjQ1ODE0ODkyZTNmNzNmNjNjYTU0MzMzZmRhNjQ5YjdmYzBi\",\"text\":\"---\\ntemplate: post\\ntitle: first title\\ndraft: true\\ndate: 1970-01-01T00:00:00.000Z\\ndescription: first description\\ncategory: first category\\ntags:\\n - tag1\\n---\\nfirst body\\n\",\"is_binary\":false,\"__typename\":\"Blob\"}},\"base\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"object\":null}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"statues\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"58918518ad776fba1f196ce03e7828af11421529\"},\"query\":\"query statues($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n status {\\n id\\n contexts {\\n id\\n context\\n state\\n target_url: targetUrl\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:31:09 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4895", + "X-RateLimit-Reset": "1568125723", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7B72:3ED74:19D812:1F9D45:5D77A59C", + "content-length": "276", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDY6Q29tbWl0MjA3NTY3MDExOjU4OTE4NTE4YWQ3NzZmYmExZjE5NmNlMDNlNzgyOGFmMTE0MjE1Mjk=\",\"sha\":\"58918518ad776fba1f196ce03e7828af11421529\",\"__typename\":\"Commit\",\"status\":null}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"unpublishedPrBranches\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\"},\"query\":\"query unpublishedPrBranches($owner: String!, $name: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n refs(refPrefix: \\\"refs/heads/cms/\\\", last: 50) {\\n nodes {\\n id\\n associatedPullRequests(last: 50, states: OPEN) {\\n nodes {\\n id\\n headRef {\\n id\\n name\\n prefix\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:31:09 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4894", + "X-RateLimit-Reset": "1568125723", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7B74:3ED82:17EF17F:1D1BAAF:5D77A59D", + "content-length": "518", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"refs\":{\"nodes\":[{\"id\":\"MDM6UmVmMjA3NTY3MDExOjE5NzAtMDEtMDEtZmlyc3QtdGl0bGU=\",\"associatedPullRequests\":{\"nodes\":[{\"id\":\"MDExOlB1bGxSZXF1ZXN0MzE1OTk1OTUz\",\"headRef\":{\"id\":\"MDM6UmVmMjA3NTY3MDExOmNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxl\",\"name\":\"cms/1970-01-01-first-title\",\"prefix\":\"refs/heads/\",\"__typename\":\"Ref\"},\"__typename\":\"PullRequest\"}],\"__typename\":\"PullRequestConnection\"},\"__typename\":\"Ref\"}],\"__typename\":\"RefConnection\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"unpublishedBranchFile\",\"variables\":{\"headOwner\":\"owner\",\"headRepoName\":\"repo\",\"headExpression\":\"cms/1970-01-01-first-title:content/posts/1970-01-01-first-title.md\",\"baseOwner\":\"owner\",\"baseRepoName\":\"repo\",\"baseExpression\":\"master:content/posts/1970-01-01-first-title.md\"},\"query\":\"query unpublishedBranchFile($headOwner: String!, $headRepoName: String!, $headExpression: String!, $baseOwner: String!, $baseRepoName: String!, $baseExpression: String!) {\\n head: repository(owner: $headOwner, name: $headRepoName) {\\n ...RepositoryParts\\n object(expression: $headExpression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n base: repository(owner: $baseOwner, name: $baseRepoName) {\\n ...RepositoryParts\\n object(expression: $baseExpression) {\\n ... on Blob {\\n id\\n oid\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:31:10 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4893", + "X-RateLimit-Reset": "1568125723", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7B76:1510E:A7E946:CC81C1:5D77A59D", + "content-length": "496", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"head\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzU2NzAxMTphMDQxMjQ1ODE0ODkyZTNmNzNmNjNjYTU0MzMzZmRhNjQ5YjdmYzBi\",\"text\":\"---\\ntemplate: post\\ntitle: first title\\ndraft: true\\ndate: 1970-01-01T00:00:00.000Z\\ndescription: first description\\ncategory: first category\\ntags:\\n - tag1\\n---\\nfirst body\\n\",\"is_binary\":false,\"__typename\":\"Blob\"}},\"base\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"object\":null}}}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:31:11 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4922", + "X-RateLimit-Reset": "1568125713", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"365812b7f48e165f7810384af52fce4d\"", + "Last-Modified": "Tue, 10 Sep 2019 13:28:36 GMT", + "X-Poll-Interval": "300", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B79:244E7:113C108:1505F5F:5D77A59E", + "content-length": "484", + "connection": "keep-alive" + }, + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NTY3MDExOnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"2037f77112241e0beebb186d48d2dc9b8805bb3a\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/2037f77112241e0beebb186d48d2dc9b8805bb3a\"\n }\n}\n", + "status": 200 + }, + { + "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjMsImhlYWQiOiI1ODkxODUxOGFkNzc2ZmJhMWYxOTZjZTAzZTc4MjhhZjExNDIxNTI5In0sInVzZXIiOiJvd25lciIsInN0YXR1cyI6InBlbmRpbmdfcHVibGlzaCIsImJyYW5jaCI6ImNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxlIiwiY29sbGVjdGlvbiI6InBvc3RzIiwiY29tbWl0TWVzc2FnZSI6IkNyZWF0ZSBQb3N0IOKAnDE5NzAtMDEtMDEtZmlyc3QtdGl0bGXigJ0iLCJ0aXRsZSI6ImZpcnN0IHRpdGxlIiwiZGVzY3JpcHRpb24iOiJmaXJzdCBkZXNjcmlwdGlvbiIsIm9iamVjdHMiOnsiZW50cnkiOnsicGF0aCI6ImNvbnRlbnQvcG9zdHMvMTk3MC0wMS0wMS1maXJzdC10aXRsZS5tZCIsInNoYSI6ImEwNDEyNDU4MTQ4OTJlM2Y3M2Y2M2NhNTQzMzNmZGE2NDliN2ZjMGIifSwiZmlsZXMiOltdfSwidGltZVN0YW1wIjoiMTk3MC0wMS0wMVQwMDowMDowMC4zMDBaIn0=\",\"encoding\":\"base64\"}", + "method": "POST", + "url": "/repos/owner/repo/git/blobs?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:31:12 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "207", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4921", + "X-RateLimit-Reset": "1568125713", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"02bba0e63c25483da6c732a9ae064e58\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/blobs/8cb25bb9d345488f514facf57064d87d1cfffd6c", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B7B:3ED82:17EF53A:1D1BF4B:5D77A59F", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"8cb25bb9d345488f514facf57064d87d1cfffd6c\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/8cb25bb9d345488f514facf57064d87d1cfffd6c\"\n}\n", + "status": 201 + }, + { + "body": "{\"operationName\":\"commitTree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"2037f77112241e0beebb186d48d2dc9b8805bb3a\"},\"query\":\"query commitTree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n commit: object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n tree {\\n ...ObjectParts\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:31:12 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4892", + "X-RateLimit-Reset": "1568125723", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7B7C:9D1D:185C80:1DC248:5D77A5A0", + "content-length": "698", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"commit\":{\"id\":\"MDY6Q29tbWl0MjA3NTY3MDExOjIwMzdmNzcxMTIyNDFlMGJlZWJiMTg2ZDQ4ZDJkYzliODgwNWJiM2E=\",\"sha\":\"2037f77112241e0beebb186d48d2dc9b8805bb3a\",\"__typename\":\"Commit\",\"tree\":{\"id\":\"MDQ6VHJlZTIwNzU2NzAxMTpiZDU1ZTc2OGM0MDE2ODg5NDZmMDkyNzk1NzA3NDMwYjlkYTY2MzFi\",\"sha\":\"bd55e768c401688946f092795707430b9da6631b\",\"__typename\":\"Tree\",\"entries\":[{\"path\":\"1970-01-01-first-title.json\",\"sha\":\"6ef1106deb92c54b6e5668a4e31bc271d82b4cd8\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"README.md\",\"sha\":\"98787d1bd948850444433e91a43091a76c4eb455\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"}]}}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"tree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"2037f77112241e0beebb186d48d2dc9b8805bb3a\"},\"query\":\"query tree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n tree: object(oid: $sha) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:31:12 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4891", + "X-RateLimit-Reset": "1568125723", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7B7F:15106:2A0F:593D:5D77A5A0", + "content-length": "260", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"tree\":{\"id\":\"MDY6Q29tbWl0MjA3NTY3MDExOjIwMzdmNzcxMTIyNDFlMGJlZWJiMTg2ZDQ4ZDJkYzliODgwNWJiM2E=\",\"sha\":\"2037f77112241e0beebb186d48d2dc9b8805bb3a\",\"__typename\":\"Commit\"}}}}\n", + "status": 200 + }, + { + "body": "{\"base_tree\":\"2037f77112241e0beebb186d48d2dc9b8805bb3a\",\"tree\":[{\"path\":\"1970-01-01-first-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"8cb25bb9d345488f514facf57064d87d1cfffd6c\"}]}", + "method": "POST", + "url": "/repos/owner/repo/git/trees?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:31:13 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "895", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4920", + "X-RateLimit-Reset": "1568125713", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"8bbef2d853d49f2cf3c53a06fba226ef\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/trees/c9f2b3e95b0887464c2dce2d872c927bf7656e77", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BCC:9D1F:9E531C:C13016:5D77A5A1", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"c9f2b3e95b0887464c2dce2d872c927bf7656e77\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/c9f2b3e95b0887464c2dce2d872c927bf7656e77\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"8cb25bb9d345488f514facf57064d87d1cfffd6c\",\n \"size\": 472,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/8cb25bb9d345488f514facf57064d87d1cfffd6c\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"message\":\"Updating “1970-01-01-first-title” metadata\",\"tree\":\"c9f2b3e95b0887464c2dce2d872c927bf7656e77\",\"parents\":[\"2037f77112241e0beebb186d48d2dc9b8805bb3a\"]}", + "method": "POST", + "url": "/repos/owner/repo/git/commits?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:31:14 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "1510", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4919", + "X-RateLimit-Reset": "1568125713", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"1da1432041eda26c88217e82f1595ce0\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/commits/ced6de6b99339f1e68961d298ce115432e3380c8", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BCE:1510E:A7EC76:CC85AA:5D77A5A1", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"ced6de6b99339f1e68961d298ce115432e3380c8\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NTY3MDExOmNlZDZkZTZiOTkzMzlmMWU2ODk2MWQyOThjZTExNTQzMmUzMzgwYzg=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/ced6de6b99339f1e68961d298ce115432e3380c8\",\n \"html_url\": \"https://github.com/owner/repo/commit/ced6de6b99339f1e68961d298ce115432e3380c8\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T13:31:14Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T13:31:14Z\"\n },\n \"tree\": {\n \"sha\": \"c9f2b3e95b0887464c2dce2d872c927bf7656e77\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/c9f2b3e95b0887464c2dce2d872c927bf7656e77\"\n },\n \"message\": \"Updating “1970-01-01-first-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"2037f77112241e0beebb186d48d2dc9b8805bb3a\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/2037f77112241e0beebb186d48d2dc9b8805bb3a\",\n \"html_url\": \"https://github.com/owner/repo/commit/2037f77112241e0beebb186d48d2dc9b8805bb3a\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "status": 201 + }, + { + "body": "{\"operationName\":\"statues\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"58918518ad776fba1f196ce03e7828af11421529\"},\"query\":\"query statues($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n status {\\n id\\n contexts {\\n id\\n context\\n state\\n target_url: targetUrl\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:31:15 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4890", + "X-RateLimit-Reset": "1568125723", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7BD4:1510D:44B587:543CA3:5D77A5A2", + "content-length": "276", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDY6Q29tbWl0MjA3NTY3MDExOjU4OTE4NTE4YWQ3NzZmYmExZjE5NmNlMDNlNzgyOGFmMTE0MjE1Mjk=\",\"sha\":\"58918518ad776fba1f196ce03e7828af11421529\",\"__typename\":\"Commit\",\"status\":null}}}}\n", + "status": 200 + }, + { + "body": "{\"sha\":\"ced6de6b99339f1e68961d298ce115432e3380c8\",\"force\":false}", + "method": "PATCH", + "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:31:15 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4918", + "X-RateLimit-Reset": "1568125713", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"e971108a813c7925643e8912f4dc7a35\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BD2:244EB:17801F2:1C88A61:5D77A5A2", + "content-length": "484", + "connection": "keep-alive" + }, + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NTY3MDExOnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"ced6de6b99339f1e68961d298ce115432e3380c8\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/ced6de6b99339f1e68961d298ce115432e3380c8\"\n }\n}\n", + "status": 200 + }, + { + "body": "{\"commit_message\":\"Automatically generated. Merged on Netlify CMS.\",\"sha\":\"58918518ad776fba1f196ce03e7828af11421529\",\"merge_method\":\"merge\"}", + "method": "PUT", + "url": "/repos/owner/repo/pulls/3/merge?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:31:18 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4917", + "X-RateLimit-Reset": "1568125713", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"18708ed5c8765509fb7c1c84088f1f9b\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BDF:3ED82:17EFE8C:1D1CACA:5D77A5A4", + "content-length": "123", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"b06a032c3320e638cf9c9bc863e1345cf52f5b75\",\n \"merged\": true,\n \"message\": \"Pull Request successfully merged\"\n}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"deleteRef\",\"variables\":{\"deleteRefInput\":{\"refId\":\"MDM6UmVmMjA3NTY3MDExOmNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxl\"}},\"query\":\"mutation deleteRef($deleteRefInput: DeleteRefInput!) {\\n deleteRef(input: $deleteRefInput) {\\n clientMutationId\\n __typename\\n }\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:31:19 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4889", + "X-RateLimit-Reset": "1568125723", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7BE0:B4E0:162F226:1AFEAC4:5D77A5A6", + "content-length": "81", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"deleteRef\":{\"clientMutationId\":null,\"__typename\":\"DeleteRefPayload\"}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"master:content/posts/1970-01-01-first-title.md\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:31:20 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4888", + "X-RateLimit-Reset": "1568125723", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7BE2:244E7:113CD64:1506E6C:5D77A5A7", + "content-length": "413", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzU2NzAxMTphMDQxMjQ1ODE0ODkyZTNmNzNmNjNjYTU0MzMzZmRhNjQ5YjdmYzBi\",\"text\":\"---\\ntemplate: post\\ntitle: first title\\ndraft: true\\ndate: 1970-01-01T00:00:00.000Z\\ndescription: first description\\ncategory: first category\\ntags:\\n - tag1\\n---\\nfirst body\\n\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"statues\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"58918518ad776fba1f196ce03e7828af11421529\"},\"query\":\"query statues($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n status {\\n id\\n contexts {\\n id\\n context\\n state\\n target_url: targetUrl\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:31:20 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4887", + "X-RateLimit-Reset": "1568125723", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7BE6:2B24:173A3D1:1C3AF92:5D77A5A8", + "content-length": "276", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDY6Q29tbWl0MjA3NTY3MDExOjU4OTE4NTE4YWQ3NzZmYmExZjE5NmNlMDNlNzgyOGFmMTE0MjE1Mjk=\",\"sha\":\"58918518ad776fba1f196ce03e7828af11421529\",\"__typename\":\"Commit\",\"status\":null}}}}\n", + "status": 200 + } +] \ No newline at end of file diff --git a/cypress/fixtures/Github Backend Editorial Workflow - GraphQL API - Open Authoring__can return entry to draft and delete it.json b/cypress/fixtures/Github Backend Editorial Workflow - GraphQL API - Open Authoring__can return entry to draft and delete it.json new file mode 100644 index 00000000..e7de7160 --- /dev/null +++ b/cypress/fixtures/Github Backend Editorial Workflow - GraphQL API - Open Authoring__can return entry to draft and delete it.json @@ -0,0 +1,1990 @@ +[ + { + "method": "GET", + "url": "/user", + "headers": { + "Date": "Wed, 11 Sep 2019 06:20:34 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4962", + "X-RateLimit-Reset": "1568186244", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"9f179b9cd93543dd93e6a5636e9e17a6\"", + "Last-Modified": "Sun, 01 Sep 2019 18:04:11 GMT", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A54:2B24:2A099F6:3342D74:5D789232", + "content-length": "1333", + "connection": "keep-alive" + }, + "response": "{\"login\":\"forkOwner\",\"id\":2,\"avatar_url\":\"https://avatars1.githubusercontent.com/u/7892489?v=4\",\"name\":\"forkOwner\"}", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/collaborators/forkOwner/permission", + "headers": { + "Date": "Wed, 11 Sep 2019 06:20:35 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "403 Forbidden", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4961", + "X-RateLimit-Reset": "1568186244", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A56:244EB:2A687AF:33AB1FE:5D789233", + "content-length": "185", + "connection": "keep-alive" + }, + "response": "{\n \"message\": \"Must have push access to view collaborator permission.\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/collaborators/#review-a-users-permission-level\"\n}\n", + "status": 403 + }, + { + "method": "POST", + "url": "/repos/owner/repo/forks", + "headers": { + "Date": "Wed, 11 Sep 2019 06:20:36 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "22055", + "Server": "GitHub.com", + "Status": "202 Accepted", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4960", + "X-RateLimit-Reset": "1568186244", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A58:244E7:1F41F95:263D986:5D789233", + "connection": "keep-alive" + }, + "response": "{\n \"id\": 207737967,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc3Mzc5Njc=\",\n \"name\": \"repo\",\n \"full_name\": \"forkOwner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"forkOwner\",\n \"id\": 53494188,\n \"node_id\": \"MDQ6VXNlcjUzNDk0MTg4\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/forkOwner\",\n \"html_url\": \"https://github.com/forkOwner\",\n \"followers_url\": \"https://api.github.com/users/forkOwner/followers\",\n \"following_url\": \"https://api.github.com/users/forkOwner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/forkOwner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/forkOwner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/forkOwner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/forkOwner/orgs\",\n \"repos_url\": \"https://api.github.com/users/forkOwner/repos\",\n \"events_url\": \"https://api.github.com/users/forkOwner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/forkOwner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/forkOwner/repo\",\n \"description\": null,\n \"fork\": true,\n \"url\": \"https://api.github.com/repos/forkOwner/repo\",\n \"forks_url\": \"https://api.github.com/repos/forkOwner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/forkOwner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/forkOwner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/forkOwner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/forkOwner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/forkOwner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/forkOwner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/forkOwner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/forkOwner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/forkOwner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/forkOwner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/forkOwner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/forkOwner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/forkOwner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/forkOwner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/forkOwner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/forkOwner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/forkOwner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/forkOwner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/forkOwner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/forkOwner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/forkOwner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/forkOwner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/forkOwner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/forkOwner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/forkOwner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/forkOwner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/forkOwner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/forkOwner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/forkOwner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/forkOwner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/forkOwner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/forkOwner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/forkOwner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/forkOwner/repo/deployments\",\n \"created_at\": \"2019-09-11T06:20:36Z\",\n \"updated_at\": \"2019-09-11T06:20:26Z\",\n \"pushed_at\": \"2019-09-11T06:20:23Z\",\n \"git_url\": \"git://github.com/forkOwner/repo.git\",\n \"ssh_url\": \"git@github.com:forkOwner/repo.git\",\n \"clone_url\": \"https://github.com/forkOwner/repo.git\",\n \"svn_url\": \"https://github.com/forkOwner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": null,\n \"has_issues\": false,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\",\n \"permissions\": {\n \"admin\": true,\n \"push\": true,\n \"pull\": true\n },\n \"parent\": {\n \"id\": 207737863,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc3Mzc4NjM=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-11T06:19:56Z\",\n \"updated_at\": \"2019-09-11T06:20:26Z\",\n \"pushed_at\": \"2019-09-11T06:20:23Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n },\n \"source\": {\n \"id\": 207737863,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc3Mzc4NjM=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-11T06:19:56Z\",\n \"updated_at\": \"2019-09-11T06:20:26Z\",\n \"pushed_at\": \"2019-09-11T06:20:23Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n },\n \"network_count\": 1,\n \"subscribers_count\": 0\n}\n", + "status": 202 + }, + { + "method": "GET", + "url": "/repos/forkOwner/repo", + "headers": { + "Date": "Wed, 11 Sep 2019 06:20:37 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4959", + "X-RateLimit-Reset": "1568186244", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"cdc4f6dd872912fd0c3112eb26138fe0\"", + "Last-Modified": "Wed, 11 Sep 2019 06:20:26 GMT", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A5A:15110:2B8280D:34F981B:5D789234", + "content-length": "22145", + "connection": "keep-alive" + }, + "response": "{\n \"id\": 207737967,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc3Mzc5Njc=\",\n \"name\": \"repo\",\n \"full_name\": \"forkOwner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"forkOwner\",\n \"id\": 53494188,\n \"node_id\": \"MDQ6VXNlcjUzNDk0MTg4\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/forkOwner\",\n \"html_url\": \"https://github.com/forkOwner\",\n \"followers_url\": \"https://api.github.com/users/forkOwner/followers\",\n \"following_url\": \"https://api.github.com/users/forkOwner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/forkOwner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/forkOwner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/forkOwner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/forkOwner/orgs\",\n \"repos_url\": \"https://api.github.com/users/forkOwner/repos\",\n \"events_url\": \"https://api.github.com/users/forkOwner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/forkOwner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/forkOwner/repo\",\n \"description\": null,\n \"fork\": true,\n \"url\": \"https://api.github.com/repos/forkOwner/repo\",\n \"forks_url\": \"https://api.github.com/repos/forkOwner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/forkOwner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/forkOwner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/forkOwner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/forkOwner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/forkOwner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/forkOwner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/forkOwner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/forkOwner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/forkOwner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/forkOwner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/forkOwner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/forkOwner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/forkOwner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/forkOwner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/forkOwner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/forkOwner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/forkOwner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/forkOwner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/forkOwner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/forkOwner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/forkOwner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/forkOwner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/forkOwner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/forkOwner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/forkOwner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/forkOwner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/forkOwner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/forkOwner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/forkOwner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/forkOwner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/forkOwner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/forkOwner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/forkOwner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/forkOwner/repo/deployments\",\n \"created_at\": \"2019-09-11T06:20:36Z\",\n \"updated_at\": \"2019-09-11T06:20:26Z\",\n \"pushed_at\": \"2019-09-11T06:20:23Z\",\n \"git_url\": \"git://github.com/forkOwner/repo.git\",\n \"ssh_url\": \"git@github.com:forkOwner/repo.git\",\n \"clone_url\": \"https://github.com/forkOwner/repo.git\",\n \"svn_url\": \"https://github.com/forkOwner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": null,\n \"has_issues\": false,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\",\n \"permissions\": {\n \"admin\": true,\n \"push\": true,\n \"pull\": true\n },\n \"allow_squash_merge\": true,\n \"allow_merge_commit\": true,\n \"allow_rebase_merge\": true,\n \"parent\": {\n \"id\": 207737863,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc3Mzc4NjM=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-11T06:19:56Z\",\n \"updated_at\": \"2019-09-11T06:20:26Z\",\n \"pushed_at\": \"2019-09-11T06:20:23Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n },\n \"source\": {\n \"id\": 207737863,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc3Mzc4NjM=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-11T06:19:56Z\",\n \"updated_at\": \"2019-09-11T06:20:26Z\",\n \"pushed_at\": \"2019-09-11T06:20:23Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n },\n \"network_count\": 1,\n \"subscribers_count\": 0\n}\n", + "status": 200 + }, + { + "body": "{\"operationName\":null,\"variables\":{},\"query\":\"{\\n viewer {\\n id\\n avatar_url: avatarUrl\\n name\\n login\\n __typename\\n }\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Wed, 11 Sep 2019 06:20:37 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4969", + "X-RateLimit-Reset": "1568186258", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7A5C:15110:2B828E9:34F9923:5D789235", + "content-length": "176", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"viewer\":{\"id\":\"MDQ6VXNlcjUzNDk0MTg4\",\"avatar_url\":\"https://avatars1.githubusercontent.com/u/7892489?v=4\",\"name\":null,\"login\":\"forkOwner\",\"__typename\":\"User\"}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"repoPermission\",\"variables\":{\"owner\":\"forkOwner\",\"name\":\"repo\"},\"query\":\"query repoPermission($owner: String!, $name: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n viewerPermission\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Wed, 11 Sep 2019 06:20:38 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4968", + "X-RateLimit-Reset": "1568186258", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7A63:2B24:2A09EC1:3343324:5D789236", + "content-length": "119", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3Mzc5Njc=\",\"__typename\":\"Repository\",\"viewerPermission\":\"ADMIN\"}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"files\",\"variables\":{\"owner\":\"forkOwner\",\"name\":\"repo\",\"expression\":\"master:content/posts\"},\"query\":\"query files($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...FileEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment FileEntryParts on TreeEntry {\\n name\\n sha: oid\\n type\\n blob: object {\\n ... on Blob {\\n size: byteSize\\n __typename\\n }\\n __typename\\n }\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Wed, 11 Sep 2019 06:20:40 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4967", + "X-RateLimit-Reset": "1568186258", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7A6A:2B24:2A0A0D4:33435A7:5D789237", + "content-length": "1218", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3Mzc5Njc=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6VHJlZTIwNzczNzk2NzozNDg5MjU3NWUyMTZjMDZlNzU3MDkzZjAzNmJkOGUwNTdjNzhhNTJm\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"__typename\":\"Tree\",\"entries\":[{\"name\":\"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\"sha\":\"6d51a38aed7139d2117724b1e307657b6ff2d043\",\"type\":\"blob\",\"blob\":{\"size\":1707,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\"sha\":\"d0582dd245a3f408fb3fe2333bf01400007476e9\",\"type\":\"blob\",\"blob\":{\"size\":2565,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2016-02-02---A-Brief-History-of-Typography.md\",\"sha\":\"0eea554365f002d0f1572af9a58522d335a794d5\",\"type\":\"blob\",\"blob\":{\"size\":2786,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2017-18-08---The-Birth-of-Movable-Type.md\",\"sha\":\"44f78c474d04273185a95821426f75affc9b0044\",\"type\":\"blob\",\"blob\":{\"size\":16071,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\"sha\":\"a532f0a9445cdf90a19c6812cff89d1674991774\",\"type\":\"blob\",\"blob\":{\"size\":7465,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"}]}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"files\",\"variables\":{\"owner\":\"forkOwner\",\"name\":\"repo\",\"expression\":\"master:static/media\"},\"query\":\"query files($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...FileEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment FileEntryParts on TreeEntry {\\n name\\n sha: oid\\n type\\n blob: object {\\n ... on Blob {\\n size: byteSize\\n __typename\\n }\\n __typename\\n }\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Wed, 11 Sep 2019 06:20:41 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4966", + "X-RateLimit-Reset": "1568186258", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7A78:15110:2B82CFB:34F9E0D:5D789238", + "content-length": "1837", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3Mzc5Njc=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6VHJlZTIwNzczNzk2Nzo5Yjc2OTliNTdlMTQzMDkxMGRiODI4MzFkY2Y2YjhhMWQxZGJkYWM5\",\"sha\":\"9b7699b57e1430910db82831dcf6b8a1d1dbdac9\",\"__typename\":\"Tree\",\"entries\":[{\"name\":\"42-line-bible.jpg\",\"sha\":\"41c8d12f9ca5864beb827c381fbeff935209d5fb\",\"type\":\"blob\",\"blob\":{\"size\":671242,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"gutenberg.jpg\",\"sha\":\"04315e355873ea5d358d9c371c39a6845c1ae4ae\",\"type\":\"blob\",\"blob\":{\"size\":155002,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-0.jpg\",\"sha\":\"b70a1b64fd4fa9635823231a0ba92c6dc9393f16\",\"type\":\"blob\",\"blob\":{\"size\":660287,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-1.jpg\",\"sha\":\"05eedae372b829c62501ac751b2d42dcc432541b\",\"type\":\"blob\",\"blob\":{\"size\":392411,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-2.jpg\",\"sha\":\"53845ed35faf8939bea242bb85eda7c324b1be0b\",\"type\":\"blob\",\"blob\":{\"size\":99147,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-3.jpg\",\"sha\":\"8b2339d97069e826fae1f156212e40ae458454e3\",\"type\":\"blob\",\"blob\":{\"size\":358022,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-4.jpg\",\"sha\":\"a8f6f21253a67a4284b5a953b2fe633d44152ecd\",\"type\":\"blob\",\"blob\":{\"size\":114837,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"movable-type.jpg\",\"sha\":\"57b4e925ea00bd8e195cf4418eb6eb2995ea5f10\",\"type\":\"blob\",\"blob\":{\"size\":559028,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"printing-press.jpg\",\"sha\":\"d27f56c9437d9becd2f56cc627c9322c2f1f61f6\",\"type\":\"blob\",\"blob\":{\"size\":279283,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"type-through-time.jpg\",\"sha\":\"3f08366a805c51a60ec5056010f22de4ba08abaa\",\"type\":\"blob\",\"blob\":{\"size\":117689,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"}]}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"forkOwner\",\"name\":\"repo\",\"expression\":\"d0582dd245a3f408fb3fe2333bf01400007476e9\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Wed, 11 Sep 2019 06:20:41 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4964", + "X-RateLimit-Reset": "1568186258", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7A8E:3ED82:2B8ADAB:3511E6D:5D789239", + "content-length": "2866", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3Mzc5Njc=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzczNzk2NzpkMDU4MmRkMjQ1YTNmNDA4ZmIzZmUyMzMzYmYwMTQwMDAwNzQ3NmU5\",\"text\":\"---\\ntitle: The Origins of Social Stationery Lettering\\ndate: \\\"2016-12-01T22:40:32.169Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Design Culture\\\"\\ndescription: \\\"Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante.\\\"\\ncanonical: ''\\n---\\n\\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \\n\\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\\n\\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-3.jpg)\\n\\n## Header Level 2\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \\n\\n
\\n\\t
\\n\\t\\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\\n\\t\\t
\\n\\t\\t\\t— Aliquam tincidunt mauris eu risus.\\n\\t\\t
\\n\\t
\\n
\\n\\n### Header Level 3\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\\n\\n```css\\n#header h1 a {\\n display: block;\\n width: 300px;\\n height: 80px;\\n}\\n```\\n\\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"forkOwner\",\"name\":\"repo\",\"expression\":\"6d51a38aed7139d2117724b1e307657b6ff2d043\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Wed, 11 Sep 2019 06:20:41 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4965", + "X-RateLimit-Reset": "1568186258", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7A7E:9D20:1EDA212:25C937A:5D789239", + "content-length": "1973", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3Mzc5Njc=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzczNzk2Nzo2ZDUxYTM4YWVkNzEzOWQyMTE3NzI0YjFlMzA3NjU3YjZmZjJkMDQz\",\"text\":\"---\\ntitle: Perfecting the Art of Perfection\\ndate: \\\"2016-09-01T23:46:37.121Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Design Inspiration\\\"\\ntags:\\n - \\\"Handwriting\\\"\\n - \\\"Learning to write\\\"\\ndescription: \\\"Quisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\\\"\\ncanonical: ''\\n---\\n\\nQuisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\\n\\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-2.jpg)\\n\\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. \\n\\nPraesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"forkOwner\",\"name\":\"repo\",\"expression\":\"0eea554365f002d0f1572af9a58522d335a794d5\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Wed, 11 Sep 2019 06:20:42 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4963", + "X-RateLimit-Reset": "1568186258", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7AA4:9D20:1EDA2F6:25C9485:5D78923A", + "content-length": "3102", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3Mzc5Njc=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzczNzk2NzowZWVhNTU0MzY1ZjAwMmQwZjE1NzJhZjlhNTg1MjJkMzM1YTc5NGQ1\",\"text\":\"---\\ntitle: \\\"A Brief History of Typography\\\"\\ndate: \\\"2016-02-02T22:40:32.169Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Design Inspiration\\\"\\ntags:\\n - \\\"Linotype\\\"\\n - \\\"Monotype\\\"\\n - \\\"History of typography\\\"\\n - \\\"Helvetica\\\"\\ndescription: \\\"Morbi in sem quis dui placerat ornare. Pellentesque odio nisi, euismod in, pharetra a, ultricies in, diam. Sed arcu. Cras consequat.\\\"\\ncanonical: ''\\n---\\n\\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \\n\\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\\n\\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-0.jpg)\\n\\n## Header Level 2\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \\n\\n
\\n\\t
\\n\\t\\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\\n\\t\\t
\\n\\t\\t\\t— Aliquam tincidunt mauris eu risus.\\n\\t\\t
\\n\\t
\\n
\\n\\n### Header Level 3\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\\n\\n```css\\n#header h1 a {\\n display: block;\\n width: 300px;\\n height: 80px;\\n}\\n```\\n\\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"forkOwner\",\"name\":\"repo\",\"expression\":\"44f78c474d04273185a95821426f75affc9b0044\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Wed, 11 Sep 2019 06:20:42 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4962", + "X-RateLimit-Reset": "1568186258", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7AA2:B4DC:1305AD9:1729858:5D78923A", + "content-length": "16478", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3Mzc5Njc=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzczNzk2Nzo0NGY3OGM0NzRkMDQyNzMxODVhOTU4MjE0MjZmNzVhZmZjOWIwMDQ0\",\"text\":\"---\\ntitle: \\\"Johannes Gutenberg: The Birth of Movable Type\\\"\\ndate: \\\"2017-08-18T22:12:03.284Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Typography\\\"\\ntags:\\n - \\\"Open source\\\"\\n - \\\"Gatsby\\\"\\n - \\\"Typography\\\"\\ndescription: \\\"German inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\\\"\\ncanonical: ''\\n---\\n\\nGerman inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\\n\\n**Johannes Gensfleisch zur Laden zum Gutenberg** (c. 1398 – 1468) was a German blacksmith, goldsmith, printer, and publisher who introduced printing to Europe. His invention of mechanical movable type printing started the Printing Revolution and is widely regarded as the most important event of the modern period. It played a key role in the development of the Renaissance, Reformation, the Age of Enlightenment, and the Scientific revolution and laid the material basis for the modern knowledge-based economy and the spread of learning to the masses.\\n\\n
\\n\\t\\\"Gutenberg\\\"\\n\\t
Johannes Gutenberg
\\n
\\n\\nWith his invention of the printing press, Gutenberg was the first European to use movable type printing, in around 1439. Among his many contributions to printing are: the invention of a process for mass-producing movable type; the use of oil-based ink; and the use of a wooden printing press similar to the agricultural screw presses of the period. His truly epochal invention was the combination of these elements into a practical system that allowed the mass production of printed books and was economically viable for printers and readers alike. Gutenberg's method for making type is traditionally considered to have included a type metal alloy and a hand mould for casting type. The alloy was a mixture of lead, tin, and antimony that melted at a relatively low temperature for faster and more economical casting, cast well, and created a durable type.\\n\\nIn Renaissance Europe, the arrival of mechanical movable type printing introduced the era of mass communication which permanently altered the structure of society. The relatively unrestricted circulation of information — including revolutionary ideas — transcended borders, captured the masses in the Reformation and threatened the power of political and religious authorities; the sharp increase in literacy broke the monopoly of the literate elite on education and learning and bolstered the emerging middle class. Across Europe, the increasing cultural self-awareness of its people led to the rise of proto-nationalism, accelerated by the flowering of the European vernacular languages to the detriment of Latin's status as lingua franca. In the 19th century, the replacement of the hand-operated Gutenberg-style press by steam-powered rotary presses allowed printing on an industrial scale, while Western-style printing was adopted all over the world, becoming practically the sole medium for modern bulk printing.\\n\\nThe use of movable type was a marked improvement on the handwritten manuscript, which was the existing method of book production in Europe, and upon woodblock printing, and revolutionized European book-making. Gutenberg's printing technology spread rapidly throughout Europe and later the world.\\n\\nHis major work, the Gutenberg Bible (also known as the 42-line Bible), has been acclaimed for its high aesthetic and technical quality.\\n\\n## Printing Press\\n\\nAround 1439, Gutenberg was involved in a financial misadventure making polished metal mirrors (which were believed to capture holy light from religious relics) for sale to pilgrims to Aachen: in 1439 the city was planning to exhibit its collection of relics from Emperor Charlemagne but the event was delayed by one year due to a severe flood and the capital already spent could not be repaid. When the question of satisfying the investors came up, Gutenberg is said to have promised to share a “secret”. It has been widely speculated that this secret may have been the idea of printing with movable type. Also around 1439–1440, the Dutch Laurens Janszoon Coster came up with the idea of printing. Legend has it that the idea came to him “like a ray of light”.\\n\\n
\\n\\t\\\"Early\\n\\t
Early wooden printing press as depicted in 1568.
\\n
\\n\\nUntil at least 1444 he lived in Strasbourg, most likely in the St. Arbogast parish. It was in Strasbourg in 1440 that Gutenberg is said to have perfected and unveiled the secret of printing based on his research, mysteriously entitled Kunst und Aventur (art and enterprise). It is not clear what work he was engaged in, or whether some early trials with printing from movable type may have been conducted there. After this, there is a gap of four years in the record. In 1448, he was back in Mainz, where he took out a loan from his brother-in-law Arnold Gelthus, quite possibly for a printing press or related paraphernalia. By this date, Gutenberg may have been familiar with intaglio printing; it is claimed that he had worked on copper engravings with an artist known as the Master of Playing Cards.\\n\\nBy 1450, the press was in operation, and a German poem had been printed, possibly the first item to be printed there. Gutenberg was able to convince the wealthy moneylender Johann Fust for a loan of 800 guilders. Peter Schöffer, who became Fust’s son-in-law, also joined the enterprise. Schöffer had worked as a scribe in Paris and is believed to have designed some of the first typefaces.\\n\\n
\\n\\t
\\n\\t\\t

All that has been written to me about that marvelous man seen at Frankfurt is true. I have not seen complete Bibles but only a number of quires of various books of the Bible. The script was very neat and legible, not at all difficult to follow—your grace would be able to read it without effort, and indeed without glasses.

\\n\\t\\t
\\n\\t\\t\\t—Future pope Pius II in a letter to Cardinal Carvajal, March 1455\\n\\t\\t
\\n\\t
\\n
\\n\\nGutenberg's workshop was set up at Hof Humbrecht, a property belonging to a distant relative. It is not clear when Gutenberg conceived the Bible project, but for this he borrowed another 800 guilders from Fust, and work commenced in 1452. At the same time, the press was also printing other, more lucrative texts (possibly Latin grammars). There is also some speculation that there may have been two presses, one for the pedestrian texts, and one for the Bible. One of the profit-making enterprises of the new press was the printing of thousands of indulgences for the church, documented from 1454–55.\\n\\nIn 1455 Gutenberg completed his 42-line Bible, known as the Gutenberg Bible. About 180 copies were printed, most on paper and some on vellum.\\n\\n## Court Case\\n\\nSome time in 1456, there was a dispute between Gutenberg and Fust, and Fust demanded his money back, accusing Gutenberg of misusing the funds. Meanwhile the expenses of the Bible project had proliferated, and Gutenberg's debt now exceeded 20,000 guilders. Fust sued at the archbishop's court. A November 1455 legal document records that there was a partnership for a \\\"project of the books,\\\" the funds for which Gutenberg had used for other purposes, according to Fust. The court decided in favor of Fust, giving him control over the Bible printing workshop and half of all printed Bibles.\\n\\nThus Gutenberg was effectively bankrupt, but it appears he retained (or re-started) a small printing shop, and participated in the printing of a Bible in the town of Bamberg around 1459, for which he seems at least to have supplied the type. But since his printed books never carry his name or a date, it is difficult to be certain, and there is consequently a considerable scholarly debate on this subject. It is also possible that the large Catholicon dictionary, 300 copies of 754 pages, printed in Mainz in 1460, may have been executed in his workshop.\\n\\nMeanwhile, the Fust–Schöffer shop was the first in Europe to bring out a book with the printer's name and date, the Mainz Psalter of August 1457, and while proudly proclaiming the mechanical process by which it had been produced, it made no mention of Gutenberg.\\n\\n## Later Life\\n\\nIn 1462, during a conflict between two archbishops, Mainz was sacked by archbishop Adolph von Nassau, and Gutenberg was exiled. An old man by now, he moved to Eltville where he may have initiated and supervised a new printing press belonging to the brothers Bechtermünze.\\n\\nIn January 1465, Gutenberg's achievements were recognized and he was given the title Hofmann (gentleman of the court) by von Nassau. This honor included a stipend, an annual court outfit, as well as 2,180 litres of grain and 2,000 litres of wine tax-free. It is believed he may have moved back to Mainz around this time, but this is not certain.\\n\\n***\\n\\nGutenberg died in 1468 and was buried in the Franciscan church at Mainz, his contributions largely unknown. This church and the cemetery were later destroyed, and Gutenberg's grave is now lost.\\n\\nIn 1504, he was mentioned as the inventor of typography in a book by Professor Ivo Wittig. It was not until 1567 that the first portrait of Gutenberg, almost certainly an imaginary reconstruction, appeared in Heinrich Pantaleon's biography of famous Germans.\\n\\n## Printing Method With Movable Type\\n\\nGutenberg's early printing process, and what tests he may have made with movable type, are not known in great detail. His later Bibles were printed in such a way as to have required large quantities of type, some estimates suggesting as many as 100,000 individual sorts. Setting each page would take, perhaps, half a day, and considering all the work in loading the press, inking the type, pulling the impressions, hanging up the sheets, distributing the type, etc., it is thought that the Gutenberg–Fust shop might have employed as many as 25 craftsmen.\\n\\n![Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5](/media/movable-type.jpg)\\n\\n*Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5*\\n\\nGutenberg's technique of making movable type remains unclear. In the following decades, punches and copper matrices became standardized in the rapidly disseminating printing presses across Europe. Whether Gutenberg used this sophisticated technique or a somewhat primitive version has been the subject of considerable debate.\\n\\nIn the standard process of making type, a hard metal punch (made by punchcutting, with the letter carved back to front) is hammered into a softer copper bar, creating a matrix. This is then placed into a hand-held mould and a piece of type, or \\\"sort\\\", is cast by filling the mould with molten type-metal; this cools almost at once, and the resulting piece of type can be removed from the mould. The matrix can be reused to create hundreds, or thousands, of identical sorts so that the same character appearing anywhere within the book will appear very uniform, giving rise, over time, to the development of distinct styles of typefaces or fonts. After casting, the sorts are arranged into type-cases, and used to make up pages which are inked and printed, a procedure which can be repeated hundreds, or thousands, of times. The sorts can be reused in any combination, earning the process the name of “movable type”.\\n\\nThe invention of the making of types with punch, matrix and mold has been widely attributed to Gutenberg. However, recent evidence suggests that Gutenberg's process was somewhat different. If he used the punch and matrix approach, all his letters should have been nearly identical, with some variations due to miscasting and inking. However, the type used in Gutenberg's earliest work shows other variations.\\n\\n
\\n\\t
\\n\\t\\t

It is a press, certainly, but a press from which shall flow in inexhaustible streams… Through it, god will spread his word.

\\n\\t\\t
\\n\\t\\t\\t—Johannes Gutenberg\\n\\t\\t
\\n\\t
\\n
\\n\\nIn 2001, the physicist Blaise Agüera y Arcas and Princeton librarian Paul Needham, used digital scans of a Papal bull in the Scheide Library, Princeton, to carefully compare the same letters (types) appearing in different parts of the printed text. The irregularities in Gutenberg's type, particularly in simple characters such as the hyphen, suggested that the variations could not have come from either ink smear or from wear and damage on the pieces of metal on the types themselves. While some identical types are clearly used on other pages, other variations, subjected to detailed image analysis, suggested that they could not have been produced from the same matrix. Transmitted light pictures of the page also appeared to reveal substructures in the type that could not arise from traditional punchcutting techniques. They hypothesized that the method may have involved impressing simple shapes to create alphabets in “cuneiform” style in a matrix made of some soft material, perhaps sand. Casting the type would destroy the mould, and the matrix would need to be recreated to make each additional sort. This could explain the variations in the type, as well as the substructures observed in the printed images.\\n\\nThus, they feel that “the decisive factor for the birth of typography”, the use of reusable moulds for casting type, might have been a more progressive process than was previously thought. They suggest that the additional step of using the punch to create a mould that could be reused many times was not taken until twenty years later, in the 1470s. Others have not accepted some or all of their suggestions, and have interpreted the evidence in other ways, and the truth of the matter remains very uncertain.\\n\\nA 1568 history by Hadrianus Junius of Holland claims that the basic idea of the movable type came to Gutenberg from Laurens Janszoon Coster via Fust, who was apprenticed to Coster in the 1430s and may have brought some of his equipment from Haarlem to Mainz. While Coster appears to have experimented with moulds and castable metal type, there is no evidence that he had actually printed anything with this technology. He was an inventor and a goldsmith. However, there is one indirect supporter of the claim that Coster might be the inventor. The author of the Cologne Chronicle of 1499 quotes Ulrich Zell, the first printer of Cologne, that printing was performed in Mainz in 1450, but that some type of printing of lower quality had previously occurred in the Netherlands. However, the chronicle does not mention the name of Coster, while it actually credits Gutenberg as the \\\"first inventor of printing\\\" in the very same passage (fol. 312). The first securely dated book by Dutch printers is from 1471, and the Coster connection is today regarded as a mere legend.\\n\\nThe 19th century printer and typefounder Fournier Le Jeune suggested that Gutenberg might not have been using type cast with a reusable matrix, but possibly wooden types that were carved individually. A similar suggestion was made by Nash in 2004. This remains possible, albeit entirely unproven.\\n\\nIt has also been questioned whether Gutenberg used movable types at all. In 2004, Italian professor Bruno Fabbiani claimed that examination of the 42-line Bible revealed an overlapping of letters, suggesting that Gutenberg did not in fact use movable type (individual cast characters) but rather used whole plates made from a system somewhat like a modern typewriter, whereby the letters were stamped successively into the plate and then printed. However, most specialists regard the occasional overlapping of type as caused by paper movement over pieces of type of slightly unequal height.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"forkOwner\",\"name\":\"repo\",\"expression\":\"a532f0a9445cdf90a19c6812cff89d1674991774\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Wed, 11 Sep 2019 06:20:43 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4961", + "X-RateLimit-Reset": "1568186258", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7AA6:1510F:1FBA039:26B4786:5D78923A", + "content-length": "7803", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3Mzc5Njc=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzczNzk2NzphNTMyZjBhOTQ0NWNkZjkwYTE5YzY4MTJjZmY4OWQxNjc0OTkxNzc0\",\"text\":\"---\\ntitle: Humane Typography in the Digital Age\\ndate: \\\"2017-08-19T22:40:32.169Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Typography\\\"\\ntags:\\n - \\\"Design\\\"\\n - \\\"Typography\\\"\\n - \\\"Web Development\\\"\\ndescription: \\\"An Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\\\"\\ncanonical: ''\\n---\\n\\n- [The first transition](#the-first-transition)\\n- [The digital age](#the-digital-age)\\n- [Loss of humanity through transitions](#loss-of-humanity-through-transitions)\\n- [Chasing perfection](#chasing-perfection)\\n\\nAn Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\\n\\nThe typography of this industrial age was no longer handcrafted. Mass production and profit became more important. Quantity mattered more than the quality. The books and printed works in general lost a part of its humanity. The typefaces were not produced by craftsmen anymore. It was the machines printing and tying the books together now. The craftsmen had to let go of their craft and became a cog in the process. An extension of the industrial machine.\\n\\nBut the victory of the industrialism didn’t mean that the craftsmen were completely extinct. The two worlds continued to coexist independently. Each recognising the good in the other — the power of industrialism and the humanity of craftsmanship. This was the second transition that would strip typography of a part of its humanity. We have to go 500 years back in time to meet the first one.\\n\\n## The first transition\\n\\nA similar conflict emerged after the invention of the first printing press in Europe. Johannes Gutenberg invented movable type and used it to produce different compositions. His workshop could print up to 240 impressions per hour. Until then, the books were being copied by hand. All the books were handwritten and decorated with hand drawn ornaments and figures. A process of copying a book was long but each book, even a copy, was a work of art.\\n\\nThe first printed books were, at first, perceived as inferior to the handwritten ones. They were smaller and cheaper to produce. Movable type provided the printers with flexibility that allowed them to print books in languages other than Latin. Gill describes the transition to industrialism as something that people needed and wanted. Something similar happened after the first printed books emerged. People wanted books in a language they understood and they wanted books they could take with them. They were hungry for knowledge and printed books satisfied this hunger.\\n\\n![42-line-bible.jpg](/media/42-line-bible.jpg)\\n\\n*The 42–Line Bible, printed by Gutenberg.*\\n\\nBut, through this transition, the book lost a large part of its humanity. The machine took over most of the process but craftsmanship was still a part of it. The typefaces were cut manually by the first punch cutters. The paper was made by hand. The illustrations and ornaments were still being hand drawn. These were the remains of the craftsmanship that went almost extinct in the times of Eric Gill.\\n\\n## The digital age\\n\\nThe first transition took away a large part of humanity from written communication. Industrialisation, the second transition described by Eric Gill, took away most of what was left. But it’s the third transition that stripped it naked. Typefaces are faceless these days. They’re just fonts on our computers. Hardly anyone knows their stories. Hardly anyone cares. Flicking through thousands of typefaces and finding the “right one” is a matter of minutes.\\n\\n> In the new computer age the proliferation of typefaces and type manipulations represents a new level of visual pollution threatening our culture. Out of thousands of typefaces, all we need are a few basic ones, and trash the rest.\\n>\\n— Massimo Vignelli\\n\\nTypography is not about typefaces. It’s not about what looks best, it’s about what feels right. What communicates the message best. Typography, in its essence, is about the message. “Typographical design should perform optically what the speaker creates through voice and gesture of his thoughts.”, as El Lissitzky, a famous Russian typographer, put it.\\n\\n## Loss of humanity through transitions\\n\\nEach transition took away a part of humanity from written language. Handwritten books being the most humane form and the digital typefaces being the least. Overuse of Helvetica is a good example. Messages are being told in a typeface just because it’s a safe option. It’s always there. Everyone knows it but yet, nobody knows it. Stop someone on the street and ask him what Helvetica is? Ask a designer the same question. Ask him where it came from, when, why and who designed it. Most of them will fail to answer these questions. Most of them used it in their precious projects but they still don’t spot it in the street.\\n\\n
\\n\\t
\\n\\t\\t

Knowledge of the quality of a typeface is of the greatest importance for the functional, aesthetic and psychological effect.

\\n\\t\\t
\\n\\t\\t\\t— Josef Mueller-Brockmann\\n\\t\\t
\\n\\t
\\n
\\n\\nTypefaces don’t look handmade these days. And that’s all right. They don’t have to. Industrialism took that away from them and we’re fine with it. We’ve traded that part of humanity for a process that produces more books that are easier to read. That can’t be bad. And it isn’t.\\n\\n> Humane typography will often be comparatively rough and even uncouth; but while a certain uncouthness does not seriously matter in humane works, uncouthness has no excuse whatever in the productions of the machine.\\n>\\n> — Eric Gill\\n\\nWe’ve come close to “perfection” in the last five centuries. The letters are crisp and without rough edges. We print our compositions with high–precision printers on a high quality, machine made paper.\\n\\n![type-through-time.jpg](/media/type-through-time.jpg)\\n\\n*Type through 5 centuries.*\\n\\nWe lost a part of ourselves because of this chase after perfection. We forgot about the craftsmanship along the way. And the worst part is that we don’t care. The transition to the digital age made that clear. We choose typefaces like clueless zombies. There’s no meaning in our work. Type sizes, leading, margins… It’s all just a few clicks or lines of code. The message isn’t important anymore. There’s no more “why” behind the “what”.\\n\\n## Chasing perfection\\n\\nHuman beings aren’t perfect. Perfection is something that will always elude us. There will always be a small part of humanity in everything we do. No matter how small that part, we should make sure that it transcends the limits of the medium. We have to think about the message first. What typeface should we use and why? Does the typeface match the message and what we want to communicate with it? What will be the leading and why? Will there be more typefaces in our design? On what ground will they be combined? What makes our design unique and why? This is the part of humanity that is left in typography. It might be the last part. Are we really going to give it up?\\n\\n*Originally published by [Matej Latin](http://matejlatin.co.uk/) on [Medium](https://medium.com/design-notes/humane-typography-in-the-digital-age-9bd5c16199bd?ref=webdesignernews.com#.lygo82z0x).*\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/forkOwner/repo/contents/forkOwner/repo/posts/1970-01-01-first-title.json?ts=300&ref=refs/meta/_netlify_cms", + "headers": { + "Date": "Wed, 11 Sep 2019 06:20:47 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "404 Not Found", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4958", + "X-RateLimit-Reset": "1568186244", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7AB2:2B19:129AECF:16B415B:5D78923F", + "content-length": "144", + "connection": "keep-alive" + }, + "response": "{\n \"message\": \"No commit found for the ref refs/meta/_netlify_cms\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/\"\n}\n", + "status": 404 + }, + { + "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"master:content/posts/1970-01-01-first-title.md\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Wed, 11 Sep 2019 06:20:48 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4960", + "X-RateLimit-Reset": "1568186258", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7AB4:2B24:2A0AC58:334437C:5D789240", + "content-length": "106", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3Mzc4NjM=\",\"__typename\":\"Repository\",\"object\":null}}}\n", + "status": 200 + }, + { + "body": "{\"content\":\"LS0tCnRlbXBsYXRlOiBwb3N0CnRpdGxlOiBmaXJzdCB0aXRsZQpkcmFmdDogdHJ1ZQpkYXRlOiAxOTcwLTAxLTAxVDAwOjAwOjAwLjAwMFoKZGVzY3JpcHRpb246IGZpcnN0IGRlc2NyaXB0aW9uCmNhdGVnb3J5OiBmaXJzdCBjYXRlZ29yeQp0YWdzOgogIC0gdGFnMQotLS0KZmlyc3QgYm9keQo=\",\"encoding\":\"base64\"}", + "method": "POST", + "url": "/repos/forkOwner/repo/git/blobs?ts=300", + "headers": { + "Date": "Wed, 11 Sep 2019 06:20:49 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "212", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4957", + "X-RateLimit-Reset": "1568186244", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"eefb1bbac2d576832c388bffb12640ec\"", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/forkOwner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7AB6:3ED7B:208CA70:27A1565:5D789240", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"a041245814892e3f73f63ca54333fda649b7fc0b\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b\"\n}\n", + "status": 201 + }, + { + "body": "{\"operationName\":\"branch\",\"variables\":{\"owner\":\"forkOwner\",\"name\":\"repo\",\"qualifiedName\":\"refs/heads/master\"},\"query\":\"query branch($owner: String!, $name: String!, $qualifiedName: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n branch: ref(qualifiedName: $qualifiedName) {\\n ...BranchParts\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BranchParts on Ref {\\n commit: target {\\n ...ObjectParts\\n __typename\\n }\\n id\\n name\\n repository {\\n ...RepositoryParts\\n __typename\\n }\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Wed, 11 Sep 2019 06:20:49 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4959", + "X-RateLimit-Reset": "1568186258", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7AB8:B4DA:90F463:B11E8E:5D789241", + "content-length": "429", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3Mzc5Njc=\",\"__typename\":\"Repository\",\"branch\":{\"commit\":{\"id\":\"MDY6Q29tbWl0MjA3NzM3OTY3OjcyNjE3MmRlYWU5OWM4YTJjZWE0YzcxZTczNGEwMmE3OTNkNGQ5ZTU=\",\"sha\":\"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\"__typename\":\"Commit\"},\"id\":\"MDM6UmVmMjA3NzM3OTY3Om1hc3Rlcg==\",\"name\":\"master\",\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3Mzc5Njc=\",\"__typename\":\"Repository\"},\"__typename\":\"Ref\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"tree\",\"variables\":{\"owner\":\"forkOwner\",\"name\":\"repo\",\"sha\":\"726172deae99c8a2cea4c71e734a02a793d4d9e5\"},\"query\":\"query tree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n tree: object(oid: $sha) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Wed, 11 Sep 2019 06:20:50 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4957", + "X-RateLimit-Reset": "1568186258", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7ABA:2B24:2A0AEE1:3344698:5D789242", + "content-length": "260", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3Mzc5Njc=\",\"__typename\":\"Repository\",\"tree\":{\"id\":\"MDY6Q29tbWl0MjA3NzM3OTY3OjcyNjE3MmRlYWU5OWM4YTJjZWE0YzcxZTczNGEwMmE3OTNkNGQ5ZTU=\",\"sha\":\"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\"__typename\":\"Commit\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"commitTree\",\"variables\":{\"owner\":\"forkOwner\",\"name\":\"repo\",\"sha\":\"726172deae99c8a2cea4c71e734a02a793d4d9e5\"},\"query\":\"query commitTree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n commit: object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n tree {\\n ...ObjectParts\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Wed, 11 Sep 2019 06:20:50 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4958", + "X-RateLimit-Reset": "1568186258", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7ABC:B4DE:1FB9EC6:26B6228:5D789242", + "content-length": "5040", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3Mzc5Njc=\",\"__typename\":\"Repository\",\"commit\":{\"id\":\"MDY6Q29tbWl0MjA3NzM3OTY3OjcyNjE3MmRlYWU5OWM4YTJjZWE0YzcxZTczNGEwMmE3OTNkNGQ5ZTU=\",\"sha\":\"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\"__typename\":\"Commit\",\"tree\":{\"id\":\"MDQ6VHJlZTIwNzczNzk2NzpjNWI3ZjZkNjc0YmExOTNiYjdiNGE1ZmNmNDkzMzAzNGUxYjdmMmI3\",\"sha\":\"c5b7f6d674ba193bb7b4a5fcf4933034e1b7f2b7\",\"__typename\":\"Tree\",\"entries\":[{\"path\":\".circleci\",\"sha\":\"e5e9af3301cac61f120b8e4d40b1733c7a45685a\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\".eslintignore\",\"sha\":\"80b4531b026d19f8fa589efd122e76199d23f967\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".eslintrc.js\",\"sha\":\"370684994aaed5b858da3a006f48cfa57e88fd27\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".flowconfig\",\"sha\":\"14aa2ac4cc0e15223ad98630a6f1325fc81f8043\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".gitattributes\",\"sha\":\"10a369ddf4f603337cabc6f21646508323941ce1\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".github\",\"sha\":\"4ebeece548b52b20af59622354530a6d33b50b43\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\".gitignore\",\"sha\":\"c071ba35b0e49899bab6d610a68eef667dbbf157\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".prettierignore\",\"sha\":\"393f050e123d998cf8c8b362ff95cc8ac4d250e5\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".prettierrc\",\"sha\":\"e52ad05bb13b084d7949dd76e1b2517455162150\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".stylelintrc.json\",\"sha\":\"4b4c9698d10d756f5faa025659b86375428ed0a7\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".vscode\",\"sha\":\"286e97ec0113ea8242b41ac222e2c3e8077e6f1e\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"CHANGELOG.md\",\"sha\":\"070a5d4f0eacd2dc0be81ae8996f8982de43046e\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"CODE_OF_CONDUCT.md\",\"sha\":\"92bc7565ff0ee145a0041b5179a820f14f39ab22\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"CONTRIBUTING.md\",\"sha\":\"8552aa241254a61258e1ff9666ab36f32fb1e3b9\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"LICENSE\",\"sha\":\"42d85938357b49977c126ca03b199129082d4fb8\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"README.md\",\"sha\":\"19df50a78654c8d757ca7f38447aa3d09c7abcce\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"backend\",\"sha\":\"b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"config.js\",\"sha\":\"58afd573bbb69fcca000efd0f5d90b93c93a98dd\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"content\",\"sha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"flow-typed\",\"sha\":\"86c32fd6c3118be5e0dbbb231a834447357236c6\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"flow\",\"sha\":\"0af45ad00d155c8d8c7407d913ff85278244c9ce\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"gatsby-browser.js\",\"sha\":\"9bd2c9dce175f04980e91cd9dc295a299e3cdb80\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"gatsby-config.js\",\"sha\":\"353a109dad62e3f25bf9f5e6a2167f21a6c8b459\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"gatsby-node.js\",\"sha\":\"14a207883c2093d2cc071bc5a464e165bcc1fead\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"gatsby\",\"sha\":\"4f23c06cd1740bf78304d2c0b29bf6bfdf427981\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"jest\",\"sha\":\"5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"netlify.toml\",\"sha\":\"599b99cc5700404fde316a7ede829776f23e7d45\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"package.json\",\"sha\":\"9d777616438b90a18f1a4ebfd5f114b4c06c6f17\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"postcss-config.js\",\"sha\":\"d216501e9b351a72e00ba0b7459a6500e27e7da2\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"renovate.json\",\"sha\":\"dcc309398785698b8870545c32051a3d72dd8271\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"serverless-scripts\",\"sha\":\"ee3701f2fbfc7196ba340f6481d1387d20527898\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"serverless-single-page-app-plugin\",\"sha\":\"08763fcfba643a06a452398517019bea4a5850ba\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"serverless.yml\",\"sha\":\"20b22c5fad229f35d029bf6614d333d82fe8a987\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"src\",\"sha\":\"8cdb35a88232c0f32f12f130c92c7cc55f97f471\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"static\",\"sha\":\"53c6380a600a030d3722bff7ecde36f749fb6964\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"utils\",\"sha\":\"a592549c9f74db40b51efefcda2fd76810405f27\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"yarn.lock\",\"sha\":\"475c9c1924ca752a0686303e2fdeb7b13ad75f57\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"}]}}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"commitTree\",\"variables\":{\"owner\":\"forkOwner\",\"name\":\"repo\",\"sha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\"},\"query\":\"query commitTree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n commit: object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n tree {\\n ...ObjectParts\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Wed, 11 Sep 2019 06:20:51 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4956", + "X-RateLimit-Reset": "1568186258", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7ABE:2B24:2A0AFDB:33447DA:5D789242", + "content-length": "256", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3Mzc5Njc=\",\"__typename\":\"Repository\",\"commit\":{\"id\":\"MDQ6VHJlZTIwNzczNzk2NzowMjk0ZWYxMDZjNTg3NDM5MDdhNWM4NTVkYTFlYjBmODdiMGI2ZGZj\",\"sha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\"__typename\":\"Tree\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"tree\",\"variables\":{\"owner\":\"forkOwner\",\"name\":\"repo\",\"sha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\"},\"query\":\"query tree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n tree: object(oid: $sha) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Wed, 11 Sep 2019 06:20:51 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4955", + "X-RateLimit-Reset": "1568186258", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7AC0:3ED82:2B8B9B5:3512D24:5D789242", + "content-length": "502", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3Mzc5Njc=\",\"__typename\":\"Repository\",\"tree\":{\"id\":\"MDQ6VHJlZTIwNzczNzk2NzowMjk0ZWYxMDZjNTg3NDM5MDdhNWM4NTVkYTFlYjBmODdiMGI2ZGZj\",\"sha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\"__typename\":\"Tree\",\"entries\":[{\"path\":\"pages\",\"sha\":\"1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"posts\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"}]}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"tree\",\"variables\":{\"owner\":\"forkOwner\",\"name\":\"repo\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\"},\"query\":\"query tree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n tree: object(oid: $sha) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Wed, 11 Sep 2019 06:20:51 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4954", + "X-RateLimit-Reset": "1568186258", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7AC6:2B1F:2001666:2730DE8:5D789243", + "content-length": "1075", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3Mzc5Njc=\",\"__typename\":\"Repository\",\"tree\":{\"id\":\"MDQ6VHJlZTIwNzczNzk2NzozNDg5MjU3NWUyMTZjMDZlNzU3MDkzZjAzNmJkOGUwNTdjNzhhNTJm\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"__typename\":\"Tree\",\"entries\":[{\"path\":\"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\"sha\":\"6d51a38aed7139d2117724b1e307657b6ff2d043\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\"sha\":\"d0582dd245a3f408fb3fe2333bf01400007476e9\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"2016-02-02---A-Brief-History-of-Typography.md\",\"sha\":\"0eea554365f002d0f1572af9a58522d335a794d5\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"2017-18-08---The-Birth-of-Movable-Type.md\",\"sha\":\"44f78c474d04273185a95821426f75affc9b0044\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\"sha\":\"a532f0a9445cdf90a19c6812cff89d1674991774\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"}]}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"commitTree\",\"variables\":{\"owner\":\"forkOwner\",\"name\":\"repo\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\"},\"query\":\"query commitTree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n commit: object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n tree {\\n ...ObjectParts\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Wed, 11 Sep 2019 06:20:51 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4953", + "X-RateLimit-Reset": "1568186258", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7AC4:2B19:129B10D:16B440D:5D789243", + "content-length": "256", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3Mzc5Njc=\",\"__typename\":\"Repository\",\"commit\":{\"id\":\"MDQ6VHJlZTIwNzczNzk2NzozNDg5MjU3NWUyMTZjMDZlNzU3MDkzZjAzNmJkOGUwNTdjNzhhNTJm\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"__typename\":\"Tree\"}}}}\n", + "status": 200 + }, + { + "body": "{\"base_tree\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"tree\":[{\"path\":\"1970-01-01-first-title.md\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"a041245814892e3f73f63ca54333fda649b7fc0b\"}]}", + "method": "POST", + "url": "/repos/forkOwner/repo/git/trees?ts=300", + "headers": { + "Date": "Wed, 11 Sep 2019 06:20:53 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "2397", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4956", + "X-RateLimit-Reset": "1568186244", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"bfba51dd84c6316f0ee10a39c8f264e0\"", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/forkOwner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7AC8:B4E0:287651C:3156EB9:5D789244", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a041245814892e3f73f63ca54333fda649b7fc0b\",\n \"size\": 167,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b\"\n },\n {\n \"path\": \"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"size\": 1707,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\"\n },\n {\n \"path\": \"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"size\": 2565,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\"\n },\n {\n \"path\": \"2016-02-02---A-Brief-History-of-Typography.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"0eea554365f002d0f1572af9a58522d335a794d5\",\n \"size\": 2786,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\"\n },\n {\n \"path\": \"2017-18-08---The-Birth-of-Movable-Type.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"44f78c474d04273185a95821426f75affc9b0044\",\n \"size\": 16071,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\"\n },\n {\n \"path\": \"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"size\": 7465,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"base_tree\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\"tree\":[{\"path\":\"posts\",\"mode\":\"040000\",\"type\":\"tree\",\"sha\":\"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\"parentSha\":\"34892575e216c06e757093f036bd8e057c78a52f\"}]}", + "method": "POST", + "url": "/repos/forkOwner/repo/git/trees?ts=300", + "headers": { + "Date": "Wed, 11 Sep 2019 06:20:53 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "846", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4955", + "X-RateLimit-Reset": "1568186244", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"c111469e9ec4ede4536788cbb353d662\"", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/forkOwner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7ACA:3ED77:12B9A9D:16C8A46:5D789245", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"tree\": [\n {\n \"path\": \"pages\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\"\n },\n {\n \"path\": \"posts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"base_tree\":\"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\"tree\":[{\"path\":\"content\",\"mode\":\"040000\",\"type\":\"tree\",\"sha\":\"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\"parentSha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\"}]}", + "method": "POST", + "url": "/repos/forkOwner/repo/git/trees?ts=300", + "headers": { + "Date": "Wed, 11 Sep 2019 06:20:54 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "11959", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4954", + "X-RateLimit-Reset": "1568186244", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"921068ab97be5c76dde26f5208f57d24\"", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/forkOwner/repo/git/trees/daee8d5d15d144e8779955166a2afeccde2770e1", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7ACE:244E7:1F42EE1:263EC98:5D789246", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"daee8d5d15d144e8779955166a2afeccde2770e1\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/daee8d5d15d144e8779955166a2afeccde2770e1\",\n \"tree\": [\n {\n \"path\": \".circleci\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"e5e9af3301cac61f120b8e4d40b1733c7a45685a\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/e5e9af3301cac61f120b8e4d40b1733c7a45685a\"\n },\n {\n \"path\": \".eslintignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"80b4531b026d19f8fa589efd122e76199d23f967\",\n \"size\": 39,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/80b4531b026d19f8fa589efd122e76199d23f967\"\n },\n {\n \"path\": \".eslintrc.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"370684994aaed5b858da3a006f48cfa57e88fd27\",\n \"size\": 414,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/370684994aaed5b858da3a006f48cfa57e88fd27\"\n },\n {\n \"path\": \".flowconfig\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14aa2ac4cc0e15223ad98630a6f1325fc81f8043\",\n \"size\": 283,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/14aa2ac4cc0e15223ad98630a6f1325fc81f8043\"\n },\n {\n \"path\": \".gitattributes\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"10a369ddf4f603337cabc6f21646508323941ce1\",\n \"size\": 135,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/10a369ddf4f603337cabc6f21646508323941ce1\"\n },\n {\n \"path\": \".github\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4ebeece548b52b20af59622354530a6d33b50b43\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/4ebeece548b52b20af59622354530a6d33b50b43\"\n },\n {\n \"path\": \".gitignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"c071ba35b0e49899bab6d610a68eef667dbbf157\",\n \"size\": 169,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/c071ba35b0e49899bab6d610a68eef667dbbf157\"\n },\n {\n \"path\": \".prettierignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"393f050e123d998cf8c8b362ff95cc8ac4d250e5\",\n \"size\": 45,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/393f050e123d998cf8c8b362ff95cc8ac4d250e5\"\n },\n {\n \"path\": \".prettierrc\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e52ad05bb13b084d7949dd76e1b2517455162150\",\n \"size\": 223,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/e52ad05bb13b084d7949dd76e1b2517455162150\"\n },\n {\n \"path\": \".stylelintrc.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"4b4c9698d10d756f5faa025659b86375428ed0a7\",\n \"size\": 718,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/4b4c9698d10d756f5faa025659b86375428ed0a7\"\n },\n {\n \"path\": \".vscode\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"286e97ec0113ea8242b41ac222e2c3e8077e6f1e\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/286e97ec0113ea8242b41ac222e2c3e8077e6f1e\"\n },\n {\n \"path\": \"CHANGELOG.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"070a5d4f0eacd2dc0be81ae8996f8982de43046e\",\n \"size\": 2113,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/070a5d4f0eacd2dc0be81ae8996f8982de43046e\"\n },\n {\n \"path\": \"CODE_OF_CONDUCT.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"92bc7565ff0ee145a0041b5179a820f14f39ab22\",\n \"size\": 3355,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/92bc7565ff0ee145a0041b5179a820f14f39ab22\"\n },\n {\n \"path\": \"CONTRIBUTING.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"8552aa241254a61258e1ff9666ab36f32fb1e3b9\",\n \"size\": 3548,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/8552aa241254a61258e1ff9666ab36f32fb1e3b9\"\n },\n {\n \"path\": \"LICENSE\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"42d85938357b49977c126ca03b199129082d4fb8\",\n \"size\": 1091,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/42d85938357b49977c126ca03b199129082d4fb8\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"19df50a78654c8d757ca7f38447aa3d09c7abcce\",\n \"size\": 3698,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/19df50a78654c8d757ca7f38447aa3d09c7abcce\"\n },\n {\n \"path\": \"backend\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\"\n },\n {\n \"path\": \"config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"58afd573bbb69fcca000efd0f5d90b93c93a98dd\",\n \"size\": 853,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/58afd573bbb69fcca000efd0f5d90b93c93a98dd\"\n },\n {\n \"path\": \"content\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639\"\n },\n {\n \"path\": \"flow-typed\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"86c32fd6c3118be5e0dbbb231a834447357236c6\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/86c32fd6c3118be5e0dbbb231a834447357236c6\"\n },\n {\n \"path\": \"flow\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"0af45ad00d155c8d8c7407d913ff85278244c9ce\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/0af45ad00d155c8d8c7407d913ff85278244c9ce\"\n },\n {\n \"path\": \"gatsby-browser.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9bd2c9dce175f04980e91cd9dc295a299e3cdb80\",\n \"size\": 90,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/9bd2c9dce175f04980e91cd9dc295a299e3cdb80\"\n },\n {\n \"path\": \"gatsby-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"353a109dad62e3f25bf9f5e6a2167f21a6c8b459\",\n \"size\": 7228,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/353a109dad62e3f25bf9f5e6a2167f21a6c8b459\"\n },\n {\n \"path\": \"gatsby-node.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14a207883c2093d2cc071bc5a464e165bcc1fead\",\n \"size\": 409,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/14a207883c2093d2cc071bc5a464e165bcc1fead\"\n },\n {\n \"path\": \"gatsby\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4f23c06cd1740bf78304d2c0b29bf6bfdf427981\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/4f23c06cd1740bf78304d2c0b29bf6bfdf427981\"\n },\n {\n \"path\": \"jest\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\"\n },\n {\n \"path\": \"netlify.toml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"599b99cc5700404fde316a7ede829776f23e7d45\",\n \"size\": 137,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/599b99cc5700404fde316a7ede829776f23e7d45\"\n },\n {\n \"path\": \"package.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9d777616438b90a18f1a4ebfd5f114b4c06c6f17\",\n \"size\": 6855,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/9d777616438b90a18f1a4ebfd5f114b4c06c6f17\"\n },\n {\n \"path\": \"postcss-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d216501e9b351a72e00ba0b7459a6500e27e7da2\",\n \"size\": 703,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/d216501e9b351a72e00ba0b7459a6500e27e7da2\"\n },\n {\n \"path\": \"renovate.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"dcc309398785698b8870545c32051a3d72dd8271\",\n \"size\": 460,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/dcc309398785698b8870545c32051a3d72dd8271\"\n },\n {\n \"path\": \"serverless-scripts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ee3701f2fbfc7196ba340f6481d1387d20527898\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/ee3701f2fbfc7196ba340f6481d1387d20527898\"\n },\n {\n \"path\": \"serverless-single-page-app-plugin\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"08763fcfba643a06a452398517019bea4a5850ba\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/08763fcfba643a06a452398517019bea4a5850ba\"\n },\n {\n \"path\": \"serverless.yml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"20b22c5fad229f35d029bf6614d333d82fe8a987\",\n \"size\": 7803,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/20b22c5fad229f35d029bf6614d333d82fe8a987\"\n },\n {\n \"path\": \"src\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"8cdb35a88232c0f32f12f130c92c7cc55f97f471\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/8cdb35a88232c0f32f12f130c92c7cc55f97f471\"\n },\n {\n \"path\": \"static\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"53c6380a600a030d3722bff7ecde36f749fb6964\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/53c6380a600a030d3722bff7ecde36f749fb6964\"\n },\n {\n \"path\": \"utils\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"a592549c9f74db40b51efefcda2fd76810405f27\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/a592549c9f74db40b51efefcda2fd76810405f27\"\n },\n {\n \"path\": \"yarn.lock\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"475c9c1924ca752a0686303e2fdeb7b13ad75f57\",\n \"size\": 793903,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/475c9c1924ca752a0686303e2fdeb7b13ad75f57\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"message\":\"Create Post “1970-01-01-first-title”\",\"tree\":\"daee8d5d15d144e8779955166a2afeccde2770e1\",\"parents\":[\"726172deae99c8a2cea4c71e734a02a793d4d9e5\"]}", + "method": "POST", + "url": "/repos/forkOwner/repo/git/commits?ts=300", + "headers": { + "Date": "Wed, 11 Sep 2019 06:20:55 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "1565", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4953", + "X-RateLimit-Reset": "1568186244", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"fc569025428672b2cf8a19f7ecc72491\"", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/forkOwner/repo/git/commits/42ec1df453260e4dd8b4a0a40b3253ab4f191c4e", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7AD0:9D1F:11DFA0A:15DCDA0:5D789246", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"42ec1df453260e4dd8b4a0a40b3253ab4f191c4e\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NzM3OTY3OjQyZWMxZGY0NTMyNjBlNGRkOGI0YTBhNDBiMzI1M2FiNGYxOTFjNGU=\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/42ec1df453260e4dd8b4a0a40b3253ab4f191c4e\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/42ec1df453260e4dd8b4a0a40b3253ab4f191c4e\",\n \"author\": {\n \"name\": \"forkOwner\",\n \"email\": \"53494188+forkOwner@users.noreply.github.com\",\n \"date\": \"2019-09-11T06:20:55Z\"\n },\n \"committer\": {\n \"name\": \"forkOwner\",\n \"email\": \"53494188+forkOwner@users.noreply.github.com\",\n \"date\": \"2019-09-11T06:20:55Z\"\n },\n \"tree\": {\n \"sha\": \"daee8d5d15d144e8779955166a2afeccde2770e1\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/daee8d5d15d144e8779955166a2afeccde2770e1\"\n },\n \"message\": \"Create Post “1970-01-01-first-title”\",\n \"parents\": [\n {\n \"sha\": \"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/726172deae99c8a2cea4c71e734a02a793d4d9e5\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "status": 201 + }, + { + "body": "{\"operationName\":\"createBranch\",\"variables\":{\"createRefInput\":{\"name\":\"refs/heads/cms/forkOwner/repo/posts/1970-01-01-first-title\",\"oid\":\"42ec1df453260e4dd8b4a0a40b3253ab4f191c4e\",\"repositoryId\":\"MDEwOlJlcG9zaXRvcnkyMDc3Mzc5Njc=\"}},\"query\":\"mutation createBranch($createRefInput: CreateRefInput!) {\\n createRef(input: $createRefInput) {\\n branch: ref {\\n ...BranchParts\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment BranchParts on Ref {\\n commit: target {\\n ...ObjectParts\\n __typename\\n }\\n id\\n name\\n repository {\\n ...RepositoryParts\\n __typename\\n }\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Wed, 11 Sep 2019 06:20:57 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4952", + "X-RateLimit-Reset": "1568186258", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7AD2:244E4:130BE35:1729FD6:5D789247", + "content-length": "604", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"createRef\":{\"branch\":{\"commit\":{\"id\":\"MDY6Q29tbWl0MjA3NzM3OTY3OjQyZWMxZGY0NTMyNjBlNGRkOGI0YTBhNDBiMzI1M2FiNGYxOTFjNGU=\",\"sha\":\"42ec1df453260e4dd8b4a0a40b3253ab4f191c4e\",\"__typename\":\"Commit\"},\"id\":\"MDM6UmVmMjA3NzM3OTY3OmNtcy9lcmV6cm9rYWgtdGVzdC9nYXRzYnktbmV0bGlmeS1jbXMtYXdzLTE1NjgxODI3OTYyNDAtN3MybDN0dDZwMmcvcG9zdHMvMTk3MC0wMS0wMS1maXJzdC10aXRsZQ==\",\"name\":\"cms/forkOwner/repo/posts/1970-01-01-first-title\",\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3Mzc5Njc=\",\"__typename\":\"Repository\"},\"__typename\":\"Ref\"},\"__typename\":\"CreateRefPayload\"}}}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/forkOwner/repo/git/refs/meta/_netlify_cms?ts=300", + "headers": { + "Date": "Wed, 11 Sep 2019 06:20:57 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "404 Not Found", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4952", + "X-RateLimit-Reset": "1568186244", + "X-Poll-Interval": "300", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7AD6:244E4:130BECA:172A08F:5D789249", + "content-length": "113", + "connection": "keep-alive" + }, + "response": "{\n \"message\": \"Not Found\",\n \"documentation_url\": \"https://developer.github.com/v3/git/refs/#get-a-reference\"\n}\n", + "status": 404 + }, + { + "body": "{\"content\":\"IyBOZXRsaWZ5IENNUwoKVGhpcyB0cmVlIGlzIHVzZWQgYnkgdGhlIE5ldGxpZnkgQ01TIHRvIHN0b3JlIG1ldGFkYXRhIGluZm9ybWF0aW9uIGZvciBzcGVjaWZpYyBmaWxlcyBhbmQgYnJhbmNoZXMu\",\"encoding\":\"base64\"}", + "method": "POST", + "url": "/repos/forkOwner/repo/git/blobs?ts=300", + "headers": { + "Date": "Wed, 11 Sep 2019 06:20:58 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "212", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4951", + "X-RateLimit-Reset": "1568186244", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"f09acff159b6357c193513dec4c8ac3b\"", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/forkOwner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7AD9:2B24:2A0B90F:3345302:5D78924A", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n}\n", + "status": 201 + }, + { + "body": "{\"tree\":[{\"path\":\"README.md\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"98787d1bd948850444433e91a43091a76c4eb455\"}]}", + "method": "POST", + "url": "/repos/forkOwner/repo/git/trees?ts=300", + "headers": { + "Date": "Wed, 11 Sep 2019 06:20:59 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "571", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4950", + "X-RateLimit-Reset": "1568186244", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"01c65e5b3031d6df8517f910193f8fff\"", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/forkOwner/repo/git/trees/77d01c8bf1e79f9fb17c60fe405ce741bb4eb0a6", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7ADA:244E1:896635:A6F035:5D78924A", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"77d01c8bf1e79f9fb17c60fe405ce741bb4eb0a6\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/77d01c8bf1e79f9fb17c60fe405ce741bb4eb0a6\",\n \"tree\": [\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"message\":\"First Commit\",\"tree\":\"77d01c8bf1e79f9fb17c60fe405ce741bb4eb0a6\",\"parents\":[]}", + "method": "POST", + "url": "/repos/forkOwner/repo/git/commits?ts=300", + "headers": { + "Date": "Wed, 11 Sep 2019 06:21:00 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "1156", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4949", + "X-RateLimit-Reset": "1568186244", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"09fccc1c0e8f29806bc824e386cf0dd6\"", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/forkOwner/repo/git/commits/bb14a74df72ae73d5440ac55c93e3d4f39bf93d4", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7ADC:15110:2B84626:34FBCA6:5D78924B", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"bb14a74df72ae73d5440ac55c93e3d4f39bf93d4\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NzM3OTY3OmJiMTRhNzRkZjcyYWU3M2Q1NDQwYWM1NWM5M2UzZDRmMzliZjkzZDQ=\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/bb14a74df72ae73d5440ac55c93e3d4f39bf93d4\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/bb14a74df72ae73d5440ac55c93e3d4f39bf93d4\",\n \"author\": {\n \"name\": \"forkOwner\",\n \"email\": \"53494188+forkOwner@users.noreply.github.com\",\n \"date\": \"2019-09-11T06:20:59Z\"\n },\n \"committer\": {\n \"name\": \"forkOwner\",\n \"email\": \"53494188+forkOwner@users.noreply.github.com\",\n \"date\": \"2019-09-11T06:20:59Z\"\n },\n \"tree\": {\n \"sha\": \"77d01c8bf1e79f9fb17c60fe405ce741bb4eb0a6\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/77d01c8bf1e79f9fb17c60fe405ce741bb4eb0a6\"\n },\n \"message\": \"First Commit\",\n \"parents\": [\n\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "status": 201 + }, + { + "body": "{\"ref\":\"refs/meta/_netlify_cms\",\"sha\":\"bb14a74df72ae73d5440ac55c93e3d4f39bf93d4\"}", + "method": "POST", + "url": "/repos/forkOwner/repo/git/refs?ts=300", + "headers": { + "Date": "Wed, 11 Sep 2019 06:21:01 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "494", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4948", + "X-RateLimit-Reset": "1568186244", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"b5a2fb4702e1e3411047e48f2d86acd2\"", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "Location": "https://api.github.com/repos/forkOwner/repo/git/refs/meta/_netlify_cms", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7ADE:9D1F:11DFCBA:15DD0CC:5D78924C", + "connection": "keep-alive" + }, + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NzM3OTY3OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"bb14a74df72ae73d5440ac55c93e3d4f39bf93d4\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/bb14a74df72ae73d5440ac55c93e3d4f39bf93d4\"\n }\n}\n", + "status": 201 + }, + { + "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJ1c2VyIjoiZm9ya093bmVyIiwic3RhdHVzIjoiZHJhZnQiLCJicmFuY2giOiJjbXMvZm9ya093bmVyL3JlcG8vcG9zdHMvMTk3MC0wMS0wMS1maXJzdC10aXRsZSIsImNvbGxlY3Rpb24iOiJwb3N0cyIsImNvbW1pdE1lc3NhZ2UiOiJDcmVhdGUgUG9zdCDigJwxOTcwLTAxLTAxLWZpcnN0LXRpdGxl4oCdIiwidGl0bGUiOiJmaXJzdCB0aXRsZSIsImRlc2NyaXB0aW9uIjoiZmlyc3QgZGVzY3JpcHRpb24iLCJvYmplY3RzIjp7ImVudHJ5Ijp7InBhdGgiOiJjb250ZW50L3Bvc3RzLzE5NzAtMDEtMDEtZmlyc3QtdGl0bGUubWQiLCJzaGEiOiJhMDQxMjQ1ODE0ODkyZTNmNzNmNjNjYTU0MzMzZmRhNjQ5YjdmYzBiIn0sImZpbGVzIjpbXX0sInRpbWVTdGFtcCI6IjE5NzAtMDEtMDFUMDA6MDA6MDAuMzAwWiJ9\",\"encoding\":\"base64\"}", + "method": "POST", + "url": "/repos/forkOwner/repo/git/blobs?ts=300", + "headers": { + "Date": "Wed, 11 Sep 2019 06:21:02 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "212", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4947", + "X-RateLimit-Reset": "1568186244", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"c6301aebfdcd6cc941fa425b66b8695f\"", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/forkOwner/repo/git/blobs/b85bd367fa4aff42497169e886ed253eab0233f2", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7AE2:15110:2B8499D:34FC0EF:5D78924D", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"b85bd367fa4aff42497169e886ed253eab0233f2\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/b85bd367fa4aff42497169e886ed253eab0233f2\"\n}\n", + "status": 201 + }, + { + "body": "{\"operationName\":\"tree\",\"variables\":{\"owner\":\"forkOwner\",\"name\":\"repo\",\"sha\":\"bb14a74df72ae73d5440ac55c93e3d4f39bf93d4\"},\"query\":\"query tree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n tree: object(oid: $sha) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Wed, 11 Sep 2019 06:21:02 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4951", + "X-RateLimit-Reset": "1568186258", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7AE4:1510E:12D13A0:17017D7:5D78924E", + "content-length": "260", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3Mzc5Njc=\",\"__typename\":\"Repository\",\"tree\":{\"id\":\"MDY6Q29tbWl0MjA3NzM3OTY3OmJiMTRhNzRkZjcyYWU3M2Q1NDQwYWM1NWM5M2UzZDRmMzliZjkzZDQ=\",\"sha\":\"bb14a74df72ae73d5440ac55c93e3d4f39bf93d4\",\"__typename\":\"Commit\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"commitTree\",\"variables\":{\"owner\":\"forkOwner\",\"name\":\"repo\",\"sha\":\"bb14a74df72ae73d5440ac55c93e3d4f39bf93d4\"},\"query\":\"query commitTree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n commit: object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n tree {\\n ...ObjectParts\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Wed, 11 Sep 2019 06:21:03 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4950", + "X-RateLimit-Reset": "1568186258", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7AE3:2B1F:200217A:2731B53:5D78924E", + "content-length": "558", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3Mzc5Njc=\",\"__typename\":\"Repository\",\"commit\":{\"id\":\"MDY6Q29tbWl0MjA3NzM3OTY3OmJiMTRhNzRkZjcyYWU3M2Q1NDQwYWM1NWM5M2UzZDRmMzliZjkzZDQ=\",\"sha\":\"bb14a74df72ae73d5440ac55c93e3d4f39bf93d4\",\"__typename\":\"Commit\",\"tree\":{\"id\":\"MDQ6VHJlZTIwNzczNzk2Nzo3N2QwMWM4YmYxZTc5ZjlmYjE3YzYwZmU0MDVjZTc0MWJiNGViMGE2\",\"sha\":\"77d01c8bf1e79f9fb17c60fe405ce741bb4eb0a6\",\"__typename\":\"Tree\",\"entries\":[{\"path\":\"README.md\",\"sha\":\"98787d1bd948850444433e91a43091a76c4eb455\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"}]}}}}}\n", + "status": 200 + }, + { + "body": "{\"base_tree\":\"bb14a74df72ae73d5440ac55c93e3d4f39bf93d4\",\"tree\":[{\"path\":\"forkOwner/repo/posts/1970-01-01-first-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"b85bd367fa4aff42497169e886ed253eab0233f2\"}]}", + "method": "POST", + "url": "/repos/forkOwner/repo/git/trees?ts=300", + "headers": { + "Date": "Wed, 11 Sep 2019 06:21:04 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "878", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4946", + "X-RateLimit-Reset": "1568186244", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"03106e8280e98ffe62db6dbe5c529f19\"", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/forkOwner/repo/git/trees/2673be2969d06c9f1199f10d6ebaa4222c705dcf", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7AE7:2B24:2A0C12D:3345CC5:5D78924F", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"2673be2969d06c9f1199f10d6ebaa4222c705dcf\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/2673be2969d06c9f1199f10d6ebaa4222c705dcf\",\n \"tree\": [\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n },\n {\n \"path\": \"forkOwner\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ba3b4a1ca702408016f3ddab6e3731dd51382608\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/ba3b4a1ca702408016f3ddab6e3731dd51382608\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"message\":\"Updating “forkOwner/repo/posts/1970-01-01-first-title” metadata\",\"tree\":\"2673be2969d06c9f1199f10d6ebaa4222c705dcf\",\"parents\":[\"bb14a74df72ae73d5440ac55c93e3d4f39bf93d4\"]}", + "method": "POST", + "url": "/repos/forkOwner/repo/git/commits?ts=300", + "headers": { + "Date": "Wed, 11 Sep 2019 06:21:05 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "1641", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4945", + "X-RateLimit-Reset": "1568186244", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"e199dd1e58225f6374bb36cb6d2b9c5b\"", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/forkOwner/repo/git/commits/a33dff16a1babd3d8dca85fe9642f6f40d6e98a1", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7AE8:244E1:896870:A6F2D9:5D789251", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"a33dff16a1babd3d8dca85fe9642f6f40d6e98a1\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NzM3OTY3OmEzM2RmZjE2YTFiYWJkM2Q4ZGNhODVmZTk2NDJmNmY0MGQ2ZTk4YTE=\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/a33dff16a1babd3d8dca85fe9642f6f40d6e98a1\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/a33dff16a1babd3d8dca85fe9642f6f40d6e98a1\",\n \"author\": {\n \"name\": \"forkOwner\",\n \"email\": \"53494188+forkOwner@users.noreply.github.com\",\n \"date\": \"2019-09-11T06:21:05Z\"\n },\n \"committer\": {\n \"name\": \"forkOwner\",\n \"email\": \"53494188+forkOwner@users.noreply.github.com\",\n \"date\": \"2019-09-11T06:21:05Z\"\n },\n \"tree\": {\n \"sha\": \"2673be2969d06c9f1199f10d6ebaa4222c705dcf\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/2673be2969d06c9f1199f10d6ebaa4222c705dcf\"\n },\n \"message\": \"Updating “forkOwner/repo/posts/1970-01-01-first-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"bb14a74df72ae73d5440ac55c93e3d4f39bf93d4\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/bb14a74df72ae73d5440ac55c93e3d4f39bf93d4\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/bb14a74df72ae73d5440ac55c93e3d4f39bf93d4\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "status": 201 + }, + { + "body": "{\"sha\":\"a33dff16a1babd3d8dca85fe9642f6f40d6e98a1\",\"force\":false}", + "method": "PATCH", + "url": "/repos/forkOwner/repo/git/refs/meta/_netlify_cms?ts=300", + "headers": { + "Date": "Wed, 11 Sep 2019 06:21:06 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": "1568186244", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"692944de6a27ef7aa178a9fc1829f939\"", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7AED:2B24:2A0C586:33461E7:5D789252", + "content-length": "494", + "connection": "keep-alive" + }, + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NzM3OTY3OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"a33dff16a1babd3d8dca85fe9642f6f40d6e98a1\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/a33dff16a1babd3d8dca85fe9642f6f40d6e98a1\"\n }\n}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"unpublishedBranchFile\",\"variables\":{\"headOwner\":\"forkOwner\",\"headRepoName\":\"repo\",\"headExpression\":\"cms/forkOwner/repo/posts/1970-01-01-first-title:content/posts/1970-01-01-first-title.md\",\"baseOwner\":\"owner\",\"baseRepoName\":\"repo\",\"baseExpression\":\"master:content/posts/1970-01-01-first-title.md\"},\"query\":\"query unpublishedBranchFile($headOwner: String!, $headRepoName: String!, $headExpression: String!, $baseOwner: String!, $baseRepoName: String!, $baseExpression: String!) {\\n head: repository(owner: $headOwner, name: $headRepoName) {\\n ...RepositoryParts\\n object(expression: $headExpression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n base: repository(owner: $baseOwner, name: $baseRepoName) {\\n ...RepositoryParts\\n object(expression: $baseExpression) {\\n ... on Blob {\\n id\\n oid\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Wed, 11 Sep 2019 06:21:08 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4949", + "X-RateLimit-Reset": "1568186258", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7AF4:B4DC:1306AD4:172AB84:5D789254", + "content-length": "496", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"head\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3Mzc5Njc=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzczNzk2NzphMDQxMjQ1ODE0ODkyZTNmNzNmNjNjYTU0MzMzZmRhNjQ5YjdmYzBi\",\"text\":\"---\\ntemplate: post\\ntitle: first title\\ndraft: true\\ndate: 1970-01-01T00:00:00.000Z\\ndescription: first description\\ncategory: first category\\ntags:\\n - tag1\\n---\\nfirst body\\n\",\"is_binary\":false,\"__typename\":\"Blob\"}},\"base\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3Mzc4NjM=\",\"__typename\":\"Repository\",\"object\":null}}}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/forkOwner/repo/git/refs/heads/cms?ts=300", + "headers": { + "Date": "Wed, 11 Sep 2019 06:21:11 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": "1568186244", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"90b0a35a7b2464018aca820f7b47fda6\"", + "Last-Modified": "Wed, 11 Sep 2019 06:20:37 GMT", + "X-Poll-Interval": "300", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B0B:244EB:2A6B5AA:33AE9FA:5D789257", + "content-length": "788", + "connection": "keep-alive" + }, + "response": "[\n {\n \"ref\": \"refs/heads/cms/forkOwner/repo/posts/1970-01-01-first-title\",\n \"node_id\": \"MDM6UmVmMjA3NzM3OTY3OmNtcy9lcmV6cm9rYWgtdGVzdC9nYXRzYnktbmV0bGlmeS1jbXMtYXdzLTE1NjgxODI3OTYyNDAtN3MybDN0dDZwMmcvcG9zdHMvMTk3MC0wMS0wMS1maXJzdC10aXRsZQ==\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/refs/heads/cms/forkOwner/repo/posts/1970-01-01-first-title\",\n \"object\": {\n \"sha\": \"42ec1df453260e4dd8b4a0a40b3253ab4f191c4e\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/42ec1df453260e4dd8b4a0a40b3253ab4f191c4e\"\n }\n }\n]\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"unpublishedBranchFile\",\"variables\":{\"headOwner\":\"forkOwner\",\"headRepoName\":\"repo\",\"headExpression\":\"cms/forkOwner/repo/posts/1970-01-01-first-title:content/posts/1970-01-01-first-title.md\",\"baseOwner\":\"owner\",\"baseRepoName\":\"repo\",\"baseExpression\":\"master:content/posts/1970-01-01-first-title.md\"},\"query\":\"query unpublishedBranchFile($headOwner: String!, $headRepoName: String!, $headExpression: String!, $baseOwner: String!, $baseRepoName: String!, $baseExpression: String!) {\\n head: repository(owner: $headOwner, name: $headRepoName) {\\n ...RepositoryParts\\n object(expression: $headExpression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n base: repository(owner: $baseOwner, name: $baseRepoName) {\\n ...RepositoryParts\\n object(expression: $baseExpression) {\\n ... on Blob {\\n id\\n oid\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Wed, 11 Sep 2019 06:21:12 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4948", + "X-RateLimit-Reset": "1568186258", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7B0C:244EB:2A6B6D8:33AEB5C:5D789257", + "content-length": "496", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"head\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3Mzc5Njc=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzczNzk2NzphMDQxMjQ1ODE0ODkyZTNmNzNmNjNjYTU0MzMzZmRhNjQ5YjdmYzBi\",\"text\":\"---\\ntemplate: post\\ntitle: first title\\ndraft: true\\ndate: 1970-01-01T00:00:00.000Z\\ndescription: first description\\ncategory: first category\\ntags:\\n - tag1\\n---\\nfirst body\\n\",\"is_binary\":false,\"__typename\":\"Blob\"}},\"base\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3Mzc4NjM=\",\"__typename\":\"Repository\",\"object\":null}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"repository\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\"},\"query\":\"query repository($owner: String!, $name: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Wed, 11 Sep 2019 06:21:13 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4947", + "X-RateLimit-Reset": "1568186258", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7B0D:244EB:2A6B8F7:33AEDDD:5D789259", + "content-length": "92", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3Mzc4NjM=\",\"__typename\":\"Repository\"}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"createPullRequest\",\"variables\":{\"createPullRequestInput\":{\"baseRefName\":\"master\",\"body\":\"Automatically generated by Netlify CMS\",\"title\":\"Create Post “1970-01-01-first-title”\",\"headRefName\":\"forkOwner:cms/forkOwner/repo/posts/1970-01-01-first-title\",\"repositoryId\":\"MDEwOlJlcG9zaXRvcnkyMDc3Mzc4NjM=\"}},\"query\":\"mutation createPullRequest($createPullRequestInput: CreatePullRequestInput!) {\\n createPullRequest(input: $createPullRequestInput) {\\n clientMutationId\\n pullRequest {\\n ...PullRequestParts\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment PullRequestParts on PullRequest {\\n id\\n baseRefName\\n body\\n headRefName\\n headRefOid\\n number\\n state\\n title\\n merged_at: mergedAt\\n repository {\\n ...RepositoryParts\\n __typename\\n }\\n __typename\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Wed, 11 Sep 2019 06:21:14 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4946", + "X-RateLimit-Reset": "1568186258", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7B0F:15110:2B85E8C:34FD991:5D789259", + "content-length": "595", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"createPullRequest\":{\"clientMutationId\":null,\"pullRequest\":{\"id\":\"MDExOlB1bGxSZXF1ZXN0MzE2MjkwNzQx\",\"baseRefName\":\"master\",\"body\":\"Automatically generated by Netlify CMS\",\"headRefName\":\"cms/forkOwner/repo/posts/1970-01-01-first-title\",\"headRefOid\":\"42ec1df453260e4dd8b4a0a40b3253ab4f191c4e\",\"number\":1,\"state\":\"OPEN\",\"title\":\"Create Post “1970-01-01-first-title”\",\"merged_at\":null,\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3Mzc4NjM=\",\"__typename\":\"Repository\"},\"__typename\":\"PullRequest\"},\"__typename\":\"CreatePullRequestPayload\"}}}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/forkOwner/repo/git/refs/meta/_netlify_cms?ts=300", + "headers": { + "Date": "Wed, 11 Sep 2019 06:21:15 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": "1568186244", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"692944de6a27ef7aa178a9fc1829f939\"", + "Last-Modified": "Wed, 11 Sep 2019 06:20:37 GMT", + "X-Poll-Interval": "300", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B10:9D20:1EDC430:25CBCB4:5D78925B", + "content-length": "494", + "connection": "keep-alive" + }, + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NzM3OTY3OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"a33dff16a1babd3d8dca85fe9642f6f40d6e98a1\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/a33dff16a1babd3d8dca85fe9642f6f40d6e98a1\"\n }\n}\n", + "status": 200 + }, + { + "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjEsImhlYWQiOnsic2hhIjoiNDJlYzFkZjQ1MzI2MGU0ZGQ4YjRhMGE0MGIzMjUzYWI0ZjE5MWM0ZSJ9fSwidXNlciI6ImZvcmtPd25lciIsInN0YXR1cyI6InBlbmRpbmdfcmV2aWV3IiwiYnJhbmNoIjoiY21zL2ZvcmtPd25lci9yZXBvL3Bvc3RzLzE5NzAtMDEtMDEtZmlyc3QtdGl0bGUiLCJjb2xsZWN0aW9uIjoicG9zdHMiLCJjb21taXRNZXNzYWdlIjoiQ3JlYXRlIFBvc3Qg4oCcMTk3MC0wMS0wMS1maXJzdC10aXRsZeKAnSIsInRpdGxlIjoiZmlyc3QgdGl0bGUiLCJkZXNjcmlwdGlvbiI6ImZpcnN0IGRlc2NyaXB0aW9uIiwib2JqZWN0cyI6eyJlbnRyeSI6eyJwYXRoIjoiY29udGVudC9wb3N0cy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxlLm1kIiwic2hhIjoiYTA0MTI0NTgxNDg5MmUzZjczZjYzY2E1NDMzM2ZkYTY0OWI3ZmMwYiJ9LCJmaWxlcyI6W119LCJ0aW1lU3RhbXAiOiIxOTcwLTAxLTAxVDAwOjAwOjAwLjMwMFoifQ==\",\"encoding\":\"base64\"}", + "method": "POST", + "url": "/repos/forkOwner/repo/git/blobs?ts=300", + "headers": { + "Date": "Wed, 11 Sep 2019 06:21:16 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "212", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4941", + "X-RateLimit-Reset": "1568186244", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"13f2ba647d3e530f77e54851f8366d46\"", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/forkOwner/repo/git/blobs/470dd07d3e6d2aa97aa9c7e2c91b6c13f86d3d78", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B12:9D21:2901A94:321DDA2:5D78925B", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"470dd07d3e6d2aa97aa9c7e2c91b6c13f86d3d78\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/470dd07d3e6d2aa97aa9c7e2c91b6c13f86d3d78\"\n}\n", + "status": 201 + }, + { + "body": "{\"operationName\":\"tree\",\"variables\":{\"owner\":\"forkOwner\",\"name\":\"repo\",\"sha\":\"a33dff16a1babd3d8dca85fe9642f6f40d6e98a1\"},\"query\":\"query tree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n tree: object(oid: $sha) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Wed, 11 Sep 2019 06:21:16 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4945", + "X-RateLimit-Reset": "1568186258", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7B16:1510F:1FBBF3D:26B6D84:5D78925C", + "content-length": "260", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3Mzc5Njc=\",\"__typename\":\"Repository\",\"tree\":{\"id\":\"MDY6Q29tbWl0MjA3NzM3OTY3OmEzM2RmZjE2YTFiYWJkM2Q4ZGNhODVmZTk2NDJmNmY0MGQ2ZTk4YTE=\",\"sha\":\"a33dff16a1babd3d8dca85fe9642f6f40d6e98a1\",\"__typename\":\"Commit\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"commitTree\",\"variables\":{\"owner\":\"forkOwner\",\"name\":\"repo\",\"sha\":\"a33dff16a1babd3d8dca85fe9642f6f40d6e98a1\"},\"query\":\"query commitTree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n commit: object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n tree {\\n ...ObjectParts\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Wed, 11 Sep 2019 06:21:16 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4944", + "X-RateLimit-Reset": "1568186258", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7B15:B4E0:28785A4:31595ED:5D78925C", + "content-length": "685", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3Mzc5Njc=\",\"__typename\":\"Repository\",\"commit\":{\"id\":\"MDY6Q29tbWl0MjA3NzM3OTY3OmEzM2RmZjE2YTFiYWJkM2Q4ZGNhODVmZTk2NDJmNmY0MGQ2ZTk4YTE=\",\"sha\":\"a33dff16a1babd3d8dca85fe9642f6f40d6e98a1\",\"__typename\":\"Commit\",\"tree\":{\"id\":\"MDQ6VHJlZTIwNzczNzk2NzoyNjczYmUyOTY5ZDA2YzlmMTE5OWYxMGQ2ZWJhYTQyMjJjNzA1ZGNm\",\"sha\":\"2673be2969d06c9f1199f10d6ebaa4222c705dcf\",\"__typename\":\"Tree\",\"entries\":[{\"path\":\"README.md\",\"sha\":\"98787d1bd948850444433e91a43091a76c4eb455\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"forkOwner\",\"sha\":\"ba3b4a1ca702408016f3ddab6e3731dd51382608\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"}]}}}}}\n", + "status": 200 + }, + { + "body": "{\"base_tree\":\"a33dff16a1babd3d8dca85fe9642f6f40d6e98a1\",\"tree\":[{\"path\":\"forkOwner/repo/posts/1970-01-01-first-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"470dd07d3e6d2aa97aa9c7e2c91b6c13f86d3d78\"}]}", + "method": "POST", + "url": "/repos/forkOwner/repo/git/trees?ts=300", + "headers": { + "Date": "Wed, 11 Sep 2019 06:21:17 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "878", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4940", + "X-RateLimit-Reset": "1568186244", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"1294e4ccf48fbd15785a59a9109b8f21\"", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/forkOwner/repo/git/trees/b5ad031a72782ef369cc3b90a3cd83c43f8923d5", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B18:3ED7B:208E1EC:27A329D:5D78925D", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"b5ad031a72782ef369cc3b90a3cd83c43f8923d5\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/b5ad031a72782ef369cc3b90a3cd83c43f8923d5\",\n \"tree\": [\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n },\n {\n \"path\": \"forkOwner\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"86caf6769c7ec8d2970beea3c322f6b2ec38ab3a\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/86caf6769c7ec8d2970beea3c322f6b2ec38ab3a\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"message\":\"Updating “forkOwner/repo/posts/1970-01-01-first-title” metadata\",\"tree\":\"b5ad031a72782ef369cc3b90a3cd83c43f8923d5\",\"parents\":[\"a33dff16a1babd3d8dca85fe9642f6f40d6e98a1\"]}", + "method": "POST", + "url": "/repos/forkOwner/repo/git/commits?ts=300", + "headers": { + "Date": "Wed, 11 Sep 2019 06:21:18 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "1641", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4939", + "X-RateLimit-Reset": "1568186244", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"410a760a6385c5b333e973b96c26499b\"", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/forkOwner/repo/git/commits/cf5ee4a5c01a75e47ff044f283643297a6365096", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B1B:9D21:2901D1C:321E0B6:5D78925E", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"cf5ee4a5c01a75e47ff044f283643297a6365096\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NzM3OTY3OmNmNWVlNGE1YzAxYTc1ZTQ3ZmYwNDRmMjgzNjQzMjk3YTYzNjUwOTY=\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/cf5ee4a5c01a75e47ff044f283643297a6365096\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/cf5ee4a5c01a75e47ff044f283643297a6365096\",\n \"author\": {\n \"name\": \"forkOwner\",\n \"email\": \"53494188+forkOwner@users.noreply.github.com\",\n \"date\": \"2019-09-11T06:21:18Z\"\n },\n \"committer\": {\n \"name\": \"forkOwner\",\n \"email\": \"53494188+forkOwner@users.noreply.github.com\",\n \"date\": \"2019-09-11T06:21:18Z\"\n },\n \"tree\": {\n \"sha\": \"b5ad031a72782ef369cc3b90a3cd83c43f8923d5\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/b5ad031a72782ef369cc3b90a3cd83c43f8923d5\"\n },\n \"message\": \"Updating “forkOwner/repo/posts/1970-01-01-first-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"a33dff16a1babd3d8dca85fe9642f6f40d6e98a1\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/a33dff16a1babd3d8dca85fe9642f6f40d6e98a1\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/a33dff16a1babd3d8dca85fe9642f6f40d6e98a1\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "status": 201 + }, + { + "body": "{\"sha\":\"cf5ee4a5c01a75e47ff044f283643297a6365096\",\"force\":false}", + "method": "PATCH", + "url": "/repos/forkOwner/repo/git/refs/meta/_netlify_cms?ts=300", + "headers": { + "Date": "Wed, 11 Sep 2019 06:21:19 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4938", + "X-RateLimit-Reset": "1568186244", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"97ee4968c2463a3910ad62cdc628a34e\"", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B1D:244EB:2A6C074:33AF706:5D78925E", + "content-length": "494", + "connection": "keep-alive" + }, + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NzM3OTY3OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"cf5ee4a5c01a75e47ff044f283643297a6365096\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/cf5ee4a5c01a75e47ff044f283643297a6365096\"\n }\n}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"statues\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"42ec1df453260e4dd8b4a0a40b3253ab4f191c4e\"},\"query\":\"query statues($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n status {\\n id\\n contexts {\\n id\\n context\\n state\\n target_url: targetUrl\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Wed, 11 Sep 2019 06:21:22 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4942", + "X-RateLimit-Reset": "1568186258", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7B22:244E7:1F4490E:2640C63:5D789261", + "content-length": "276", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3Mzc4NjM=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDY6Q29tbWl0MjA3NzM3ODYzOjQyZWMxZGY0NTMyNjBlNGRkOGI0YTBhNDBiMzI1M2FiNGYxOTFjNGU=\",\"sha\":\"42ec1df453260e4dd8b4a0a40b3253ab4f191c4e\",\"__typename\":\"Commit\",\"status\":null}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"closePullRequestAndDeleteBranch\",\"variables\":{\"closePullRequestInput\":{\"pullRequestId\":\"MDExOlB1bGxSZXF1ZXN0MzE2MjkwNzQx\"}},\"query\":\"mutation closePullRequestAndDeleteBranch($closePullRequestInput: ClosePullRequestInput!) {\\n closePullRequest(input: $closePullRequestInput) {\\n clientMutationId\\n pullRequest {\\n ...PullRequestParts\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment PullRequestParts on PullRequest {\\n id\\n baseRefName\\n body\\n headRefName\\n headRefOid\\n number\\n state\\n title\\n merged_at: mergedAt\\n repository {\\n ...RepositoryParts\\n __typename\\n }\\n __typename\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Wed, 11 Sep 2019 06:21:22 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4943", + "X-RateLimit-Reset": "1568186258", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7B20:244E4:130CF07:172B3EB:5D789261", + "content-length": "595", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"closePullRequest\":{\"clientMutationId\":null,\"pullRequest\":{\"id\":\"MDExOlB1bGxSZXF1ZXN0MzE2MjkwNzQx\",\"baseRefName\":\"master\",\"body\":\"Automatically generated by Netlify CMS\",\"headRefName\":\"cms/forkOwner/repo/posts/1970-01-01-first-title\",\"headRefOid\":\"42ec1df453260e4dd8b4a0a40b3253ab4f191c4e\",\"number\":1,\"state\":\"CLOSED\",\"title\":\"Create Post “1970-01-01-first-title”\",\"merged_at\":null,\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3Mzc4NjM=\",\"__typename\":\"Repository\"},\"__typename\":\"PullRequest\"},\"__typename\":\"ClosePullRequestPayload\"}}}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/forkOwner/repo/git/refs/meta/_netlify_cms?ts=300", + "headers": { + "Date": "Wed, 11 Sep 2019 06:21:23 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": "1568186244", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"97ee4968c2463a3910ad62cdc628a34e\"", + "Last-Modified": "Wed, 11 Sep 2019 06:20:37 GMT", + "X-Poll-Interval": "300", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B25:15110:2B86B00:34FE894:5D789262", + "content-length": "494", + "connection": "keep-alive" + }, + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NzM3OTY3OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"cf5ee4a5c01a75e47ff044f283643297a6365096\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/cf5ee4a5c01a75e47ff044f283643297a6365096\"\n }\n}\n", + "status": 200 + }, + { + "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjEsImhlYWQiOnsic2hhIjoiNDJlYzFkZjQ1MzI2MGU0ZGQ4YjRhMGE0MGIzMjUzYWI0ZjE5MWM0ZSJ9fSwidXNlciI6ImZvcmtPd25lciIsInN0YXR1cyI6ImRyYWZ0IiwiYnJhbmNoIjoiY21zL2ZvcmtPd25lci9yZXBvL3Bvc3RzLzE5NzAtMDEtMDEtZmlyc3QtdGl0bGUiLCJjb2xsZWN0aW9uIjoicG9zdHMiLCJjb21taXRNZXNzYWdlIjoiQ3JlYXRlIFBvc3Qg4oCcMTk3MC0wMS0wMS1maXJzdC10aXRsZeKAnSIsInRpdGxlIjoiZmlyc3QgdGl0bGUiLCJkZXNjcmlwdGlvbiI6ImZpcnN0IGRlc2NyaXB0aW9uIiwib2JqZWN0cyI6eyJlbnRyeSI6eyJwYXRoIjoiY29udGVudC9wb3N0cy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxlLm1kIiwic2hhIjoiYTA0MTI0NTgxNDg5MmUzZjczZjYzY2E1NDMzM2ZkYTY0OWI3ZmMwYiJ9LCJmaWxlcyI6W119LCJ0aW1lU3RhbXAiOiIxOTcwLTAxLTAxVDAwOjAwOjAwLjMwMFoifQ==\",\"encoding\":\"base64\"}", + "method": "POST", + "url": "/repos/forkOwner/repo/git/blobs?ts=300", + "headers": { + "Date": "Wed, 11 Sep 2019 06:21:23 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "212", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4936", + "X-RateLimit-Reset": "1568186244", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"c385b43ba8a5f918967b0dee51ffc459\"", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/forkOwner/repo/git/blobs/702b0efdf3d65dac52a60ed1a826edb76c0d86fc", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B26:15110:2B86BBE:34FE983:5D789263", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"702b0efdf3d65dac52a60ed1a826edb76c0d86fc\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/702b0efdf3d65dac52a60ed1a826edb76c0d86fc\"\n}\n", + "status": 201 + }, + { + "body": "{\"operationName\":\"commitTree\",\"variables\":{\"owner\":\"forkOwner\",\"name\":\"repo\",\"sha\":\"cf5ee4a5c01a75e47ff044f283643297a6365096\"},\"query\":\"query commitTree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n commit: object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n tree {\\n ...ObjectParts\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Wed, 11 Sep 2019 06:21:24 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4941", + "X-RateLimit-Reset": "1568186258", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7B28:2B24:2A0DDFA:3347F58:5D789264", + "content-length": "685", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3Mzc5Njc=\",\"__typename\":\"Repository\",\"commit\":{\"id\":\"MDY6Q29tbWl0MjA3NzM3OTY3OmNmNWVlNGE1YzAxYTc1ZTQ3ZmYwNDRmMjgzNjQzMjk3YTYzNjUwOTY=\",\"sha\":\"cf5ee4a5c01a75e47ff044f283643297a6365096\",\"__typename\":\"Commit\",\"tree\":{\"id\":\"MDQ6VHJlZTIwNzczNzk2NzpiNWFkMDMxYTcyNzgyZWYzNjljYzNiOTBhM2NkODNjNDNmODkyM2Q1\",\"sha\":\"b5ad031a72782ef369cc3b90a3cd83c43f8923d5\",\"__typename\":\"Tree\",\"entries\":[{\"path\":\"README.md\",\"sha\":\"98787d1bd948850444433e91a43091a76c4eb455\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"forkOwner\",\"sha\":\"86caf6769c7ec8d2970beea3c322f6b2ec38ab3a\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"}]}}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"tree\",\"variables\":{\"owner\":\"forkOwner\",\"name\":\"repo\",\"sha\":\"cf5ee4a5c01a75e47ff044f283643297a6365096\"},\"query\":\"query tree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n tree: object(oid: $sha) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Wed, 11 Sep 2019 06:21:24 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4940", + "X-RateLimit-Reset": "1568186258", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7B2A:2B19:129C54D:16B5C35:5D789264", + "content-length": "260", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3Mzc5Njc=\",\"__typename\":\"Repository\",\"tree\":{\"id\":\"MDY6Q29tbWl0MjA3NzM3OTY3OmNmNWVlNGE1YzAxYTc1ZTQ3ZmYwNDRmMjgzNjQzMjk3YTYzNjUwOTY=\",\"sha\":\"cf5ee4a5c01a75e47ff044f283643297a6365096\",\"__typename\":\"Commit\"}}}}\n", + "status": 200 + }, + { + "body": "{\"base_tree\":\"cf5ee4a5c01a75e47ff044f283643297a6365096\",\"tree\":[{\"path\":\"forkOwner/repo/posts/1970-01-01-first-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"702b0efdf3d65dac52a60ed1a826edb76c0d86fc\"}]}", + "method": "POST", + "url": "/repos/forkOwner/repo/git/trees?ts=300", + "headers": { + "Date": "Wed, 11 Sep 2019 06:21:25 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "878", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4935", + "X-RateLimit-Reset": "1568186244", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"7f915bb0898528e420ef5be8082e291d\"", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/forkOwner/repo/git/trees/7134a32feac9affb1dfda9e679ffd5627900ffbd", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B2D:B4E0:2878F17:315A17B:5D789264", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"7134a32feac9affb1dfda9e679ffd5627900ffbd\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/7134a32feac9affb1dfda9e679ffd5627900ffbd\",\n \"tree\": [\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n },\n {\n \"path\": \"forkOwner\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"668e8c033f4e79df21e01defe0d8b4b38542b439\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/668e8c033f4e79df21e01defe0d8b4b38542b439\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"message\":\"Updating “forkOwner/repo/posts/1970-01-01-first-title” metadata\",\"tree\":\"7134a32feac9affb1dfda9e679ffd5627900ffbd\",\"parents\":[\"cf5ee4a5c01a75e47ff044f283643297a6365096\"]}", + "method": "POST", + "url": "/repos/forkOwner/repo/git/commits?ts=300", + "headers": { + "Date": "Wed, 11 Sep 2019 06:21:26 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "1641", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4934", + "X-RateLimit-Reset": "1568186244", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"5647c05cb3de0a02765fefd2d7e5e330\"", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/forkOwner/repo/git/commits/916ce55de6858687ca46f489abf6919793f81850", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B2F:244E7:1F44C4D:264105A:5D789265", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"916ce55de6858687ca46f489abf6919793f81850\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NzM3OTY3OjkxNmNlNTVkZTY4NTg2ODdjYTQ2ZjQ4OWFiZjY5MTk3OTNmODE4NTA=\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/916ce55de6858687ca46f489abf6919793f81850\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/916ce55de6858687ca46f489abf6919793f81850\",\n \"author\": {\n \"name\": \"forkOwner\",\n \"email\": \"53494188+forkOwner@users.noreply.github.com\",\n \"date\": \"2019-09-11T06:21:26Z\"\n },\n \"committer\": {\n \"name\": \"forkOwner\",\n \"email\": \"53494188+forkOwner@users.noreply.github.com\",\n \"date\": \"2019-09-11T06:21:26Z\"\n },\n \"tree\": {\n \"sha\": \"7134a32feac9affb1dfda9e679ffd5627900ffbd\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/7134a32feac9affb1dfda9e679ffd5627900ffbd\"\n },\n \"message\": \"Updating “forkOwner/repo/posts/1970-01-01-first-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"cf5ee4a5c01a75e47ff044f283643297a6365096\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/cf5ee4a5c01a75e47ff044f283643297a6365096\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/cf5ee4a5c01a75e47ff044f283643297a6365096\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "status": 201 + }, + { + "body": "{\"sha\":\"916ce55de6858687ca46f489abf6919793f81850\",\"force\":false}", + "method": "PATCH", + "url": "/repos/forkOwner/repo/git/refs/meta/_netlify_cms?ts=300", + "headers": { + "Date": "Wed, 11 Sep 2019 06:21:27 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": "1568186244", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"e1bc87738ca6a592af803873e1acddb5\"", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B31:3ED77:12BACF3:16CA08B:5D789266", + "content-length": "494", + "connection": "keep-alive" + }, + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NzM3OTY3OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"916ce55de6858687ca46f489abf6919793f81850\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/916ce55de6858687ca46f489abf6919793f81850\"\n }\n}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"closePullRequestAndDeleteBranch\",\"variables\":{\"deleteRefInput\":{\"refId\":\"MDM6UmVmMjA3NzM3OTY3OmNtcy9lcmV6cm9rYWgtdGVzdC9nYXRzYnktbmV0bGlmeS1jbXMtYXdzLTE1NjgxODI3OTYyNDAtN3MybDN0dDZwMmcvcG9zdHMvMTk3MC0wMS0wMS1maXJzdC10aXRsZQ==\"},\"closePullRequestInput\":{\"pullRequestId\":\"MDExOlB1bGxSZXF1ZXN0MzE2MjkwNzQx\"}},\"query\":\"mutation closePullRequestAndDeleteBranch($closePullRequestInput: ClosePullRequestInput!, $deleteRefInput: DeleteRefInput!) {\\n closePullRequest(input: $closePullRequestInput) {\\n clientMutationId\\n pullRequest {\\n ...PullRequestParts\\n __typename\\n }\\n __typename\\n }\\n deleteRef(input: $deleteRefInput) {\\n clientMutationId\\n __typename\\n }\\n}\\n\\nfragment PullRequestParts on PullRequest {\\n id\\n baseRefName\\n body\\n headRefName\\n headRefOid\\n number\\n state\\n title\\n merged_at: mergedAt\\n repository {\\n ...RepositoryParts\\n __typename\\n }\\n __typename\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Wed, 11 Sep 2019 06:21:28 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4939", + "X-RateLimit-Reset": "1568186258", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7B33:9D1E:8626DA:A41714:5D789268", + "content-length": "665", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"closePullRequest\":{\"clientMutationId\":null,\"pullRequest\":{\"id\":\"MDExOlB1bGxSZXF1ZXN0MzE2MjkwNzQx\",\"baseRefName\":\"master\",\"body\":\"Automatically generated by Netlify CMS\",\"headRefName\":\"cms/forkOwner/repo/posts/1970-01-01-first-title\",\"headRefOid\":\"42ec1df453260e4dd8b4a0a40b3253ab4f191c4e\",\"number\":1,\"state\":\"CLOSED\",\"title\":\"Create Post “1970-01-01-first-title”\",\"merged_at\":null,\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3Mzc4NjM=\",\"__typename\":\"Repository\"},\"__typename\":\"PullRequest\"},\"__typename\":\"ClosePullRequestPayload\"},\"deleteRef\":{\"clientMutationId\":null,\"__typename\":\"DeleteRefPayload\"}}}\n", + "status": 200 + } +] \ No newline at end of file diff --git a/cypress/fixtures/Github Backend Editorial Workflow - GraphQL API - Open Authoring__can update a draft entry on fork.json b/cypress/fixtures/Github Backend Editorial Workflow - GraphQL API - Open Authoring__can update a draft entry on fork.json new file mode 100644 index 00000000..db61b632 --- /dev/null +++ b/cypress/fixtures/Github Backend Editorial Workflow - GraphQL API - Open Authoring__can update a draft entry on fork.json @@ -0,0 +1,2346 @@ +[ + { + "method": "GET", + "url": "/user", + "headers": { + "Date": "Tue, 10 Sep 2019 13:32:42 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4904", + "X-RateLimit-Reset": "1568125713", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"fb606f875be1d23b690ea5f5e26b9fe9\"", + "Last-Modified": "Wed, 28 Aug 2019 04:48:54 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7AC4:2B19:A54400:C91200:5D77A5FA", + "content-length": "1321", + "connection": "keep-alive" + }, + "response": "{\"login\":\"owner\",\"id\":1,\"avatar_url\":\"https://avatars1.githubusercontent.com/u/7892489?v=4\",\"name\":\"owner\"}", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/collaborators/owner/permission", + "headers": { + "Date": "Tue, 10 Sep 2019 13:32:43 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4903", + "X-RateLimit-Reset": "1568125713", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"254416b9fc40a4c5acc82d271a9b493b\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7AC6:2B1F:11C4359:15AC444:5D77A5FB", + "content-length": "1071", + "connection": "keep-alive" + }, + "response": "{\n \"permission\": \"admin\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n}\n", + "status": 200 + }, + { + "body": "{\"operationName\":null,\"variables\":{},\"query\":\"{\\n viewer {\\n id\\n avatar_url: avatarUrl\\n name\\n login\\n __typename\\n }\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:32:44 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4886", + "X-RateLimit-Reset": "1568125964", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7AC8:B4DE:118FE3E:155F1D6:5D77A5FB", + "content-length": "179", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"viewer\":{\"id\":\"MDQ6VXNlcjI2NzYwNTcx\",\"avatar_url\":\"https://avatars1.githubusercontent.com/u/7892489?v=4\",\"name\":\"owner\",\"login\":\"owner\",\"__typename\":\"User\"}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"repoPermission\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\"},\"query\":\"query repoPermission($owner: String!, $name: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n viewerPermission\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:32:44 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4885", + "X-RateLimit-Reset": "1568125964", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7ACA:3ED76:462A29:55FAFB:5D77A5FC", + "content-length": "119", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"viewerPermission\":\"ADMIN\"}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"files\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"master:static/media\"},\"query\":\"query files($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...FileEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment FileEntryParts on TreeEntry {\\n name\\n sha: oid\\n type\\n blob: object {\\n ... on Blob {\\n size: byteSize\\n __typename\\n }\\n __typename\\n }\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:32:45 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4884", + "X-RateLimit-Reset": "1568125964", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7ACE:244E4:AAD103:CEE9C9:5D77A5FD", + "content-length": "1837", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6VHJlZTIwNzU2NzAxMTo5Yjc2OTliNTdlMTQzMDkxMGRiODI4MzFkY2Y2YjhhMWQxZGJkYWM5\",\"sha\":\"9b7699b57e1430910db82831dcf6b8a1d1dbdac9\",\"__typename\":\"Tree\",\"entries\":[{\"name\":\"42-line-bible.jpg\",\"sha\":\"41c8d12f9ca5864beb827c381fbeff935209d5fb\",\"type\":\"blob\",\"blob\":{\"size\":671242,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"gutenberg.jpg\",\"sha\":\"04315e355873ea5d358d9c371c39a6845c1ae4ae\",\"type\":\"blob\",\"blob\":{\"size\":155002,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-0.jpg\",\"sha\":\"b70a1b64fd4fa9635823231a0ba92c6dc9393f16\",\"type\":\"blob\",\"blob\":{\"size\":660287,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-1.jpg\",\"sha\":\"05eedae372b829c62501ac751b2d42dcc432541b\",\"type\":\"blob\",\"blob\":{\"size\":392411,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-2.jpg\",\"sha\":\"53845ed35faf8939bea242bb85eda7c324b1be0b\",\"type\":\"blob\",\"blob\":{\"size\":99147,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-3.jpg\",\"sha\":\"8b2339d97069e826fae1f156212e40ae458454e3\",\"type\":\"blob\",\"blob\":{\"size\":358022,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-4.jpg\",\"sha\":\"a8f6f21253a67a4284b5a953b2fe633d44152ecd\",\"type\":\"blob\",\"blob\":{\"size\":114837,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"movable-type.jpg\",\"sha\":\"57b4e925ea00bd8e195cf4418eb6eb2995ea5f10\",\"type\":\"blob\",\"blob\":{\"size\":559028,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"printing-press.jpg\",\"sha\":\"d27f56c9437d9becd2f56cc627c9322c2f1f61f6\",\"type\":\"blob\",\"blob\":{\"size\":279283,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"type-through-time.jpg\",\"sha\":\"3f08366a805c51a60ec5056010f22de4ba08abaa\",\"type\":\"blob\",\"blob\":{\"size\":117689,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"}]}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"files\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"master:content/posts\"},\"query\":\"query files($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...FileEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment FileEntryParts on TreeEntry {\\n name\\n sha: oid\\n type\\n blob: object {\\n ... on Blob {\\n size: byteSize\\n __typename\\n }\\n __typename\\n }\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:32:45 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4883", + "X-RateLimit-Reset": "1568125964", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7ACC:B4DE:1190017:155F438:5D77A5FD", + "content-length": "1218", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6VHJlZTIwNzU2NzAxMTozNDg5MjU3NWUyMTZjMDZlNzU3MDkzZjAzNmJkOGUwNTdjNzhhNTJm\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"__typename\":\"Tree\",\"entries\":[{\"name\":\"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\"sha\":\"6d51a38aed7139d2117724b1e307657b6ff2d043\",\"type\":\"blob\",\"blob\":{\"size\":1707,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\"sha\":\"d0582dd245a3f408fb3fe2333bf01400007476e9\",\"type\":\"blob\",\"blob\":{\"size\":2565,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2016-02-02---A-Brief-History-of-Typography.md\",\"sha\":\"0eea554365f002d0f1572af9a58522d335a794d5\",\"type\":\"blob\",\"blob\":{\"size\":2786,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2017-18-08---The-Birth-of-Movable-Type.md\",\"sha\":\"44f78c474d04273185a95821426f75affc9b0044\",\"type\":\"blob\",\"blob\":{\"size\":16071,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\"sha\":\"a532f0a9445cdf90a19c6812cff89d1674991774\",\"type\":\"blob\",\"blob\":{\"size\":7465,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"}]}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"6d51a38aed7139d2117724b1e307657b6ff2d043\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:32:46 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4882", + "X-RateLimit-Reset": "1568125964", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7AD0:9D21:16BF97E:1BB435A:5D77A5FD", + "content-length": "1973", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzU2NzAxMTo2ZDUxYTM4YWVkNzEzOWQyMTE3NzI0YjFlMzA3NjU3YjZmZjJkMDQz\",\"text\":\"---\\ntitle: Perfecting the Art of Perfection\\ndate: \\\"2016-09-01T23:46:37.121Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Design Inspiration\\\"\\ntags:\\n - \\\"Handwriting\\\"\\n - \\\"Learning to write\\\"\\ndescription: \\\"Quisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\\\"\\ncanonical: ''\\n---\\n\\nQuisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\\n\\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-2.jpg)\\n\\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. \\n\\nPraesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"d0582dd245a3f408fb3fe2333bf01400007476e9\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:32:46 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4880", + "X-RateLimit-Reset": "1568125964", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7AD2:244EB:178993E:1C9450B:5D77A5FD", + "content-length": "2866", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzU2NzAxMTpkMDU4MmRkMjQ1YTNmNDA4ZmIzZmUyMzMzYmYwMTQwMDAwNzQ3NmU5\",\"text\":\"---\\ntitle: The Origins of Social Stationery Lettering\\ndate: \\\"2016-12-01T22:40:32.169Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Design Culture\\\"\\ndescription: \\\"Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante.\\\"\\ncanonical: ''\\n---\\n\\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \\n\\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\\n\\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-3.jpg)\\n\\n## Header Level 2\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \\n\\n
\\n\\t
\\n\\t\\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\\n\\t\\t
\\n\\t\\t\\t— Aliquam tincidunt mauris eu risus.\\n\\t\\t
\\n\\t
\\n
\\n\\n### Header Level 3\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\\n\\n```css\\n#header h1 a {\\n display: block;\\n width: 300px;\\n height: 80px;\\n}\\n```\\n\\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"44f78c474d04273185a95821426f75affc9b0044\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:32:46 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4881", + "X-RateLimit-Reset": "1568125964", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7AD6:244E1:4FB14E:601503:5D77A5FD", + "content-length": "16478", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzU2NzAxMTo0NGY3OGM0NzRkMDQyNzMxODVhOTU4MjE0MjZmNzVhZmZjOWIwMDQ0\",\"text\":\"---\\ntitle: \\\"Johannes Gutenberg: The Birth of Movable Type\\\"\\ndate: \\\"2017-08-18T22:12:03.284Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Typography\\\"\\ntags:\\n - \\\"Open source\\\"\\n - \\\"Gatsby\\\"\\n - \\\"Typography\\\"\\ndescription: \\\"German inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\\\"\\ncanonical: ''\\n---\\n\\nGerman inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\\n\\n**Johannes Gensfleisch zur Laden zum Gutenberg** (c. 1398 – 1468) was a German blacksmith, goldsmith, printer, and publisher who introduced printing to Europe. His invention of mechanical movable type printing started the Printing Revolution and is widely regarded as the most important event of the modern period. It played a key role in the development of the Renaissance, Reformation, the Age of Enlightenment, and the Scientific revolution and laid the material basis for the modern knowledge-based economy and the spread of learning to the masses.\\n\\n
\\n\\t\\\"Gutenberg\\\"\\n\\t
Johannes Gutenberg
\\n
\\n\\nWith his invention of the printing press, Gutenberg was the first European to use movable type printing, in around 1439. Among his many contributions to printing are: the invention of a process for mass-producing movable type; the use of oil-based ink; and the use of a wooden printing press similar to the agricultural screw presses of the period. His truly epochal invention was the combination of these elements into a practical system that allowed the mass production of printed books and was economically viable for printers and readers alike. Gutenberg's method for making type is traditionally considered to have included a type metal alloy and a hand mould for casting type. The alloy was a mixture of lead, tin, and antimony that melted at a relatively low temperature for faster and more economical casting, cast well, and created a durable type.\\n\\nIn Renaissance Europe, the arrival of mechanical movable type printing introduced the era of mass communication which permanently altered the structure of society. The relatively unrestricted circulation of information — including revolutionary ideas — transcended borders, captured the masses in the Reformation and threatened the power of political and religious authorities; the sharp increase in literacy broke the monopoly of the literate elite on education and learning and bolstered the emerging middle class. Across Europe, the increasing cultural self-awareness of its people led to the rise of proto-nationalism, accelerated by the flowering of the European vernacular languages to the detriment of Latin's status as lingua franca. In the 19th century, the replacement of the hand-operated Gutenberg-style press by steam-powered rotary presses allowed printing on an industrial scale, while Western-style printing was adopted all over the world, becoming practically the sole medium for modern bulk printing.\\n\\nThe use of movable type was a marked improvement on the handwritten manuscript, which was the existing method of book production in Europe, and upon woodblock printing, and revolutionized European book-making. Gutenberg's printing technology spread rapidly throughout Europe and later the world.\\n\\nHis major work, the Gutenberg Bible (also known as the 42-line Bible), has been acclaimed for its high aesthetic and technical quality.\\n\\n## Printing Press\\n\\nAround 1439, Gutenberg was involved in a financial misadventure making polished metal mirrors (which were believed to capture holy light from religious relics) for sale to pilgrims to Aachen: in 1439 the city was planning to exhibit its collection of relics from Emperor Charlemagne but the event was delayed by one year due to a severe flood and the capital already spent could not be repaid. When the question of satisfying the investors came up, Gutenberg is said to have promised to share a “secret”. It has been widely speculated that this secret may have been the idea of printing with movable type. Also around 1439–1440, the Dutch Laurens Janszoon Coster came up with the idea of printing. Legend has it that the idea came to him “like a ray of light”.\\n\\n
\\n\\t\\\"Early\\n\\t
Early wooden printing press as depicted in 1568.
\\n
\\n\\nUntil at least 1444 he lived in Strasbourg, most likely in the St. Arbogast parish. It was in Strasbourg in 1440 that Gutenberg is said to have perfected and unveiled the secret of printing based on his research, mysteriously entitled Kunst und Aventur (art and enterprise). It is not clear what work he was engaged in, or whether some early trials with printing from movable type may have been conducted there. After this, there is a gap of four years in the record. In 1448, he was back in Mainz, where he took out a loan from his brother-in-law Arnold Gelthus, quite possibly for a printing press or related paraphernalia. By this date, Gutenberg may have been familiar with intaglio printing; it is claimed that he had worked on copper engravings with an artist known as the Master of Playing Cards.\\n\\nBy 1450, the press was in operation, and a German poem had been printed, possibly the first item to be printed there. Gutenberg was able to convince the wealthy moneylender Johann Fust for a loan of 800 guilders. Peter Schöffer, who became Fust’s son-in-law, also joined the enterprise. Schöffer had worked as a scribe in Paris and is believed to have designed some of the first typefaces.\\n\\n
\\n\\t
\\n\\t\\t

All that has been written to me about that marvelous man seen at Frankfurt is true. I have not seen complete Bibles but only a number of quires of various books of the Bible. The script was very neat and legible, not at all difficult to follow—your grace would be able to read it without effort, and indeed without glasses.

\\n\\t\\t
\\n\\t\\t\\t—Future pope Pius II in a letter to Cardinal Carvajal, March 1455\\n\\t\\t
\\n\\t
\\n
\\n\\nGutenberg's workshop was set up at Hof Humbrecht, a property belonging to a distant relative. It is not clear when Gutenberg conceived the Bible project, but for this he borrowed another 800 guilders from Fust, and work commenced in 1452. At the same time, the press was also printing other, more lucrative texts (possibly Latin grammars). There is also some speculation that there may have been two presses, one for the pedestrian texts, and one for the Bible. One of the profit-making enterprises of the new press was the printing of thousands of indulgences for the church, documented from 1454–55.\\n\\nIn 1455 Gutenberg completed his 42-line Bible, known as the Gutenberg Bible. About 180 copies were printed, most on paper and some on vellum.\\n\\n## Court Case\\n\\nSome time in 1456, there was a dispute between Gutenberg and Fust, and Fust demanded his money back, accusing Gutenberg of misusing the funds. Meanwhile the expenses of the Bible project had proliferated, and Gutenberg's debt now exceeded 20,000 guilders. Fust sued at the archbishop's court. A November 1455 legal document records that there was a partnership for a \\\"project of the books,\\\" the funds for which Gutenberg had used for other purposes, according to Fust. The court decided in favor of Fust, giving him control over the Bible printing workshop and half of all printed Bibles.\\n\\nThus Gutenberg was effectively bankrupt, but it appears he retained (or re-started) a small printing shop, and participated in the printing of a Bible in the town of Bamberg around 1459, for which he seems at least to have supplied the type. But since his printed books never carry his name or a date, it is difficult to be certain, and there is consequently a considerable scholarly debate on this subject. It is also possible that the large Catholicon dictionary, 300 copies of 754 pages, printed in Mainz in 1460, may have been executed in his workshop.\\n\\nMeanwhile, the Fust–Schöffer shop was the first in Europe to bring out a book with the printer's name and date, the Mainz Psalter of August 1457, and while proudly proclaiming the mechanical process by which it had been produced, it made no mention of Gutenberg.\\n\\n## Later Life\\n\\nIn 1462, during a conflict between two archbishops, Mainz was sacked by archbishop Adolph von Nassau, and Gutenberg was exiled. An old man by now, he moved to Eltville where he may have initiated and supervised a new printing press belonging to the brothers Bechtermünze.\\n\\nIn January 1465, Gutenberg's achievements were recognized and he was given the title Hofmann (gentleman of the court) by von Nassau. This honor included a stipend, an annual court outfit, as well as 2,180 litres of grain and 2,000 litres of wine tax-free. It is believed he may have moved back to Mainz around this time, but this is not certain.\\n\\n***\\n\\nGutenberg died in 1468 and was buried in the Franciscan church at Mainz, his contributions largely unknown. This church and the cemetery were later destroyed, and Gutenberg's grave is now lost.\\n\\nIn 1504, he was mentioned as the inventor of typography in a book by Professor Ivo Wittig. It was not until 1567 that the first portrait of Gutenberg, almost certainly an imaginary reconstruction, appeared in Heinrich Pantaleon's biography of famous Germans.\\n\\n## Printing Method With Movable Type\\n\\nGutenberg's early printing process, and what tests he may have made with movable type, are not known in great detail. His later Bibles were printed in such a way as to have required large quantities of type, some estimates suggesting as many as 100,000 individual sorts. Setting each page would take, perhaps, half a day, and considering all the work in loading the press, inking the type, pulling the impressions, hanging up the sheets, distributing the type, etc., it is thought that the Gutenberg–Fust shop might have employed as many as 25 craftsmen.\\n\\n![Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5](/media/movable-type.jpg)\\n\\n*Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5*\\n\\nGutenberg's technique of making movable type remains unclear. In the following decades, punches and copper matrices became standardized in the rapidly disseminating printing presses across Europe. Whether Gutenberg used this sophisticated technique or a somewhat primitive version has been the subject of considerable debate.\\n\\nIn the standard process of making type, a hard metal punch (made by punchcutting, with the letter carved back to front) is hammered into a softer copper bar, creating a matrix. This is then placed into a hand-held mould and a piece of type, or \\\"sort\\\", is cast by filling the mould with molten type-metal; this cools almost at once, and the resulting piece of type can be removed from the mould. The matrix can be reused to create hundreds, or thousands, of identical sorts so that the same character appearing anywhere within the book will appear very uniform, giving rise, over time, to the development of distinct styles of typefaces or fonts. After casting, the sorts are arranged into type-cases, and used to make up pages which are inked and printed, a procedure which can be repeated hundreds, or thousands, of times. The sorts can be reused in any combination, earning the process the name of “movable type”.\\n\\nThe invention of the making of types with punch, matrix and mold has been widely attributed to Gutenberg. However, recent evidence suggests that Gutenberg's process was somewhat different. If he used the punch and matrix approach, all his letters should have been nearly identical, with some variations due to miscasting and inking. However, the type used in Gutenberg's earliest work shows other variations.\\n\\n
\\n\\t
\\n\\t\\t

It is a press, certainly, but a press from which shall flow in inexhaustible streams… Through it, god will spread his word.

\\n\\t\\t
\\n\\t\\t\\t—Johannes Gutenberg\\n\\t\\t
\\n\\t
\\n
\\n\\nIn 2001, the physicist Blaise Agüera y Arcas and Princeton librarian Paul Needham, used digital scans of a Papal bull in the Scheide Library, Princeton, to carefully compare the same letters (types) appearing in different parts of the printed text. The irregularities in Gutenberg's type, particularly in simple characters such as the hyphen, suggested that the variations could not have come from either ink smear or from wear and damage on the pieces of metal on the types themselves. While some identical types are clearly used on other pages, other variations, subjected to detailed image analysis, suggested that they could not have been produced from the same matrix. Transmitted light pictures of the page also appeared to reveal substructures in the type that could not arise from traditional punchcutting techniques. They hypothesized that the method may have involved impressing simple shapes to create alphabets in “cuneiform” style in a matrix made of some soft material, perhaps sand. Casting the type would destroy the mould, and the matrix would need to be recreated to make each additional sort. This could explain the variations in the type, as well as the substructures observed in the printed images.\\n\\nThus, they feel that “the decisive factor for the birth of typography”, the use of reusable moulds for casting type, might have been a more progressive process than was previously thought. They suggest that the additional step of using the punch to create a mould that could be reused many times was not taken until twenty years later, in the 1470s. Others have not accepted some or all of their suggestions, and have interpreted the evidence in other ways, and the truth of the matter remains very uncertain.\\n\\nA 1568 history by Hadrianus Junius of Holland claims that the basic idea of the movable type came to Gutenberg from Laurens Janszoon Coster via Fust, who was apprenticed to Coster in the 1430s and may have brought some of his equipment from Haarlem to Mainz. While Coster appears to have experimented with moulds and castable metal type, there is no evidence that he had actually printed anything with this technology. He was an inventor and a goldsmith. However, there is one indirect supporter of the claim that Coster might be the inventor. The author of the Cologne Chronicle of 1499 quotes Ulrich Zell, the first printer of Cologne, that printing was performed in Mainz in 1450, but that some type of printing of lower quality had previously occurred in the Netherlands. However, the chronicle does not mention the name of Coster, while it actually credits Gutenberg as the \\\"first inventor of printing\\\" in the very same passage (fol. 312). The first securely dated book by Dutch printers is from 1471, and the Coster connection is today regarded as a mere legend.\\n\\nThe 19th century printer and typefounder Fournier Le Jeune suggested that Gutenberg might not have been using type cast with a reusable matrix, but possibly wooden types that were carved individually. A similar suggestion was made by Nash in 2004. This remains possible, albeit entirely unproven.\\n\\nIt has also been questioned whether Gutenberg used movable types at all. In 2004, Italian professor Bruno Fabbiani claimed that examination of the 42-line Bible revealed an overlapping of letters, suggesting that Gutenberg did not in fact use movable type (individual cast characters) but rather used whole plates made from a system somewhat like a modern typewriter, whereby the letters were stamped successively into the plate and then printed. However, most specialists regard the occasional overlapping of type as caused by paper movement over pieces of type of slightly unequal height.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"a532f0a9445cdf90a19c6812cff89d1674991774\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:32:46 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4879", + "X-RateLimit-Reset": "1568125964", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7AD8:B4D3:ABD34:C5622:5D77A5FD", + "content-length": "7803", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzU2NzAxMTphNTMyZjBhOTQ0NWNkZjkwYTE5YzY4MTJjZmY4OWQxNjc0OTkxNzc0\",\"text\":\"---\\ntitle: Humane Typography in the Digital Age\\ndate: \\\"2017-08-19T22:40:32.169Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Typography\\\"\\ntags:\\n - \\\"Design\\\"\\n - \\\"Typography\\\"\\n - \\\"Web Development\\\"\\ndescription: \\\"An Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\\\"\\ncanonical: ''\\n---\\n\\n- [The first transition](#the-first-transition)\\n- [The digital age](#the-digital-age)\\n- [Loss of humanity through transitions](#loss-of-humanity-through-transitions)\\n- [Chasing perfection](#chasing-perfection)\\n\\nAn Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\\n\\nThe typography of this industrial age was no longer handcrafted. Mass production and profit became more important. Quantity mattered more than the quality. The books and printed works in general lost a part of its humanity. The typefaces were not produced by craftsmen anymore. It was the machines printing and tying the books together now. The craftsmen had to let go of their craft and became a cog in the process. An extension of the industrial machine.\\n\\nBut the victory of the industrialism didn’t mean that the craftsmen were completely extinct. The two worlds continued to coexist independently. Each recognising the good in the other — the power of industrialism and the humanity of craftsmanship. This was the second transition that would strip typography of a part of its humanity. We have to go 500 years back in time to meet the first one.\\n\\n## The first transition\\n\\nA similar conflict emerged after the invention of the first printing press in Europe. Johannes Gutenberg invented movable type and used it to produce different compositions. His workshop could print up to 240 impressions per hour. Until then, the books were being copied by hand. All the books were handwritten and decorated with hand drawn ornaments and figures. A process of copying a book was long but each book, even a copy, was a work of art.\\n\\nThe first printed books were, at first, perceived as inferior to the handwritten ones. They were smaller and cheaper to produce. Movable type provided the printers with flexibility that allowed them to print books in languages other than Latin. Gill describes the transition to industrialism as something that people needed and wanted. Something similar happened after the first printed books emerged. People wanted books in a language they understood and they wanted books they could take with them. They were hungry for knowledge and printed books satisfied this hunger.\\n\\n![42-line-bible.jpg](/media/42-line-bible.jpg)\\n\\n*The 42–Line Bible, printed by Gutenberg.*\\n\\nBut, through this transition, the book lost a large part of its humanity. The machine took over most of the process but craftsmanship was still a part of it. The typefaces were cut manually by the first punch cutters. The paper was made by hand. The illustrations and ornaments were still being hand drawn. These were the remains of the craftsmanship that went almost extinct in the times of Eric Gill.\\n\\n## The digital age\\n\\nThe first transition took away a large part of humanity from written communication. Industrialisation, the second transition described by Eric Gill, took away most of what was left. But it’s the third transition that stripped it naked. Typefaces are faceless these days. They’re just fonts on our computers. Hardly anyone knows their stories. Hardly anyone cares. Flicking through thousands of typefaces and finding the “right one” is a matter of minutes.\\n\\n> In the new computer age the proliferation of typefaces and type manipulations represents a new level of visual pollution threatening our culture. Out of thousands of typefaces, all we need are a few basic ones, and trash the rest.\\n>\\n— Massimo Vignelli\\n\\nTypography is not about typefaces. It’s not about what looks best, it’s about what feels right. What communicates the message best. Typography, in its essence, is about the message. “Typographical design should perform optically what the speaker creates through voice and gesture of his thoughts.”, as El Lissitzky, a famous Russian typographer, put it.\\n\\n## Loss of humanity through transitions\\n\\nEach transition took away a part of humanity from written language. Handwritten books being the most humane form and the digital typefaces being the least. Overuse of Helvetica is a good example. Messages are being told in a typeface just because it’s a safe option. It’s always there. Everyone knows it but yet, nobody knows it. Stop someone on the street and ask him what Helvetica is? Ask a designer the same question. Ask him where it came from, when, why and who designed it. Most of them will fail to answer these questions. Most of them used it in their precious projects but they still don’t spot it in the street.\\n\\n
\\n\\t
\\n\\t\\t

Knowledge of the quality of a typeface is of the greatest importance for the functional, aesthetic and psychological effect.

\\n\\t\\t
\\n\\t\\t\\t— Josef Mueller-Brockmann\\n\\t\\t
\\n\\t
\\n
\\n\\nTypefaces don’t look handmade these days. And that’s all right. They don’t have to. Industrialism took that away from them and we’re fine with it. We’ve traded that part of humanity for a process that produces more books that are easier to read. That can’t be bad. And it isn’t.\\n\\n> Humane typography will often be comparatively rough and even uncouth; but while a certain uncouthness does not seriously matter in humane works, uncouthness has no excuse whatever in the productions of the machine.\\n>\\n> — Eric Gill\\n\\nWe’ve come close to “perfection” in the last five centuries. The letters are crisp and without rough edges. We print our compositions with high–precision printers on a high quality, machine made paper.\\n\\n![type-through-time.jpg](/media/type-through-time.jpg)\\n\\n*Type through 5 centuries.*\\n\\nWe lost a part of ourselves because of this chase after perfection. We forgot about the craftsmanship along the way. And the worst part is that we don’t care. The transition to the digital age made that clear. We choose typefaces like clueless zombies. There’s no meaning in our work. Type sizes, leading, margins… It’s all just a few clicks or lines of code. The message isn’t important anymore. There’s no more “why” behind the “what”.\\n\\n## Chasing perfection\\n\\nHuman beings aren’t perfect. Perfection is something that will always elude us. There will always be a small part of humanity in everything we do. No matter how small that part, we should make sure that it transcends the limits of the medium. We have to think about the message first. What typeface should we use and why? Does the typeface match the message and what we want to communicate with it? What will be the leading and why? Will there be more typefaces in our design? On what ground will they be combined? What makes our design unique and why? This is the part of humanity that is left in typography. It might be the last part. Are we really going to give it up?\\n\\n*Originally published by [Matej Latin](http://matejlatin.co.uk/) on [Medium](https://medium.com/design-notes/humane-typography-in-the-digital-age-9bd5c16199bd?ref=webdesignernews.com#.lygo82z0x).*\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"0eea554365f002d0f1572af9a58522d335a794d5\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:32:46 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4878", + "X-RateLimit-Reset": "1568125964", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7AD5:B4DE:119011B:155F561:5D77A5FD", + "content-length": "3102", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzU2NzAxMTowZWVhNTU0MzY1ZjAwMmQwZjE1NzJhZjlhNTg1MjJkMzM1YTc5NGQ1\",\"text\":\"---\\ntitle: \\\"A Brief History of Typography\\\"\\ndate: \\\"2016-02-02T22:40:32.169Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Design Inspiration\\\"\\ntags:\\n - \\\"Linotype\\\"\\n - \\\"Monotype\\\"\\n - \\\"History of typography\\\"\\n - \\\"Helvetica\\\"\\ndescription: \\\"Morbi in sem quis dui placerat ornare. Pellentesque odio nisi, euismod in, pharetra a, ultricies in, diam. Sed arcu. Cras consequat.\\\"\\ncanonical: ''\\n---\\n\\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \\n\\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\\n\\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-0.jpg)\\n\\n## Header Level 2\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \\n\\n
\\n\\t
\\n\\t\\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\\n\\t\\t
\\n\\t\\t\\t— Aliquam tincidunt mauris eu risus.\\n\\t\\t
\\n\\t
\\n
\\n\\n### Header Level 3\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\\n\\n```css\\n#header h1 a {\\n display: block;\\n width: 300px;\\n height: 80px;\\n}\\n```\\n\\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/1970-01-01-first-title.json?ts=300&ref=refs/meta/_netlify_cms", + "headers": { + "Date": "Tue, 10 Sep 2019 13:32:49 GMT", + "Content-Type": "application/vnd.github.VERSION.raw; charset=utf-8", + "Content-Length": "472", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4902", + "X-RateLimit-Reset": "1568125713", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"8cb25bb9d345488f514facf57064d87d1cfffd6c\"", + "Last-Modified": "Tue, 10 Sep 2019 13:31:14 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B26:15110:1801098:1D26E0E:5D77A601", + "connection": "keep-alive" + }, + "response": "{\"type\":\"PR\",\"pr\":{\"number\":3,\"head\":\"58918518ad776fba1f196ce03e7828af11421529\"},\"user\":\"owner\",\"status\":\"pending_publish\",\"branch\":\"cms/1970-01-01-first-title\",\"collection\":\"posts\",\"commitMessage\":\"Create Post “1970-01-01-first-title”\",\"title\":\"first title\",\"description\":\"first description\",\"objects\":{\"entry\":{\"path\":\"content/posts/1970-01-01-first-title.md\",\"sha\":\"a041245814892e3f73f63ca54333fda649b7fc0b\"},\"files\":[]},\"timeStamp\":\"1970-01-01T00:00:00.300Z\"}", + "status": 200 + }, + { + "body": "{\"operationName\":\"unpublishedBranchFile\",\"variables\":{\"headOwner\":\"owner\",\"headRepoName\":\"repo\",\"headExpression\":\"cms/1970-01-01-first-title:content/posts/1970-01-01-first-title.md\",\"baseOwner\":\"owner\",\"baseRepoName\":\"repo\",\"baseExpression\":\"master:content/posts/1970-01-01-first-title.md\"},\"query\":\"query unpublishedBranchFile($headOwner: String!, $headRepoName: String!, $headExpression: String!, $baseOwner: String!, $baseRepoName: String!, $baseExpression: String!) {\\n head: repository(owner: $headOwner, name: $headRepoName) {\\n ...RepositoryParts\\n object(expression: $headExpression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n base: repository(owner: $baseOwner, name: $baseRepoName) {\\n ...RepositoryParts\\n object(expression: $baseExpression) {\\n ... on Blob {\\n id\\n oid\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:32:50 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4877", + "X-RateLimit-Reset": "1568125964", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7B28:2B15:4BE47A:5C140D:5D77A602", + "content-length": "189", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"head\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"object\":null},\"base\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"object\":null}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"master:content/posts/1970-01-01-first-title.md\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:32:51 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4876", + "X-RateLimit-Reset": "1568125964", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7B2A:2B1F:11C4CCC:15ACFE0:5D77A602", + "content-length": "106", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"object\":null}}}\n", + "status": 200 + }, + { + "body": "{\"content\":\"LS0tCnRlbXBsYXRlOiBwb3N0CnRpdGxlOiBmaXJzdCB0aXRsZQpkcmFmdDogdHJ1ZQpkYXRlOiAxOTcwLTAxLTAxVDAwOjAwOjAwLjAwMFoKZGVzY3JpcHRpb246IGZpcnN0IGRlc2NyaXB0aW9uCmNhdGVnb3J5OiBmaXJzdCBjYXRlZ29yeQp0YWdzOgogIC0gdGFnMQotLS0KZmlyc3QgYm9keQo=\",\"encoding\":\"base64\"}", + "method": "POST", + "url": "/repos/owner/repo/git/blobs?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:32:52 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "207", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4901", + "X-RateLimit-Reset": "1568125713", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"83b3e749712791d5ee508f9924334557\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B2C:9D21:16C0233:1BB4E42:5D77A603", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"a041245814892e3f73f63ca54333fda649b7fc0b\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b\"\n}\n", + "status": 201 + }, + { + "body": "{\"operationName\":\"branch\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"qualifiedName\":\"refs/heads/master\"},\"query\":\"query branch($owner: String!, $name: String!, $qualifiedName: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n branch: ref(qualifiedName: $qualifiedName) {\\n ...BranchParts\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BranchParts on Ref {\\n commit: target {\\n ...ObjectParts\\n __typename\\n }\\n id\\n name\\n repository {\\n ...RepositoryParts\\n __typename\\n }\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:32:53 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4875", + "X-RateLimit-Reset": "1568125964", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7B2E:15110:180155B:1D273DD:5D77A604", + "content-length": "429", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"branch\":{\"commit\":{\"id\":\"MDY6Q29tbWl0MjA3NTY3MDExOjcyNjE3MmRlYWU5OWM4YTJjZWE0YzcxZTczNGEwMmE3OTNkNGQ5ZTU=\",\"sha\":\"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\"__typename\":\"Commit\"},\"id\":\"MDM6UmVmMjA3NTY3MDExOm1hc3Rlcg==\",\"name\":\"master\",\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\"},\"__typename\":\"Ref\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"tree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"726172deae99c8a2cea4c71e734a02a793d4d9e5\"},\"query\":\"query tree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n tree: object(oid: $sha) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:32:53 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4874", + "X-RateLimit-Reset": "1568125964", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7B32:2B15:4BE5BC:5C15A0:5D77A605", + "content-length": "260", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"tree\":{\"id\":\"MDY6Q29tbWl0MjA3NTY3MDExOjcyNjE3MmRlYWU5OWM4YTJjZWE0YzcxZTczNGEwMmE3OTNkNGQ5ZTU=\",\"sha\":\"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\"__typename\":\"Commit\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"commitTree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"726172deae99c8a2cea4c71e734a02a793d4d9e5\"},\"query\":\"query commitTree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n commit: object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n tree {\\n ...ObjectParts\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:32:53 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4873", + "X-RateLimit-Reset": "1568125964", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7B30:9D1D:186E25:1DD7D0:5D77A605", + "content-length": "5040", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"commit\":{\"id\":\"MDY6Q29tbWl0MjA3NTY3MDExOjcyNjE3MmRlYWU5OWM4YTJjZWE0YzcxZTczNGEwMmE3OTNkNGQ5ZTU=\",\"sha\":\"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\"__typename\":\"Commit\",\"tree\":{\"id\":\"MDQ6VHJlZTIwNzU2NzAxMTpjNWI3ZjZkNjc0YmExOTNiYjdiNGE1ZmNmNDkzMzAzNGUxYjdmMmI3\",\"sha\":\"c5b7f6d674ba193bb7b4a5fcf4933034e1b7f2b7\",\"__typename\":\"Tree\",\"entries\":[{\"path\":\".circleci\",\"sha\":\"e5e9af3301cac61f120b8e4d40b1733c7a45685a\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\".eslintignore\",\"sha\":\"80b4531b026d19f8fa589efd122e76199d23f967\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".eslintrc.js\",\"sha\":\"370684994aaed5b858da3a006f48cfa57e88fd27\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".flowconfig\",\"sha\":\"14aa2ac4cc0e15223ad98630a6f1325fc81f8043\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".gitattributes\",\"sha\":\"10a369ddf4f603337cabc6f21646508323941ce1\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".github\",\"sha\":\"4ebeece548b52b20af59622354530a6d33b50b43\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\".gitignore\",\"sha\":\"c071ba35b0e49899bab6d610a68eef667dbbf157\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".prettierignore\",\"sha\":\"393f050e123d998cf8c8b362ff95cc8ac4d250e5\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".prettierrc\",\"sha\":\"e52ad05bb13b084d7949dd76e1b2517455162150\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".stylelintrc.json\",\"sha\":\"4b4c9698d10d756f5faa025659b86375428ed0a7\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".vscode\",\"sha\":\"286e97ec0113ea8242b41ac222e2c3e8077e6f1e\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"CHANGELOG.md\",\"sha\":\"070a5d4f0eacd2dc0be81ae8996f8982de43046e\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"CODE_OF_CONDUCT.md\",\"sha\":\"92bc7565ff0ee145a0041b5179a820f14f39ab22\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"CONTRIBUTING.md\",\"sha\":\"8552aa241254a61258e1ff9666ab36f32fb1e3b9\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"LICENSE\",\"sha\":\"42d85938357b49977c126ca03b199129082d4fb8\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"README.md\",\"sha\":\"19df50a78654c8d757ca7f38447aa3d09c7abcce\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"backend\",\"sha\":\"b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"config.js\",\"sha\":\"58afd573bbb69fcca000efd0f5d90b93c93a98dd\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"content\",\"sha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"flow-typed\",\"sha\":\"86c32fd6c3118be5e0dbbb231a834447357236c6\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"flow\",\"sha\":\"0af45ad00d155c8d8c7407d913ff85278244c9ce\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"gatsby-browser.js\",\"sha\":\"9bd2c9dce175f04980e91cd9dc295a299e3cdb80\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"gatsby-config.js\",\"sha\":\"353a109dad62e3f25bf9f5e6a2167f21a6c8b459\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"gatsby-node.js\",\"sha\":\"14a207883c2093d2cc071bc5a464e165bcc1fead\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"gatsby\",\"sha\":\"4f23c06cd1740bf78304d2c0b29bf6bfdf427981\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"jest\",\"sha\":\"5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"netlify.toml\",\"sha\":\"599b99cc5700404fde316a7ede829776f23e7d45\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"package.json\",\"sha\":\"9d777616438b90a18f1a4ebfd5f114b4c06c6f17\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"postcss-config.js\",\"sha\":\"d216501e9b351a72e00ba0b7459a6500e27e7da2\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"renovate.json\",\"sha\":\"dcc309398785698b8870545c32051a3d72dd8271\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"serverless-scripts\",\"sha\":\"ee3701f2fbfc7196ba340f6481d1387d20527898\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"serverless-single-page-app-plugin\",\"sha\":\"08763fcfba643a06a452398517019bea4a5850ba\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"serverless.yml\",\"sha\":\"20b22c5fad229f35d029bf6614d333d82fe8a987\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"src\",\"sha\":\"8cdb35a88232c0f32f12f130c92c7cc55f97f471\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"static\",\"sha\":\"53c6380a600a030d3722bff7ecde36f749fb6964\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"utils\",\"sha\":\"a592549c9f74db40b51efefcda2fd76810405f27\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"yarn.lock\",\"sha\":\"475c9c1924ca752a0686303e2fdeb7b13ad75f57\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"}]}}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"commitTree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\"},\"query\":\"query commitTree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n commit: object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n tree {\\n ...ObjectParts\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:32:54 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4871", + "X-RateLimit-Reset": "1568125964", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7B34:9D1F:9EA443:C1942B:5D77A606", + "content-length": "256", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"commit\":{\"id\":\"MDQ6VHJlZTIwNzU2NzAxMTowMjk0ZWYxMDZjNTg3NDM5MDdhNWM4NTVkYTFlYjBmODdiMGI2ZGZj\",\"sha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\"__typename\":\"Tree\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"tree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\"},\"query\":\"query tree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n tree: object(oid: $sha) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:32:54 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4872", + "X-RateLimit-Reset": "1568125964", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7B36:1510D:44DEBA:546F80:5D77A606", + "content-length": "502", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"tree\":{\"id\":\"MDQ6VHJlZTIwNzU2NzAxMTowMjk0ZWYxMDZjNTg3NDM5MDdhNWM4NTVkYTFlYjBmODdiMGI2ZGZj\",\"sha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\"__typename\":\"Tree\",\"entries\":[{\"path\":\"pages\",\"sha\":\"1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"posts\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"}]}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"tree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\"},\"query\":\"query tree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n tree: object(oid: $sha) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:32:55 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4870", + "X-RateLimit-Reset": "1568125964", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7B3A:244E4:AAD85C:CEF2E2:5D77A606", + "content-length": "1075", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"tree\":{\"id\":\"MDQ6VHJlZTIwNzU2NzAxMTozNDg5MjU3NWUyMTZjMDZlNzU3MDkzZjAzNmJkOGUwNTdjNzhhNTJm\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"__typename\":\"Tree\",\"entries\":[{\"path\":\"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\"sha\":\"6d51a38aed7139d2117724b1e307657b6ff2d043\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\"sha\":\"d0582dd245a3f408fb3fe2333bf01400007476e9\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"2016-02-02---A-Brief-History-of-Typography.md\",\"sha\":\"0eea554365f002d0f1572af9a58522d335a794d5\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"2017-18-08---The-Birth-of-Movable-Type.md\",\"sha\":\"44f78c474d04273185a95821426f75affc9b0044\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\"sha\":\"a532f0a9445cdf90a19c6812cff89d1674991774\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"}]}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"commitTree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\"},\"query\":\"query commitTree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n commit: object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n tree {\\n ...ObjectParts\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:32:55 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4869", + "X-RateLimit-Reset": "1568125964", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7B38:244EB:178A94D:1C95882:5D77A606", + "content-length": "256", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"commit\":{\"id\":\"MDQ6VHJlZTIwNzU2NzAxMTozNDg5MjU3NWUyMTZjMDZlNzU3MDkzZjAzNmJkOGUwNTdjNzhhNTJm\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"__typename\":\"Tree\"}}}}\n", + "status": 200 + }, + { + "body": "{\"base_tree\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"tree\":[{\"path\":\"1970-01-01-first-title.md\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"a041245814892e3f73f63ca54333fda649b7fc0b\"}]}", + "method": "POST", + "url": "/repos/owner/repo/git/trees?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:32:56 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "2362", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4900", + "X-RateLimit-Reset": "1568125713", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"6d65750d5f558dadf97dc866bf8b2047\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B3C:244E4:AAD8ED:CEF3A0:5D77A607", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a041245814892e3f73f63ca54333fda649b7fc0b\",\n \"size\": 167,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b\"\n },\n {\n \"path\": \"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"size\": 1707,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\"\n },\n {\n \"path\": \"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"size\": 2565,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\"\n },\n {\n \"path\": \"2016-02-02---A-Brief-History-of-Typography.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"0eea554365f002d0f1572af9a58522d335a794d5\",\n \"size\": 2786,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\"\n },\n {\n \"path\": \"2017-18-08---The-Birth-of-Movable-Type.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"44f78c474d04273185a95821426f75affc9b0044\",\n \"size\": 16071,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\"\n },\n {\n \"path\": \"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"size\": 7465,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"base_tree\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\"tree\":[{\"path\":\"posts\",\"mode\":\"040000\",\"type\":\"tree\",\"sha\":\"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\"parentSha\":\"34892575e216c06e757093f036bd8e057c78a52f\"}]}", + "method": "POST", + "url": "/repos/owner/repo/git/trees?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:32:56 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "831", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4899", + "X-RateLimit-Reset": "1568125713", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"941458d17a55aece507a4092046edf20\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B3E:2B19:A54E94:C91F1C:5D77A608", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"tree\": [\n {\n \"path\": \"pages\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\"\n },\n {\n \"path\": \"posts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"base_tree\":\"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\"tree\":[{\"path\":\"content\",\"mode\":\"040000\",\"type\":\"tree\",\"sha\":\"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\"parentSha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\"}]}", + "method": "POST", + "url": "/repos/owner/repo/git/trees?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:32:57 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "11769", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4898", + "X-RateLimit-Reset": "1568125713", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"5b931daea9222fce9b5272abe62d9270\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/trees/daee8d5d15d144e8779955166a2afeccde2770e1", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B41:2B24:1744314:1C47457:5D77A609", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"daee8d5d15d144e8779955166a2afeccde2770e1\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/daee8d5d15d144e8779955166a2afeccde2770e1\",\n \"tree\": [\n {\n \"path\": \".circleci\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"e5e9af3301cac61f120b8e4d40b1733c7a45685a\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/e5e9af3301cac61f120b8e4d40b1733c7a45685a\"\n },\n {\n \"path\": \".eslintignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"80b4531b026d19f8fa589efd122e76199d23f967\",\n \"size\": 39,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/80b4531b026d19f8fa589efd122e76199d23f967\"\n },\n {\n \"path\": \".eslintrc.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"370684994aaed5b858da3a006f48cfa57e88fd27\",\n \"size\": 414,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/370684994aaed5b858da3a006f48cfa57e88fd27\"\n },\n {\n \"path\": \".flowconfig\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14aa2ac4cc0e15223ad98630a6f1325fc81f8043\",\n \"size\": 283,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14aa2ac4cc0e15223ad98630a6f1325fc81f8043\"\n },\n {\n \"path\": \".gitattributes\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"10a369ddf4f603337cabc6f21646508323941ce1\",\n \"size\": 135,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/10a369ddf4f603337cabc6f21646508323941ce1\"\n },\n {\n \"path\": \".github\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4ebeece548b52b20af59622354530a6d33b50b43\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4ebeece548b52b20af59622354530a6d33b50b43\"\n },\n {\n \"path\": \".gitignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"c071ba35b0e49899bab6d610a68eef667dbbf157\",\n \"size\": 169,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/c071ba35b0e49899bab6d610a68eef667dbbf157\"\n },\n {\n \"path\": \".prettierignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"393f050e123d998cf8c8b362ff95cc8ac4d250e5\",\n \"size\": 45,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/393f050e123d998cf8c8b362ff95cc8ac4d250e5\"\n },\n {\n \"path\": \".prettierrc\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e52ad05bb13b084d7949dd76e1b2517455162150\",\n \"size\": 223,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/e52ad05bb13b084d7949dd76e1b2517455162150\"\n },\n {\n \"path\": \".stylelintrc.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"4b4c9698d10d756f5faa025659b86375428ed0a7\",\n \"size\": 718,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/4b4c9698d10d756f5faa025659b86375428ed0a7\"\n },\n {\n \"path\": \".vscode\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"286e97ec0113ea8242b41ac222e2c3e8077e6f1e\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/286e97ec0113ea8242b41ac222e2c3e8077e6f1e\"\n },\n {\n \"path\": \"CHANGELOG.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"070a5d4f0eacd2dc0be81ae8996f8982de43046e\",\n \"size\": 2113,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/070a5d4f0eacd2dc0be81ae8996f8982de43046e\"\n },\n {\n \"path\": \"CODE_OF_CONDUCT.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"92bc7565ff0ee145a0041b5179a820f14f39ab22\",\n \"size\": 3355,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/92bc7565ff0ee145a0041b5179a820f14f39ab22\"\n },\n {\n \"path\": \"CONTRIBUTING.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"8552aa241254a61258e1ff9666ab36f32fb1e3b9\",\n \"size\": 3548,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/8552aa241254a61258e1ff9666ab36f32fb1e3b9\"\n },\n {\n \"path\": \"LICENSE\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"42d85938357b49977c126ca03b199129082d4fb8\",\n \"size\": 1091,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/42d85938357b49977c126ca03b199129082d4fb8\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"19df50a78654c8d757ca7f38447aa3d09c7abcce\",\n \"size\": 3698,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/19df50a78654c8d757ca7f38447aa3d09c7abcce\"\n },\n {\n \"path\": \"backend\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\"\n },\n {\n \"path\": \"config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"58afd573bbb69fcca000efd0f5d90b93c93a98dd\",\n \"size\": 853,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/58afd573bbb69fcca000efd0f5d90b93c93a98dd\"\n },\n {\n \"path\": \"content\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639\"\n },\n {\n \"path\": \"flow-typed\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"86c32fd6c3118be5e0dbbb231a834447357236c6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/86c32fd6c3118be5e0dbbb231a834447357236c6\"\n },\n {\n \"path\": \"flow\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"0af45ad00d155c8d8c7407d913ff85278244c9ce\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/0af45ad00d155c8d8c7407d913ff85278244c9ce\"\n },\n {\n \"path\": \"gatsby-browser.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9bd2c9dce175f04980e91cd9dc295a299e3cdb80\",\n \"size\": 90,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9bd2c9dce175f04980e91cd9dc295a299e3cdb80\"\n },\n {\n \"path\": \"gatsby-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"353a109dad62e3f25bf9f5e6a2167f21a6c8b459\",\n \"size\": 7228,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/353a109dad62e3f25bf9f5e6a2167f21a6c8b459\"\n },\n {\n \"path\": \"gatsby-node.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14a207883c2093d2cc071bc5a464e165bcc1fead\",\n \"size\": 409,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14a207883c2093d2cc071bc5a464e165bcc1fead\"\n },\n {\n \"path\": \"gatsby\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4f23c06cd1740bf78304d2c0b29bf6bfdf427981\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4f23c06cd1740bf78304d2c0b29bf6bfdf427981\"\n },\n {\n \"path\": \"jest\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\"\n },\n {\n \"path\": \"netlify.toml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"599b99cc5700404fde316a7ede829776f23e7d45\",\n \"size\": 137,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/599b99cc5700404fde316a7ede829776f23e7d45\"\n },\n {\n \"path\": \"package.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9d777616438b90a18f1a4ebfd5f114b4c06c6f17\",\n \"size\": 6855,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9d777616438b90a18f1a4ebfd5f114b4c06c6f17\"\n },\n {\n \"path\": \"postcss-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d216501e9b351a72e00ba0b7459a6500e27e7da2\",\n \"size\": 703,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d216501e9b351a72e00ba0b7459a6500e27e7da2\"\n },\n {\n \"path\": \"renovate.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"dcc309398785698b8870545c32051a3d72dd8271\",\n \"size\": 460,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/dcc309398785698b8870545c32051a3d72dd8271\"\n },\n {\n \"path\": \"serverless-scripts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ee3701f2fbfc7196ba340f6481d1387d20527898\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ee3701f2fbfc7196ba340f6481d1387d20527898\"\n },\n {\n \"path\": \"serverless-single-page-app-plugin\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"08763fcfba643a06a452398517019bea4a5850ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/08763fcfba643a06a452398517019bea4a5850ba\"\n },\n {\n \"path\": \"serverless.yml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"20b22c5fad229f35d029bf6614d333d82fe8a987\",\n \"size\": 7803,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/20b22c5fad229f35d029bf6614d333d82fe8a987\"\n },\n {\n \"path\": \"src\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"8cdb35a88232c0f32f12f130c92c7cc55f97f471\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/8cdb35a88232c0f32f12f130c92c7cc55f97f471\"\n },\n {\n \"path\": \"static\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"53c6380a600a030d3722bff7ecde36f749fb6964\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/53c6380a600a030d3722bff7ecde36f749fb6964\"\n },\n {\n \"path\": \"utils\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"a592549c9f74db40b51efefcda2fd76810405f27\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/a592549c9f74db40b51efefcda2fd76810405f27\"\n },\n {\n \"path\": \"yarn.lock\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"475c9c1924ca752a0686303e2fdeb7b13ad75f57\",\n \"size\": 793903,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/475c9c1924ca752a0686303e2fdeb7b13ad75f57\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"message\":\"Create Post “1970-01-01-first-title”\",\"tree\":\"daee8d5d15d144e8779955166a2afeccde2770e1\",\"parents\":[\"726172deae99c8a2cea4c71e734a02a793d4d9e5\"]}", + "method": "POST", + "url": "/repos/owner/repo/git/commits?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:32:58 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "1504", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4897", + "X-RateLimit-Reset": "1568125713", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"a626a97f8a80001bc138d56d25967d84\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/commits/f8072f71f59ac885ff1963bdc46335691565f319", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B43:244EB:178AEFC:1C95F94:5D77A609", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"f8072f71f59ac885ff1963bdc46335691565f319\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NTY3MDExOmY4MDcyZjcxZjU5YWM4ODVmZjE5NjNiZGM0NjMzNTY5MTU2NWYzMTk=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/f8072f71f59ac885ff1963bdc46335691565f319\",\n \"html_url\": \"https://github.com/owner/repo/commit/f8072f71f59ac885ff1963bdc46335691565f319\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T13:32:58Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T13:32:58Z\"\n },\n \"tree\": {\n \"sha\": \"daee8d5d15d144e8779955166a2afeccde2770e1\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/daee8d5d15d144e8779955166a2afeccde2770e1\"\n },\n \"message\": \"Create Post “1970-01-01-first-title”\",\n \"parents\": [\n {\n \"sha\": \"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"html_url\": \"https://github.com/owner/repo/commit/726172deae99c8a2cea4c71e734a02a793d4d9e5\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "status": 201 + }, + { + "body": "{\"operationName\":\"createBranchAndPullRequest\",\"variables\":{\"createRefInput\":{\"name\":\"refs/heads/cms/1970-01-01-first-title\",\"oid\":\"f8072f71f59ac885ff1963bdc46335691565f319\",\"repositoryId\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\"},\"createPullRequestInput\":{\"baseRefName\":\"master\",\"body\":\"Automatically generated by Netlify CMS\",\"title\":\"Create Post “1970-01-01-first-title”\",\"headRefName\":\"cms/1970-01-01-first-title\",\"repositoryId\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\"}},\"query\":\"mutation createBranchAndPullRequest($createRefInput: CreateRefInput!, $createPullRequestInput: CreatePullRequestInput!) {\\n createRef(input: $createRefInput) {\\n branch: ref {\\n ...BranchParts\\n __typename\\n }\\n __typename\\n }\\n createPullRequest(input: $createPullRequestInput) {\\n clientMutationId\\n pullRequest {\\n ...PullRequestParts\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment BranchParts on Ref {\\n commit: target {\\n ...ObjectParts\\n __typename\\n }\\n id\\n name\\n repository {\\n ...RepositoryParts\\n __typename\\n }\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment PullRequestParts on PullRequest {\\n id\\n baseRefName\\n body\\n headRefName\\n headRefOid\\n number\\n state\\n title\\n merged_at: mergedAt\\n repository {\\n ...RepositoryParts\\n __typename\\n }\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:33:00 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4868", + "X-RateLimit-Reset": "1568125964", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7B44:1510E:A83F03:CCEC6D:5D77A60A", + "content-length": "952", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"createRef\":{\"branch\":{\"commit\":{\"id\":\"MDY6Q29tbWl0MjA3NTY3MDExOmY4MDcyZjcxZjU5YWM4ODVmZjE5NjNiZGM0NjMzNTY5MTU2NWYzMTk=\",\"sha\":\"f8072f71f59ac885ff1963bdc46335691565f319\",\"__typename\":\"Commit\"},\"id\":\"MDM6UmVmMjA3NTY3MDExOmNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxl\",\"name\":\"cms/1970-01-01-first-title\",\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\"},\"__typename\":\"Ref\"},\"__typename\":\"CreateRefPayload\"},\"createPullRequest\":{\"clientMutationId\":null,\"pullRequest\":{\"id\":\"MDExOlB1bGxSZXF1ZXN0MzE1OTk2OTYy\",\"baseRefName\":\"master\",\"body\":\"Automatically generated by Netlify CMS\",\"headRefName\":\"cms/1970-01-01-first-title\",\"headRefOid\":\"f8072f71f59ac885ff1963bdc46335691565f319\",\"number\":4,\"state\":\"OPEN\",\"title\":\"Create Post “1970-01-01-first-title”\",\"merged_at\":null,\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\"},\"__typename\":\"PullRequest\"},\"__typename\":\"CreatePullRequestPayload\"}}}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:33:01 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4896", + "X-RateLimit-Reset": "1568125713", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"e971108a813c7925643e8912f4dc7a35\"", + "Last-Modified": "Tue, 10 Sep 2019 13:31:40 GMT", + "X-Poll-Interval": "300", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B46:B4E0:16399EE:1B0B8D8:5D77A60C", + "content-length": "484", + "connection": "keep-alive" + }, + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NTY3MDExOnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"ced6de6b99339f1e68961d298ce115432e3380c8\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/ced6de6b99339f1e68961d298ce115432e3380c8\"\n }\n}\n", + "status": 200 + }, + { + "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjQsImhlYWQiOiJmODA3MmY3MWY1OWFjODg1ZmYxOTYzYmRjNDYzMzU2OTE1NjVmMzE5In0sInVzZXIiOiJvd25lciIsInN0YXR1cyI6ImRyYWZ0IiwiYnJhbmNoIjoiY21zLzE5NzAtMDEtMDEtZmlyc3QtdGl0bGUiLCJjb2xsZWN0aW9uIjoicG9zdHMiLCJjb21taXRNZXNzYWdlIjoiQ3JlYXRlIFBvc3Qg4oCcMTk3MC0wMS0wMS1maXJzdC10aXRsZeKAnSIsInRpdGxlIjoiZmlyc3QgdGl0bGUiLCJkZXNjcmlwdGlvbiI6ImZpcnN0IGRlc2NyaXB0aW9uIiwib2JqZWN0cyI6eyJlbnRyeSI6eyJwYXRoIjoiY29udGVudC9wb3N0cy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxlLm1kIiwic2hhIjoiYTA0MTI0NTgxNDg5MmUzZjczZjYzY2E1NDMzM2ZkYTY0OWI3ZmMwYiJ9LCJmaWxlcyI6W119LCJ0aW1lU3RhbXAiOiIxOTcwLTAxLTAxVDAwOjAwOjAwLjMwMFoifQ==\",\"encoding\":\"base64\"}", + "method": "POST", + "url": "/repos/owner/repo/git/blobs?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:33:02 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "207", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4895", + "X-RateLimit-Reset": "1568125713", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"819349cd1420474eae3022062f886747\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/blobs/733775d0ea5d86f1ca74612b87f4f18942fd4031", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B48:2B24:17449AB:1C47CA8:5D77A60D", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"733775d0ea5d86f1ca74612b87f4f18942fd4031\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/733775d0ea5d86f1ca74612b87f4f18942fd4031\"\n}\n", + "status": 201 + }, + { + "body": "{\"operationName\":\"tree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"ced6de6b99339f1e68961d298ce115432e3380c8\"},\"query\":\"query tree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n tree: object(oid: $sha) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:33:02 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4867", + "X-RateLimit-Reset": "1568125964", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7B4D:2B1F:11C5BDE:15AE2C3:5D77A60E", + "content-length": "260", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"tree\":{\"id\":\"MDY6Q29tbWl0MjA3NTY3MDExOmNlZDZkZTZiOTkzMzlmMWU2ODk2MWQyOThjZTExNTQzMmUzMzgwYzg=\",\"sha\":\"ced6de6b99339f1e68961d298ce115432e3380c8\",\"__typename\":\"Commit\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"commitTree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"ced6de6b99339f1e68961d298ce115432e3380c8\"},\"query\":\"query commitTree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n commit: object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n tree {\\n ...ObjectParts\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:33:02 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4866", + "X-RateLimit-Reset": "1568125964", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7B4B:1510D:44E1FD:5473BE:5D77A60E", + "content-length": "698", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"commit\":{\"id\":\"MDY6Q29tbWl0MjA3NTY3MDExOmNlZDZkZTZiOTkzMzlmMWU2ODk2MWQyOThjZTExNTQzMmUzMzgwYzg=\",\"sha\":\"ced6de6b99339f1e68961d298ce115432e3380c8\",\"__typename\":\"Commit\",\"tree\":{\"id\":\"MDQ6VHJlZTIwNzU2NzAxMTpjOWYyYjNlOTViMDg4NzQ2NGMyZGNlMmQ4NzJjOTI3YmY3NjU2ZTc3\",\"sha\":\"c9f2b3e95b0887464c2dce2d872c927bf7656e77\",\"__typename\":\"Tree\",\"entries\":[{\"path\":\"1970-01-01-first-title.json\",\"sha\":\"8cb25bb9d345488f514facf57064d87d1cfffd6c\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"README.md\",\"sha\":\"98787d1bd948850444433e91a43091a76c4eb455\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"}]}}}}}\n", + "status": 200 + }, + { + "body": "{\"base_tree\":\"ced6de6b99339f1e68961d298ce115432e3380c8\",\"tree\":[{\"path\":\"1970-01-01-first-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"733775d0ea5d86f1ca74612b87f4f18942fd4031\"}]}", + "method": "POST", + "url": "/repos/owner/repo/git/trees?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:33:03 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "895", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4894", + "X-RateLimit-Reset": "1568125713", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"53a822f80e63b2406bc73a535fa8f0ff\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/trees/5e969fa1dfdc5ccc0fa42d05b70e5e4fa86a8633", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B4F:1510D:44E261:54744B:5D77A60F", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"5e969fa1dfdc5ccc0fa42d05b70e5e4fa86a8633\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/5e969fa1dfdc5ccc0fa42d05b70e5e4fa86a8633\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"733775d0ea5d86f1ca74612b87f4f18942fd4031\",\n \"size\": 462,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/733775d0ea5d86f1ca74612b87f4f18942fd4031\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"message\":\"Updating “1970-01-01-first-title” metadata\",\"tree\":\"5e969fa1dfdc5ccc0fa42d05b70e5e4fa86a8633\",\"parents\":[\"ced6de6b99339f1e68961d298ce115432e3380c8\"]}", + "method": "POST", + "url": "/repos/owner/repo/git/commits?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:33:04 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "1510", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4893", + "X-RateLimit-Reset": "1568125713", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"eef860e4abc2f4d8bccc223092e836e4\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/commits/f30db7930aac3f4680a73e7e2088a2f6c082eef3", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B50:3ED7B:11FE803:15D9A88:5D77A60F", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"f30db7930aac3f4680a73e7e2088a2f6c082eef3\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NTY3MDExOmYzMGRiNzkzMGFhYzNmNDY4MGE3M2U3ZTIwODhhMmY2YzA4MmVlZjM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/f30db7930aac3f4680a73e7e2088a2f6c082eef3\",\n \"html_url\": \"https://github.com/owner/repo/commit/f30db7930aac3f4680a73e7e2088a2f6c082eef3\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T13:33:04Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T13:33:04Z\"\n },\n \"tree\": {\n \"sha\": \"5e969fa1dfdc5ccc0fa42d05b70e5e4fa86a8633\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/5e969fa1dfdc5ccc0fa42d05b70e5e4fa86a8633\"\n },\n \"message\": \"Updating “1970-01-01-first-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"ced6de6b99339f1e68961d298ce115432e3380c8\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/ced6de6b99339f1e68961d298ce115432e3380c8\",\n \"html_url\": \"https://github.com/owner/repo/commit/ced6de6b99339f1e68961d298ce115432e3380c8\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "status": 201 + }, + { + "body": "{\"sha\":\"f30db7930aac3f4680a73e7e2088a2f6c082eef3\",\"force\":false}", + "method": "PATCH", + "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:33:05 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4892", + "X-RateLimit-Reset": "1568125713", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"f6313a3e20b2f0cf2cc0f25f6a04107b\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B52:1510F:11CFF96:159BEE9:5D77A610", + "content-length": "484", + "connection": "keep-alive" + }, + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NTY3MDExOnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"f30db7930aac3f4680a73e7e2088a2f6c082eef3\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/f30db7930aac3f4680a73e7e2088a2f6c082eef3\"\n }\n}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"unpublishedBranchFile\",\"variables\":{\"headOwner\":\"owner\",\"headRepoName\":\"repo\",\"headExpression\":\"cms/1970-01-01-first-title:content/posts/1970-01-01-first-title.md\",\"baseOwner\":\"owner\",\"baseRepoName\":\"repo\",\"baseExpression\":\"master:content/posts/1970-01-01-first-title.md\"},\"query\":\"query unpublishedBranchFile($headOwner: String!, $headRepoName: String!, $headExpression: String!, $baseOwner: String!, $baseRepoName: String!, $baseExpression: String!) {\\n head: repository(owner: $headOwner, name: $headRepoName) {\\n ...RepositoryParts\\n object(expression: $headExpression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n base: repository(owner: $baseOwner, name: $baseRepoName) {\\n ...RepositoryParts\\n object(expression: $baseExpression) {\\n ... on Blob {\\n id\\n oid\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:33:06 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4865", + "X-RateLimit-Reset": "1568125964", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7B54:B4DA:5007DF:61A15F:5D77A612", + "content-length": "496", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"head\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzU2NzAxMTphMDQxMjQ1ODE0ODkyZTNmNzNmNjNjYTU0MzMzZmRhNjQ5YjdmYzBi\",\"text\":\"---\\ntemplate: post\\ntitle: first title\\ndraft: true\\ndate: 1970-01-01T00:00:00.000Z\\ndescription: first description\\ncategory: first category\\ntags:\\n - tag1\\n---\\nfirst body\\n\",\"is_binary\":false,\"__typename\":\"Blob\"}},\"base\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"object\":null}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"statues\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"f8072f71f59ac885ff1963bdc46335691565f319\"},\"query\":\"query statues($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n status {\\n id\\n contexts {\\n id\\n context\\n state\\n target_url: targetUrl\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:33:07 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4864", + "X-RateLimit-Reset": "1568125964", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7B56:15110:1802FE6:1D294C3:5D77A613", + "content-length": "276", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDY6Q29tbWl0MjA3NTY3MDExOmY4MDcyZjcxZjU5YWM4ODVmZjE5NjNiZGM0NjMzNTY5MTU2NWYzMTk=\",\"sha\":\"f8072f71f59ac885ff1963bdc46335691565f319\",\"__typename\":\"Commit\",\"status\":null}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"unpublishedPrBranches\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\"},\"query\":\"query unpublishedPrBranches($owner: String!, $name: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n refs(refPrefix: \\\"refs/heads/cms/\\\", last: 50) {\\n nodes {\\n id\\n associatedPullRequests(last: 50, states: OPEN) {\\n nodes {\\n id\\n headRef {\\n id\\n name\\n prefix\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:33:08 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4863", + "X-RateLimit-Reset": "1568125964", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7B58:2B1F:11C63F1:15AECB3:5D77A613", + "content-length": "518", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"refs\":{\"nodes\":[{\"id\":\"MDM6UmVmMjA3NTY3MDExOjE5NzAtMDEtMDEtZmlyc3QtdGl0bGU=\",\"associatedPullRequests\":{\"nodes\":[{\"id\":\"MDExOlB1bGxSZXF1ZXN0MzE1OTk2OTYy\",\"headRef\":{\"id\":\"MDM6UmVmMjA3NTY3MDExOmNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxl\",\"name\":\"cms/1970-01-01-first-title\",\"prefix\":\"refs/heads/\",\"__typename\":\"Ref\"},\"__typename\":\"PullRequest\"}],\"__typename\":\"PullRequestConnection\"},\"__typename\":\"Ref\"}],\"__typename\":\"RefConnection\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"unpublishedBranchFile\",\"variables\":{\"headOwner\":\"owner\",\"headRepoName\":\"repo\",\"headExpression\":\"cms/1970-01-01-first-title:content/posts/1970-01-01-first-title.md\",\"baseOwner\":\"owner\",\"baseRepoName\":\"repo\",\"baseExpression\":\"master:content/posts/1970-01-01-first-title.md\"},\"query\":\"query unpublishedBranchFile($headOwner: String!, $headRepoName: String!, $headExpression: String!, $baseOwner: String!, $baseRepoName: String!, $baseExpression: String!) {\\n head: repository(owner: $headOwner, name: $headRepoName) {\\n ...RepositoryParts\\n object(expression: $headExpression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n base: repository(owner: $baseOwner, name: $baseRepoName) {\\n ...RepositoryParts\\n object(expression: $baseExpression) {\\n ... on Blob {\\n id\\n oid\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:33:08 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4862", + "X-RateLimit-Reset": "1568125964", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7B5A:9D1F:9EB189:C1A48E:5D77A614", + "content-length": "496", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"head\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzU2NzAxMTphMDQxMjQ1ODE0ODkyZTNmNzNmNjNjYTU0MzMzZmRhNjQ5YjdmYzBi\",\"text\":\"---\\ntemplate: post\\ntitle: first title\\ndraft: true\\ndate: 1970-01-01T00:00:00.000Z\\ndescription: first description\\ncategory: first category\\ntags:\\n - tag1\\n---\\nfirst body\\n\",\"is_binary\":false,\"__typename\":\"Blob\"}},\"base\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"object\":null}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"unpublishedBranchFile\",\"variables\":{\"headOwner\":\"owner\",\"headRepoName\":\"repo\",\"headExpression\":\"cms/1970-01-01-first-title:content/posts/1970-01-01-first-title.md\",\"baseOwner\":\"owner\",\"baseRepoName\":\"repo\",\"baseExpression\":\"master:content/posts/1970-01-01-first-title.md\"},\"query\":\"query unpublishedBranchFile($headOwner: String!, $headRepoName: String!, $headExpression: String!, $baseOwner: String!, $baseRepoName: String!, $baseExpression: String!) {\\n head: repository(owner: $headOwner, name: $headRepoName) {\\n ...RepositoryParts\\n object(expression: $headExpression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n base: repository(owner: $baseOwner, name: $baseRepoName) {\\n ...RepositoryParts\\n object(expression: $baseExpression) {\\n ... on Blob {\\n id\\n oid\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:33:09 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4861", + "X-RateLimit-Reset": "1568125964", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7B60:1510E:A847F0:CCF796:5D77A615", + "content-length": "496", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"head\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzU2NzAxMTphMDQxMjQ1ODE0ODkyZTNmNzNmNjNjYTU0MzMzZmRhNjQ5YjdmYzBi\",\"text\":\"---\\ntemplate: post\\ntitle: first title\\ndraft: true\\ndate: 1970-01-01T00:00:00.000Z\\ndescription: first description\\ncategory: first category\\ntags:\\n - tag1\\n---\\nfirst body\\n\",\"is_binary\":false,\"__typename\":\"Blob\"}},\"base\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"object\":null}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"statues\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"f8072f71f59ac885ff1963bdc46335691565f319\"},\"query\":\"query statues($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n status {\\n id\\n contexts {\\n id\\n context\\n state\\n target_url: targetUrl\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:33:09 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4860", + "X-RateLimit-Reset": "1568125964", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7B5E:244E7:114599D:1511BE9:5D77A615", + "content-length": "276", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDY6Q29tbWl0MjA3NTY3MDExOmY4MDcyZjcxZjU5YWM4ODVmZjE5NjNiZGM0NjMzNTY5MTU2NWYzMTk=\",\"sha\":\"f8072f71f59ac885ff1963bdc46335691565f319\",\"__typename\":\"Commit\",\"status\":null}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"statues\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"f8072f71f59ac885ff1963bdc46335691565f319\"},\"query\":\"query statues($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n status {\\n id\\n contexts {\\n id\\n context\\n state\\n target_url: targetUrl\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:33:11 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4859", + "X-RateLimit-Reset": "1568125964", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7B62:3ED82:17FC6F8:1D2C055:5D77A616", + "content-length": "276", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDY6Q29tbWl0MjA3NTY3MDExOmY4MDcyZjcxZjU5YWM4ODVmZjE5NjNiZGM0NjMzNTY5MTU2NWYzMTk=\",\"sha\":\"f8072f71f59ac885ff1963bdc46335691565f319\",\"__typename\":\"Commit\",\"status\":null}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"statues\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"f8072f71f59ac885ff1963bdc46335691565f319\"},\"query\":\"query statues($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n status {\\n id\\n contexts {\\n id\\n context\\n state\\n target_url: targetUrl\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:33:13 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4858", + "X-RateLimit-Reset": "1568125964", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7B68:3ED7B:11FF482:15DA9FF:5D77A618", + "content-length": "276", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDY6Q29tbWl0MjA3NTY3MDExOmY4MDcyZjcxZjU5YWM4ODVmZjE5NjNiZGM0NjMzNTY5MTU2NWYzMTk=\",\"sha\":\"f8072f71f59ac885ff1963bdc46335691565f319\",\"__typename\":\"Commit\",\"status\":null}}}}\n", + "status": 200 + }, + { + "body": "{\"content\":\"LS0tCnRlbXBsYXRlOiBwb3N0CnRpdGxlOiBzZWNvbmQgdGl0bGUKZHJhZnQ6IHRydWUKZGF0ZTogMTk3MC0wMS0wMVQwMDowMDowMC4wMDBaCmRlc2NyaXB0aW9uOiBzZWNvbmQgZGVzY3JpcHRpb24KY2F0ZWdvcnk6IHNlY29uZCBjYXRlZ29yeQp0YWdzOgogIC0gdGFnMgotLS0Kc2Vjb25kIGJvZHkK\",\"encoding\":\"base64\"}", + "method": "POST", + "url": "/repos/owner/repo/git/blobs?ts=600", + "headers": { + "Date": "Tue, 10 Sep 2019 13:33:15 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "207", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4891", + "X-RateLimit-Reset": "1568125713", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"e9b694c23a77cbca55132e6388228b2f\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/blobs/3e5676c8285a456a6604603042b5428883f50417", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B6A:1510D:44E700:547A2A:5D77A61B", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"3e5676c8285a456a6604603042b5428883f50417\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/3e5676c8285a456a6604603042b5428883f50417\"\n}\n", + "status": 201 + }, + { + "body": "{\"operationName\":\"statues\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"f8072f71f59ac885ff1963bdc46335691565f319\"},\"query\":\"query statues($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n status {\\n id\\n contexts {\\n id\\n context\\n state\\n target_url: targetUrl\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:33:16 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4857", + "X-RateLimit-Reset": "1568125964", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7B6D:244E7:1146157:1512574:5D77A61B", + "content-length": "276", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDY6Q29tbWl0MjA3NTY3MDExOmY4MDcyZjcxZjU5YWM4ODVmZjE5NjNiZGM0NjMzNTY5MTU2NWYzMTk=\",\"sha\":\"f8072f71f59ac885ff1963bdc46335691565f319\",\"__typename\":\"Commit\",\"status\":null}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"tree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"f8072f71f59ac885ff1963bdc46335691565f319\"},\"query\":\"query tree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n tree: object(oid: $sha) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:33:16 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4856", + "X-RateLimit-Reset": "1568125964", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7B70:244E7:11461E1:1512635:5D77A61C", + "content-length": "260", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"tree\":{\"id\":\"MDY6Q29tbWl0MjA3NTY3MDExOmY4MDcyZjcxZjU5YWM4ODVmZjE5NjNiZGM0NjMzNTY5MTU2NWYzMTk=\",\"sha\":\"f8072f71f59ac885ff1963bdc46335691565f319\",\"__typename\":\"Commit\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"commitTree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"f8072f71f59ac885ff1963bdc46335691565f319\"},\"query\":\"query commitTree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n commit: object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n tree {\\n ...ObjectParts\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:33:16 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4855", + "X-RateLimit-Reset": "1568125964", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7B6E:2B1F:11C7040:15AFBA7:5D77A61C", + "content-length": "5040", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"commit\":{\"id\":\"MDY6Q29tbWl0MjA3NTY3MDExOmY4MDcyZjcxZjU5YWM4ODVmZjE5NjNiZGM0NjMzNTY5MTU2NWYzMTk=\",\"sha\":\"f8072f71f59ac885ff1963bdc46335691565f319\",\"__typename\":\"Commit\",\"tree\":{\"id\":\"MDQ6VHJlZTIwNzU2NzAxMTpkYWVlOGQ1ZDE1ZDE0NGU4Nzc5OTU1MTY2YTJhZmVjY2RlMjc3MGUx\",\"sha\":\"daee8d5d15d144e8779955166a2afeccde2770e1\",\"__typename\":\"Tree\",\"entries\":[{\"path\":\".circleci\",\"sha\":\"e5e9af3301cac61f120b8e4d40b1733c7a45685a\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\".eslintignore\",\"sha\":\"80b4531b026d19f8fa589efd122e76199d23f967\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".eslintrc.js\",\"sha\":\"370684994aaed5b858da3a006f48cfa57e88fd27\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".flowconfig\",\"sha\":\"14aa2ac4cc0e15223ad98630a6f1325fc81f8043\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".gitattributes\",\"sha\":\"10a369ddf4f603337cabc6f21646508323941ce1\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".github\",\"sha\":\"4ebeece548b52b20af59622354530a6d33b50b43\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\".gitignore\",\"sha\":\"c071ba35b0e49899bab6d610a68eef667dbbf157\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".prettierignore\",\"sha\":\"393f050e123d998cf8c8b362ff95cc8ac4d250e5\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".prettierrc\",\"sha\":\"e52ad05bb13b084d7949dd76e1b2517455162150\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".stylelintrc.json\",\"sha\":\"4b4c9698d10d756f5faa025659b86375428ed0a7\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".vscode\",\"sha\":\"286e97ec0113ea8242b41ac222e2c3e8077e6f1e\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"CHANGELOG.md\",\"sha\":\"070a5d4f0eacd2dc0be81ae8996f8982de43046e\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"CODE_OF_CONDUCT.md\",\"sha\":\"92bc7565ff0ee145a0041b5179a820f14f39ab22\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"CONTRIBUTING.md\",\"sha\":\"8552aa241254a61258e1ff9666ab36f32fb1e3b9\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"LICENSE\",\"sha\":\"42d85938357b49977c126ca03b199129082d4fb8\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"README.md\",\"sha\":\"19df50a78654c8d757ca7f38447aa3d09c7abcce\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"backend\",\"sha\":\"b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"config.js\",\"sha\":\"58afd573bbb69fcca000efd0f5d90b93c93a98dd\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"content\",\"sha\":\"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"flow-typed\",\"sha\":\"86c32fd6c3118be5e0dbbb231a834447357236c6\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"flow\",\"sha\":\"0af45ad00d155c8d8c7407d913ff85278244c9ce\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"gatsby-browser.js\",\"sha\":\"9bd2c9dce175f04980e91cd9dc295a299e3cdb80\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"gatsby-config.js\",\"sha\":\"353a109dad62e3f25bf9f5e6a2167f21a6c8b459\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"gatsby-node.js\",\"sha\":\"14a207883c2093d2cc071bc5a464e165bcc1fead\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"gatsby\",\"sha\":\"4f23c06cd1740bf78304d2c0b29bf6bfdf427981\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"jest\",\"sha\":\"5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"netlify.toml\",\"sha\":\"599b99cc5700404fde316a7ede829776f23e7d45\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"package.json\",\"sha\":\"9d777616438b90a18f1a4ebfd5f114b4c06c6f17\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"postcss-config.js\",\"sha\":\"d216501e9b351a72e00ba0b7459a6500e27e7da2\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"renovate.json\",\"sha\":\"dcc309398785698b8870545c32051a3d72dd8271\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"serverless-scripts\",\"sha\":\"ee3701f2fbfc7196ba340f6481d1387d20527898\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"serverless-single-page-app-plugin\",\"sha\":\"08763fcfba643a06a452398517019bea4a5850ba\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"serverless.yml\",\"sha\":\"20b22c5fad229f35d029bf6614d333d82fe8a987\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"src\",\"sha\":\"8cdb35a88232c0f32f12f130c92c7cc55f97f471\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"static\",\"sha\":\"53c6380a600a030d3722bff7ecde36f749fb6964\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"utils\",\"sha\":\"a592549c9f74db40b51efefcda2fd76810405f27\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"yarn.lock\",\"sha\":\"475c9c1924ca752a0686303e2fdeb7b13ad75f57\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"}]}}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"statues\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"f8072f71f59ac885ff1963bdc46335691565f319\"},\"query\":\"query statues($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n status {\\n id\\n contexts {\\n id\\n context\\n state\\n target_url: targetUrl\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:33:17 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4854", + "X-RateLimit-Reset": "1568125964", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7B72:3ED82:17FD135:1D2CCE6:5D77A61C", + "content-length": "276", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDY6Q29tbWl0MjA3NTY3MDExOmY4MDcyZjcxZjU5YWM4ODVmZjE5NjNiZGM0NjMzNTY5MTU2NWYzMTk=\",\"sha\":\"f8072f71f59ac885ff1963bdc46335691565f319\",\"__typename\":\"Commit\",\"status\":null}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"commitTree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"93da0f3541510f5f9ec829a3cdc6e8147f611639\"},\"query\":\"query commitTree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n commit: object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n tree {\\n ...ObjectParts\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:33:17 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4852", + "X-RateLimit-Reset": "1568125964", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7B74:3ED82:17FD229:1D2CE1F:5D77A61D", + "content-length": "256", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"commit\":{\"id\":\"MDQ6VHJlZTIwNzU2NzAxMTo5M2RhMGYzNTQxNTEwZjVmOWVjODI5YTNjZGM2ZTgxNDdmNjExNjM5\",\"sha\":\"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\"__typename\":\"Tree\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"tree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"93da0f3541510f5f9ec829a3cdc6e8147f611639\"},\"query\":\"query tree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n tree: object(oid: $sha) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:33:17 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4853", + "X-RateLimit-Reset": "1568125964", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7B76:15110:180407E:1D2A950:5D77A61D", + "content-length": "502", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"tree\":{\"id\":\"MDQ6VHJlZTIwNzU2NzAxMTo5M2RhMGYzNTQxNTEwZjVmOWVjODI5YTNjZGM2ZTgxNDdmNjExNjM5\",\"sha\":\"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\"__typename\":\"Tree\",\"entries\":[{\"path\":\"pages\",\"sha\":\"1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"posts\",\"sha\":\"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"}]}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"tree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\"},\"query\":\"query tree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n tree: object(oid: $sha) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:33:18 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4850", + "X-RateLimit-Reset": "1568125964", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7B7A:2B19:A55F25:C933DC:5D77A61D", + "content-length": "1213", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"tree\":{\"id\":\"MDQ6VHJlZTIwNzU2NzAxMTphYjVhMWJiZmUxNDg2ZWEwZTkzMTgyYjcxOWM5MjdkODRlZTFmMWJh\",\"sha\":\"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\"__typename\":\"Tree\",\"entries\":[{\"path\":\"1970-01-01-first-title.md\",\"sha\":\"a041245814892e3f73f63ca54333fda649b7fc0b\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\"sha\":\"6d51a38aed7139d2117724b1e307657b6ff2d043\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\"sha\":\"d0582dd245a3f408fb3fe2333bf01400007476e9\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"2016-02-02---A-Brief-History-of-Typography.md\",\"sha\":\"0eea554365f002d0f1572af9a58522d335a794d5\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"2017-18-08---The-Birth-of-Movable-Type.md\",\"sha\":\"44f78c474d04273185a95821426f75affc9b0044\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\"sha\":\"a532f0a9445cdf90a19c6812cff89d1674991774\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"}]}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"commitTree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\"},\"query\":\"query commitTree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n commit: object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n tree {\\n ...ObjectParts\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:33:18 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4851", + "X-RateLimit-Reset": "1568125964", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7B79:244E7:11463C9:1512898:5D77A61D", + "content-length": "256", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"commit\":{\"id\":\"MDQ6VHJlZTIwNzU2NzAxMTphYjVhMWJiZmUxNDg2ZWEwZTkzMTgyYjcxOWM5MjdkODRlZTFmMWJh\",\"sha\":\"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\"__typename\":\"Tree\"}}}}\n", + "status": 200 + }, + { + "body": "{\"base_tree\":\"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\"tree\":[{\"path\":\"1970-01-01-first-title.md\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"3e5676c8285a456a6604603042b5428883f50417\"}]}", + "method": "POST", + "url": "/repos/owner/repo/git/trees?ts=600", + "headers": { + "Date": "Tue, 10 Sep 2019 13:33:18 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "2362", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4890", + "X-RateLimit-Reset": "1568125713", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"040a2c25412a1d67a1f78ac744ba4c63\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/trees/7db8b5bca921590c7c398d029d9172111750f5fc", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B7C:9D21:16C2DA5:1BB8441:5D77A61E", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"7db8b5bca921590c7c398d029d9172111750f5fc\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/7db8b5bca921590c7c398d029d9172111750f5fc\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"3e5676c8285a456a6604603042b5428883f50417\",\n \"size\": 171,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/3e5676c8285a456a6604603042b5428883f50417\"\n },\n {\n \"path\": \"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"size\": 1707,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\"\n },\n {\n \"path\": \"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"size\": 2565,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\"\n },\n {\n \"path\": \"2016-02-02---A-Brief-History-of-Typography.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"0eea554365f002d0f1572af9a58522d335a794d5\",\n \"size\": 2786,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\"\n },\n {\n \"path\": \"2017-18-08---The-Birth-of-Movable-Type.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"44f78c474d04273185a95821426f75affc9b0044\",\n \"size\": 16071,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\"\n },\n {\n \"path\": \"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"size\": 7465,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"operationName\":\"statues\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"f8072f71f59ac885ff1963bdc46335691565f319\"},\"query\":\"query statues($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n status {\\n id\\n contexts {\\n id\\n context\\n state\\n target_url: targetUrl\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:33:18 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4849", + "X-RateLimit-Reset": "1568125964", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7B7F:1510F:11D12D4:159D6AA:5D77A61E", + "content-length": "276", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDY6Q29tbWl0MjA3NTY3MDExOmY4MDcyZjcxZjU5YWM4ODVmZjE5NjNiZGM0NjMzNTY5MTU2NWYzMTk=\",\"sha\":\"f8072f71f59ac885ff1963bdc46335691565f319\",\"__typename\":\"Commit\",\"status\":null}}}}\n", + "status": 200 + }, + { + "body": "{\"base_tree\":\"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\"tree\":[{\"path\":\"posts\",\"mode\":\"040000\",\"type\":\"tree\",\"sha\":\"7db8b5bca921590c7c398d029d9172111750f5fc\",\"parentSha\":\"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\"}]}", + "method": "POST", + "url": "/repos/owner/repo/git/trees?ts=600", + "headers": { + "Date": "Tue, 10 Sep 2019 13:33:19 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "831", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4889", + "X-RateLimit-Reset": "1568125713", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"ea8ded0e03a06767ec521ba51c6081c4\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/trees/4663bc351c2b79f066f9434722d865f8a0fc88cd", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B80:B4DE:11929AF:1562806:5D77A61F", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"4663bc351c2b79f066f9434722d865f8a0fc88cd\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4663bc351c2b79f066f9434722d865f8a0fc88cd\",\n \"tree\": [\n {\n \"path\": \"pages\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\"\n },\n {\n \"path\": \"posts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"7db8b5bca921590c7c398d029d9172111750f5fc\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/7db8b5bca921590c7c398d029d9172111750f5fc\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"base_tree\":\"f8072f71f59ac885ff1963bdc46335691565f319\",\"tree\":[{\"path\":\"content\",\"mode\":\"040000\",\"type\":\"tree\",\"sha\":\"4663bc351c2b79f066f9434722d865f8a0fc88cd\",\"parentSha\":\"93da0f3541510f5f9ec829a3cdc6e8147f611639\"}]}", + "method": "POST", + "url": "/repos/owner/repo/git/trees?ts=600", + "headers": { + "Date": "Tue, 10 Sep 2019 13:33:20 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "11769", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4888", + "X-RateLimit-Reset": "1568125713", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"ff4752ee2351f8217d02871b32a0db40\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/trees/9011d70a132ecce386da7098e3ca594bbb772623", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B85:244E7:11466AA:1512C2C:5D77A61F", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"9011d70a132ecce386da7098e3ca594bbb772623\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/9011d70a132ecce386da7098e3ca594bbb772623\",\n \"tree\": [\n {\n \"path\": \".circleci\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"e5e9af3301cac61f120b8e4d40b1733c7a45685a\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/e5e9af3301cac61f120b8e4d40b1733c7a45685a\"\n },\n {\n \"path\": \".eslintignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"80b4531b026d19f8fa589efd122e76199d23f967\",\n \"size\": 39,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/80b4531b026d19f8fa589efd122e76199d23f967\"\n },\n {\n \"path\": \".eslintrc.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"370684994aaed5b858da3a006f48cfa57e88fd27\",\n \"size\": 414,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/370684994aaed5b858da3a006f48cfa57e88fd27\"\n },\n {\n \"path\": \".flowconfig\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14aa2ac4cc0e15223ad98630a6f1325fc81f8043\",\n \"size\": 283,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14aa2ac4cc0e15223ad98630a6f1325fc81f8043\"\n },\n {\n \"path\": \".gitattributes\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"10a369ddf4f603337cabc6f21646508323941ce1\",\n \"size\": 135,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/10a369ddf4f603337cabc6f21646508323941ce1\"\n },\n {\n \"path\": \".github\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4ebeece548b52b20af59622354530a6d33b50b43\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4ebeece548b52b20af59622354530a6d33b50b43\"\n },\n {\n \"path\": \".gitignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"c071ba35b0e49899bab6d610a68eef667dbbf157\",\n \"size\": 169,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/c071ba35b0e49899bab6d610a68eef667dbbf157\"\n },\n {\n \"path\": \".prettierignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"393f050e123d998cf8c8b362ff95cc8ac4d250e5\",\n \"size\": 45,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/393f050e123d998cf8c8b362ff95cc8ac4d250e5\"\n },\n {\n \"path\": \".prettierrc\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e52ad05bb13b084d7949dd76e1b2517455162150\",\n \"size\": 223,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/e52ad05bb13b084d7949dd76e1b2517455162150\"\n },\n {\n \"path\": \".stylelintrc.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"4b4c9698d10d756f5faa025659b86375428ed0a7\",\n \"size\": 718,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/4b4c9698d10d756f5faa025659b86375428ed0a7\"\n },\n {\n \"path\": \".vscode\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"286e97ec0113ea8242b41ac222e2c3e8077e6f1e\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/286e97ec0113ea8242b41ac222e2c3e8077e6f1e\"\n },\n {\n \"path\": \"CHANGELOG.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"070a5d4f0eacd2dc0be81ae8996f8982de43046e\",\n \"size\": 2113,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/070a5d4f0eacd2dc0be81ae8996f8982de43046e\"\n },\n {\n \"path\": \"CODE_OF_CONDUCT.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"92bc7565ff0ee145a0041b5179a820f14f39ab22\",\n \"size\": 3355,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/92bc7565ff0ee145a0041b5179a820f14f39ab22\"\n },\n {\n \"path\": \"CONTRIBUTING.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"8552aa241254a61258e1ff9666ab36f32fb1e3b9\",\n \"size\": 3548,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/8552aa241254a61258e1ff9666ab36f32fb1e3b9\"\n },\n {\n \"path\": \"LICENSE\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"42d85938357b49977c126ca03b199129082d4fb8\",\n \"size\": 1091,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/42d85938357b49977c126ca03b199129082d4fb8\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"19df50a78654c8d757ca7f38447aa3d09c7abcce\",\n \"size\": 3698,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/19df50a78654c8d757ca7f38447aa3d09c7abcce\"\n },\n {\n \"path\": \"backend\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\"\n },\n {\n \"path\": \"config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"58afd573bbb69fcca000efd0f5d90b93c93a98dd\",\n \"size\": 853,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/58afd573bbb69fcca000efd0f5d90b93c93a98dd\"\n },\n {\n \"path\": \"content\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4663bc351c2b79f066f9434722d865f8a0fc88cd\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4663bc351c2b79f066f9434722d865f8a0fc88cd\"\n },\n {\n \"path\": \"flow-typed\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"86c32fd6c3118be5e0dbbb231a834447357236c6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/86c32fd6c3118be5e0dbbb231a834447357236c6\"\n },\n {\n \"path\": \"flow\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"0af45ad00d155c8d8c7407d913ff85278244c9ce\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/0af45ad00d155c8d8c7407d913ff85278244c9ce\"\n },\n {\n \"path\": \"gatsby-browser.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9bd2c9dce175f04980e91cd9dc295a299e3cdb80\",\n \"size\": 90,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9bd2c9dce175f04980e91cd9dc295a299e3cdb80\"\n },\n {\n \"path\": \"gatsby-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"353a109dad62e3f25bf9f5e6a2167f21a6c8b459\",\n \"size\": 7228,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/353a109dad62e3f25bf9f5e6a2167f21a6c8b459\"\n },\n {\n \"path\": \"gatsby-node.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14a207883c2093d2cc071bc5a464e165bcc1fead\",\n \"size\": 409,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14a207883c2093d2cc071bc5a464e165bcc1fead\"\n },\n {\n \"path\": \"gatsby\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4f23c06cd1740bf78304d2c0b29bf6bfdf427981\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4f23c06cd1740bf78304d2c0b29bf6bfdf427981\"\n },\n {\n \"path\": \"jest\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\"\n },\n {\n \"path\": \"netlify.toml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"599b99cc5700404fde316a7ede829776f23e7d45\",\n \"size\": 137,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/599b99cc5700404fde316a7ede829776f23e7d45\"\n },\n {\n \"path\": \"package.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9d777616438b90a18f1a4ebfd5f114b4c06c6f17\",\n \"size\": 6855,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9d777616438b90a18f1a4ebfd5f114b4c06c6f17\"\n },\n {\n \"path\": \"postcss-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d216501e9b351a72e00ba0b7459a6500e27e7da2\",\n \"size\": 703,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d216501e9b351a72e00ba0b7459a6500e27e7da2\"\n },\n {\n \"path\": \"renovate.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"dcc309398785698b8870545c32051a3d72dd8271\",\n \"size\": 460,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/dcc309398785698b8870545c32051a3d72dd8271\"\n },\n {\n \"path\": \"serverless-scripts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ee3701f2fbfc7196ba340f6481d1387d20527898\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ee3701f2fbfc7196ba340f6481d1387d20527898\"\n },\n {\n \"path\": \"serverless-single-page-app-plugin\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"08763fcfba643a06a452398517019bea4a5850ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/08763fcfba643a06a452398517019bea4a5850ba\"\n },\n {\n \"path\": \"serverless.yml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"20b22c5fad229f35d029bf6614d333d82fe8a987\",\n \"size\": 7803,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/20b22c5fad229f35d029bf6614d333d82fe8a987\"\n },\n {\n \"path\": \"src\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"8cdb35a88232c0f32f12f130c92c7cc55f97f471\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/8cdb35a88232c0f32f12f130c92c7cc55f97f471\"\n },\n {\n \"path\": \"static\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"53c6380a600a030d3722bff7ecde36f749fb6964\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/53c6380a600a030d3722bff7ecde36f749fb6964\"\n },\n {\n \"path\": \"utils\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"a592549c9f74db40b51efefcda2fd76810405f27\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/a592549c9f74db40b51efefcda2fd76810405f27\"\n },\n {\n \"path\": \"yarn.lock\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"475c9c1924ca752a0686303e2fdeb7b13ad75f57\",\n \"size\": 793903,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/475c9c1924ca752a0686303e2fdeb7b13ad75f57\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"message\":\"Update Post “1970-01-01-first-title”\",\"tree\":\"9011d70a132ecce386da7098e3ca594bbb772623\",\"parents\":[\"f8072f71f59ac885ff1963bdc46335691565f319\"]}", + "method": "POST", + "url": "/repos/owner/repo/git/commits?ts=600", + "headers": { + "Date": "Tue, 10 Sep 2019 13:33:21 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "1504", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4887", + "X-RateLimit-Reset": "1568125713", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"40646a009f1db2b042397584db318308\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/commits/e4c442f198935b92fb13a25e7fcb3a08223d2b31", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B86:244EB:178DA9F:1C99424:5D77A620", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"e4c442f198935b92fb13a25e7fcb3a08223d2b31\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NTY3MDExOmU0YzQ0MmYxOTg5MzViOTJmYjEzYTI1ZTdmY2IzYTA4MjIzZDJiMzE=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/e4c442f198935b92fb13a25e7fcb3a08223d2b31\",\n \"html_url\": \"https://github.com/owner/repo/commit/e4c442f198935b92fb13a25e7fcb3a08223d2b31\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T13:33:21Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T13:33:21Z\"\n },\n \"tree\": {\n \"sha\": \"9011d70a132ecce386da7098e3ca594bbb772623\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/9011d70a132ecce386da7098e3ca594bbb772623\"\n },\n \"message\": \"Update Post “1970-01-01-first-title”\",\n \"parents\": [\n {\n \"sha\": \"f8072f71f59ac885ff1963bdc46335691565f319\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/f8072f71f59ac885ff1963bdc46335691565f319\",\n \"html_url\": \"https://github.com/owner/repo/commit/f8072f71f59ac885ff1963bdc46335691565f319\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "status": 201 + }, + { + "body": "{\"operationName\":\"statues\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"f8072f71f59ac885ff1963bdc46335691565f319\"},\"query\":\"query statues($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n status {\\n id\\n contexts {\\n id\\n context\\n state\\n target_url: targetUrl\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:33:21 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4848", + "X-RateLimit-Reset": "1568125964", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7B87:244EB:178DB66:1C99522:5D77A621", + "content-length": "276", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDY6Q29tbWl0MjA3NTY3MDExOmY4MDcyZjcxZjU5YWM4ODVmZjE5NjNiZGM0NjMzNTY5MTU2NWYzMTk=\",\"sha\":\"f8072f71f59ac885ff1963bdc46335691565f319\",\"__typename\":\"Commit\",\"status\":null}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"branch\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"qualifiedName\":\"refs/heads/master\"},\"query\":\"query branch($owner: String!, $name: String!, $qualifiedName: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n branch: ref(qualifiedName: $qualifiedName) {\\n ...BranchParts\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BranchParts on Ref {\\n commit: target {\\n ...ObjectParts\\n __typename\\n }\\n id\\n name\\n repository {\\n ...RepositoryParts\\n __typename\\n }\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:33:22 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4847", + "X-RateLimit-Reset": "1568125964", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7B88:3ED7B:1200052:15DB85D:5D77A621", + "content-length": "429", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"branch\":{\"commit\":{\"id\":\"MDY6Q29tbWl0MjA3NTY3MDExOjcyNjE3MmRlYWU5OWM4YTJjZWE0YzcxZTczNGEwMmE3OTNkNGQ5ZTU=\",\"sha\":\"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\"__typename\":\"Commit\"},\"id\":\"MDM6UmVmMjA3NTY3MDExOm1hc3Rlcg==\",\"name\":\"master\",\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\"},\"__typename\":\"Ref\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"pullRequestCommits\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"number\":4},\"query\":\"query pullRequestCommits($owner: String!, $name: String!, $number: Int!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n pullRequest(number: $number) {\\n id\\n commits(last: 100) {\\n nodes {\\n id\\n commit {\\n ...ObjectParts\\n parents(last: 100) {\\n nodes {\\n ...ObjectParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:33:22 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4846", + "X-RateLimit-Reset": "1568125964", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7B8A:244EB:178DC1C:1C995FF:5D77A621", + "content-length": "764", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"pullRequest\":{\"id\":\"MDExOlB1bGxSZXF1ZXN0MzE1OTk2OTYy\",\"commits\":{\"nodes\":[{\"id\":\"MDE3OlB1bGxSZXF1ZXN0Q29tbWl0MzE1OTk2OTYyOmY4MDcyZjcxZjU5YWM4ODVmZjE5NjNiZGM0NjMzNTY5MTU2NWYzMTk=\",\"commit\":{\"id\":\"MDY6Q29tbWl0MjA3NTY3MDExOmY4MDcyZjcxZjU5YWM4ODVmZjE5NjNiZGM0NjMzNTY5MTU2NWYzMTk=\",\"sha\":\"f8072f71f59ac885ff1963bdc46335691565f319\",\"__typename\":\"Commit\",\"parents\":{\"nodes\":[{\"id\":\"MDY6Q29tbWl0MjA3NTY3MDExOjcyNjE3MmRlYWU5OWM4YTJjZWE0YzcxZTczNGEwMmE3OTNkNGQ5ZTU=\",\"sha\":\"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\"__typename\":\"Commit\"}],\"__typename\":\"CommitConnection\"}},\"__typename\":\"PullRequestCommit\"}],\"__typename\":\"PullRequestCommitConnection\"},\"__typename\":\"PullRequest\"}}}}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=600", + "headers": { + "Date": "Tue, 10 Sep 2019 13:33:23 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4886", + "X-RateLimit-Reset": "1568125713", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"f6313a3e20b2f0cf2cc0f25f6a04107b\"", + "Last-Modified": "Tue, 10 Sep 2019 13:31:40 GMT", + "X-Poll-Interval": "300", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B8E:2B24:1746FB5:1C4AB0F:5D77A622", + "content-length": "484", + "connection": "keep-alive" + }, + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NTY3MDExOnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"f30db7930aac3f4680a73e7e2088a2f6c082eef3\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/f30db7930aac3f4680a73e7e2088a2f6c082eef3\"\n }\n}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"statues\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"f8072f71f59ac885ff1963bdc46335691565f319\"},\"query\":\"query statues($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n status {\\n id\\n contexts {\\n id\\n context\\n state\\n target_url: targetUrl\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:33:23 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4845", + "X-RateLimit-Reset": "1568125964", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7B8C:1510E:A85298:CD04D5:5D77A622", + "content-length": "276", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDY6Q29tbWl0MjA3NTY3MDExOmY4MDcyZjcxZjU5YWM4ODVmZjE5NjNiZGM0NjMzNTY5MTU2NWYzMTk=\",\"sha\":\"f8072f71f59ac885ff1963bdc46335691565f319\",\"__typename\":\"Commit\",\"status\":null}}}}\n", + "status": 200 + }, + { + "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjQsImhlYWQiOiJlNGM0NDJmMTk4OTM1YjkyZmIxM2EyNWU3ZmNiM2EwODIyM2QyYjMxIn0sInVzZXIiOiJvd25lciIsInN0YXR1cyI6ImRyYWZ0IiwiYnJhbmNoIjoiY21zLzE5NzAtMDEtMDEtZmlyc3QtdGl0bGUiLCJjb2xsZWN0aW9uIjoicG9zdHMiLCJjb21taXRNZXNzYWdlIjoiQ3JlYXRlIFBvc3Qg4oCcMTk3MC0wMS0wMS1maXJzdC10aXRsZeKAnSIsInRpdGxlIjoiZmlyc3QgdGl0bGUiLCJkZXNjcmlwdGlvbiI6ImZpcnN0IGRlc2NyaXB0aW9uIiwib2JqZWN0cyI6eyJlbnRyeSI6eyJwYXRoIjoiY29udGVudC9wb3N0cy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxlLm1kIiwic2hhIjoiYTA0MTI0NTgxNDg5MmUzZjczZjYzY2E1NDMzM2ZkYTY0OWI3ZmMwYiJ9LCJmaWxlcyI6W119LCJ0aW1lU3RhbXAiOiIxOTcwLTAxLTAxVDAwOjAwOjAwLjYwMFoifQ==\",\"encoding\":\"base64\"}", + "method": "POST", + "url": "/repos/owner/repo/git/blobs?ts=600", + "headers": { + "Date": "Tue, 10 Sep 2019 13:33:23 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "207", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4885", + "X-RateLimit-Reset": "1568125713", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"6bd186263c548743f316acf71ceec7b4\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/blobs/237bc1d2260a82893afc96f8ea71e0e9a8f684e9", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B90:3ED76:463A22:560ED3:5D77A623", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"237bc1d2260a82893afc96f8ea71e0e9a8f684e9\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/237bc1d2260a82893afc96f8ea71e0e9a8f684e9\"\n}\n", + "status": 201 + }, + { + "body": "{\"operationName\":\"tree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"f30db7930aac3f4680a73e7e2088a2f6c082eef3\"},\"query\":\"query tree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n tree: object(oid: $sha) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:33:24 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4844", + "X-RateLimit-Reset": "1568125964", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7B94:244E7:1146B9D:1513279:5D77A623", + "content-length": "260", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"tree\":{\"id\":\"MDY6Q29tbWl0MjA3NTY3MDExOmYzMGRiNzkzMGFhYzNmNDY4MGE3M2U3ZTIwODhhMmY2YzA4MmVlZjM=\",\"sha\":\"f30db7930aac3f4680a73e7e2088a2f6c082eef3\",\"__typename\":\"Commit\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"commitTree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"f30db7930aac3f4680a73e7e2088a2f6c082eef3\"},\"query\":\"query commitTree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n commit: object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n tree {\\n ...ObjectParts\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:33:24 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4843", + "X-RateLimit-Reset": "1568125964", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7B92:2B19:A56424:C93A1C:5D77A623", + "content-length": "698", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"commit\":{\"id\":\"MDY6Q29tbWl0MjA3NTY3MDExOmYzMGRiNzkzMGFhYzNmNDY4MGE3M2U3ZTIwODhhMmY2YzA4MmVlZjM=\",\"sha\":\"f30db7930aac3f4680a73e7e2088a2f6c082eef3\",\"__typename\":\"Commit\",\"tree\":{\"id\":\"MDQ6VHJlZTIwNzU2NzAxMTo1ZTk2OWZhMWRmZGM1Y2NjMGZhNDJkMDViNzBlNWU0ZmE4NmE4NjMz\",\"sha\":\"5e969fa1dfdc5ccc0fa42d05b70e5e4fa86a8633\",\"__typename\":\"Tree\",\"entries\":[{\"path\":\"1970-01-01-first-title.json\",\"sha\":\"733775d0ea5d86f1ca74612b87f4f18942fd4031\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"README.md\",\"sha\":\"98787d1bd948850444433e91a43091a76c4eb455\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"}]}}}}}\n", + "status": 200 + }, + { + "body": "{\"base_tree\":\"f30db7930aac3f4680a73e7e2088a2f6c082eef3\",\"tree\":[{\"path\":\"1970-01-01-first-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"237bc1d2260a82893afc96f8ea71e0e9a8f684e9\"}]}", + "method": "POST", + "url": "/repos/owner/repo/git/trees?ts=600", + "headers": { + "Date": "Tue, 10 Sep 2019 13:33:25 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "895", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4884", + "X-RateLimit-Reset": "1568125713", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"da1625bc76ca840b1168bbed2ae34fe7\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/trees/d68f584337592b58fd3c203036e0905ce335d4e4", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B96:15110:1804CD1:1D2B8A1:5D77A624", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"d68f584337592b58fd3c203036e0905ce335d4e4\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/d68f584337592b58fd3c203036e0905ce335d4e4\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"237bc1d2260a82893afc96f8ea71e0e9a8f684e9\",\n \"size\": 462,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/237bc1d2260a82893afc96f8ea71e0e9a8f684e9\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"message\":\"Updating “1970-01-01-first-title” metadata\",\"tree\":\"d68f584337592b58fd3c203036e0905ce335d4e4\",\"parents\":[\"f30db7930aac3f4680a73e7e2088a2f6c082eef3\"]}", + "method": "POST", + "url": "/repos/owner/repo/git/commits?ts=600", + "headers": { + "Date": "Tue, 10 Sep 2019 13:33:25 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "1510", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4883", + "X-RateLimit-Reset": "1568125713", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"fda6ed6b6428f57760b2bd16ed80c717\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/commits/8b38a68a0ebdf2a0bf72efbc94cece6e9695112a", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B98:15110:1804DF6:1D2BA07:5D77A625", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"8b38a68a0ebdf2a0bf72efbc94cece6e9695112a\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NTY3MDExOjhiMzhhNjhhMGViZGYyYTBiZjcyZWZiYzk0Y2VjZTZlOTY5NTExMmE=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/8b38a68a0ebdf2a0bf72efbc94cece6e9695112a\",\n \"html_url\": \"https://github.com/owner/repo/commit/8b38a68a0ebdf2a0bf72efbc94cece6e9695112a\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T13:33:25Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T13:33:25Z\"\n },\n \"tree\": {\n \"sha\": \"d68f584337592b58fd3c203036e0905ce335d4e4\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/d68f584337592b58fd3c203036e0905ce335d4e4\"\n },\n \"message\": \"Updating “1970-01-01-first-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"f30db7930aac3f4680a73e7e2088a2f6c082eef3\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/f30db7930aac3f4680a73e7e2088a2f6c082eef3\",\n \"html_url\": \"https://github.com/owner/repo/commit/f30db7930aac3f4680a73e7e2088a2f6c082eef3\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "status": 201 + }, + { + "body": "{\"sha\":\"8b38a68a0ebdf2a0bf72efbc94cece6e9695112a\",\"force\":false}", + "method": "PATCH", + "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=600", + "headers": { + "Date": "Tue, 10 Sep 2019 13:33:27 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4882", + "X-RateLimit-Reset": "1568125713", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"bbf32d5e4b339ddb39569c73be700995\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B9A:B4DA:501209:61ADC0:5D77A626", + "content-length": "484", + "connection": "keep-alive" + }, + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NTY3MDExOnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"8b38a68a0ebdf2a0bf72efbc94cece6e9695112a\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/8b38a68a0ebdf2a0bf72efbc94cece6e9695112a\"\n }\n}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"updateRef\",\"variables\":{\"input\":{\"oid\":\"e4c442f198935b92fb13a25e7fcb3a08223d2b31\",\"refId\":\"MDM6UmVmMjA3NTY3MDExOmNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxl\",\"force\":true}},\"query\":\"mutation updateRef($input: UpdateRefInput!) {\\n updateRef(input: $input) {\\n branch: ref {\\n ...BranchParts\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment BranchParts on Ref {\\n commit: target {\\n ...ObjectParts\\n __typename\\n }\\n id\\n name\\n repository {\\n ...RepositoryParts\\n __typename\\n }\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:33:28 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4842", + "X-RateLimit-Reset": "1568125964", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7B9F:2B15:4BF3C0:5C2722:5D77A627", + "content-length": "438", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"updateRef\":{\"branch\":{\"commit\":{\"id\":\"MDY6Q29tbWl0MjA3NTY3MDExOmU0YzQ0MmYxOTg5MzViOTJmYjEzYTI1ZTdmY2IzYTA4MjIzZDJiMzE=\",\"sha\":\"e4c442f198935b92fb13a25e7fcb3a08223d2b31\",\"__typename\":\"Commit\"},\"id\":\"MDM6UmVmMjA3NTY3MDExOmNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxl\",\"name\":\"cms/1970-01-01-first-title\",\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\"},\"__typename\":\"Ref\"},\"__typename\":\"UpdateRefPayload\"}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"statues\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"e4c442f198935b92fb13a25e7fcb3a08223d2b31\"},\"query\":\"query statues($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n status {\\n id\\n contexts {\\n id\\n context\\n state\\n target_url: targetUrl\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:33:29 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4841", + "X-RateLimit-Reset": "1568125964", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7BA0:244E7:11470E9:1513912:5D77A628", + "content-length": "276", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDY6Q29tbWl0MjA3NTY3MDExOmU0YzQ0MmYxOTg5MzViOTJmYjEzYTI1ZTdmY2IzYTA4MjIzZDJiMzE=\",\"sha\":\"e4c442f198935b92fb13a25e7fcb3a08223d2b31\",\"__typename\":\"Commit\",\"status\":null}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"unpublishedPrBranches\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\"},\"query\":\"query unpublishedPrBranches($owner: String!, $name: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n refs(refPrefix: \\\"refs/heads/cms/\\\", last: 50) {\\n nodes {\\n id\\n associatedPullRequests(last: 50, states: OPEN) {\\n nodes {\\n id\\n headRef {\\n id\\n name\\n prefix\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:33:29 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4840", + "X-RateLimit-Reset": "1568125964", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7BA2:1510D:44ECBB:54813D:5D77A629", + "content-length": "518", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"refs\":{\"nodes\":[{\"id\":\"MDM6UmVmMjA3NTY3MDExOjE5NzAtMDEtMDEtZmlyc3QtdGl0bGU=\",\"associatedPullRequests\":{\"nodes\":[{\"id\":\"MDExOlB1bGxSZXF1ZXN0MzE1OTk2OTYy\",\"headRef\":{\"id\":\"MDM6UmVmMjA3NTY3MDExOmNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxl\",\"name\":\"cms/1970-01-01-first-title\",\"prefix\":\"refs/heads/\",\"__typename\":\"Ref\"},\"__typename\":\"PullRequest\"}],\"__typename\":\"PullRequestConnection\"},\"__typename\":\"Ref\"}],\"__typename\":\"RefConnection\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"unpublishedBranchFile\",\"variables\":{\"headOwner\":\"owner\",\"headRepoName\":\"repo\",\"headExpression\":\"cms/1970-01-01-first-title:content/posts/1970-01-01-first-title.md\",\"baseOwner\":\"owner\",\"baseRepoName\":\"repo\",\"baseExpression\":\"master:content/posts/1970-01-01-first-title.md\"},\"query\":\"query unpublishedBranchFile($headOwner: String!, $headRepoName: String!, $headExpression: String!, $baseOwner: String!, $baseRepoName: String!, $baseExpression: String!) {\\n head: repository(owner: $headOwner, name: $headRepoName) {\\n ...RepositoryParts\\n object(expression: $headExpression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n base: repository(owner: $baseOwner, name: $baseRepoName) {\\n ...RepositoryParts\\n object(expression: $baseExpression) {\\n ... on Blob {\\n id\\n oid\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:33:30 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4839", + "X-RateLimit-Reset": "1568125964", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7BA4:9D21:16C3F55:1BB9A31:5D77A629", + "content-length": "500", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"head\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzU2NzAxMTozZTU2NzZjODI4NWE0NTZhNjYwNDYwMzA0MmI1NDI4ODgzZjUwNDE3\",\"text\":\"---\\ntemplate: post\\ntitle: second title\\ndraft: true\\ndate: 1970-01-01T00:00:00.000Z\\ndescription: second description\\ncategory: second category\\ntags:\\n - tag2\\n---\\nsecond body\\n\",\"is_binary\":false,\"__typename\":\"Blob\"}},\"base\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"object\":null}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"statues\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"e4c442f198935b92fb13a25e7fcb3a08223d2b31\"},\"query\":\"query statues($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n status {\\n id\\n contexts {\\n id\\n context\\n state\\n target_url: targetUrl\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:33:34 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4838", + "X-RateLimit-Reset": "1568125964", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7BB6:244EB:178F346:1C9B1CF:5D77A62E", + "content-length": "276", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDY6Q29tbWl0MjA3NTY3MDExOmU0YzQ0MmYxOTg5MzViOTJmYjEzYTI1ZTdmY2IzYTA4MjIzZDJiMzE=\",\"sha\":\"e4c442f198935b92fb13a25e7fcb3a08223d2b31\",\"__typename\":\"Commit\",\"status\":null}}}}\n", + "status": 200 + } +] \ No newline at end of file diff --git a/cypress/fixtures/Github Backend Editorial Workflow - GraphQL API - Open Authoring__can update an entry.json b/cypress/fixtures/Github Backend Editorial Workflow - GraphQL API - Open Authoring__can update an entry.json new file mode 100644 index 00000000..e3d4582a --- /dev/null +++ b/cypress/fixtures/Github Backend Editorial Workflow - GraphQL API - Open Authoring__can update an entry.json @@ -0,0 +1,2379 @@ +[ + { + "method": "GET", + "url": "/repos/owner/repo/contents/1970-01-01-first-title.json?ts=1568122180456&ref=refs/meta/_netlify_cms", + "headers": { + "Date": "Tue, 10 Sep 2019 13:29:41 GMT", + "Content-Type": "application/vnd.github.VERSION.raw; charset=utf-8", + "Content-Length": "462", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4966", + "X-RateLimit-Reset": "1568125713", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"5486c6b69c1678c7f19da5bc1617b9a663ff561d\"", + "Last-Modified": "Tue, 10 Sep 2019 13:29:26 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A1D:244E4:AA33DD:CE2767:5D77A544", + "connection": "keep-alive" + }, + "response": "{\"type\":\"PR\",\"pr\":{\"number\":1,\"head\":\"b54314c27f6635ba6597a4e5970afbdd0fa99cec\"},\"user\":\"owner\",\"status\":\"draft\",\"branch\":\"cms/1970-01-01-first-title\",\"collection\":\"posts\",\"commitMessage\":\"Create Post “1970-01-01-first-title”\",\"title\":\"first title\",\"description\":\"first description\",\"objects\":{\"entry\":{\"path\":\"content/posts/1970-01-01-first-title.md\",\"sha\":\"a041245814892e3f73f63ca54333fda649b7fc0b\"},\"files\":[]},\"timeStamp\":\"1970-01-01T00:00:00.300Z\"}", + "status": 200 + }, + { + "method": "GET", + "url": "/user", + "headers": { + "Date": "Tue, 10 Sep 2019 13:29:42 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4965", + "X-RateLimit-Reset": "1568125713", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"fb606f875be1d23b690ea5f5e26b9fe9\"", + "Last-Modified": "Wed, 28 Aug 2019 04:48:54 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A26:2B1F:11B628D:159AB57:5D77A545", + "content-length": "1321", + "connection": "keep-alive" + }, + "response": "{\"login\":\"owner\",\"id\":1,\"avatar_url\":\"https://avatars1.githubusercontent.com/u/7892489?v=4\",\"name\":\"owner\"}", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/collaborators/owner/permission", + "headers": { + "Date": "Tue, 10 Sep 2019 13:29:42 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4964", + "X-RateLimit-Reset": "1568125713", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"254416b9fc40a4c5acc82d271a9b493b\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A28:9D21:16ADE0F:1B9E1BE:5D77A546", + "content-length": "1071", + "connection": "keep-alive" + }, + "response": "{\n \"permission\": \"admin\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n}\n", + "status": 200 + }, + { + "body": "{\"operationName\":null,\"variables\":{},\"query\":\"{\\n viewer {\\n id\\n avatar_url: avatarUrl\\n name\\n login\\n __typename\\n }\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:29:44 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4967", + "X-RateLimit-Reset": "1568125723", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7A2A:B4DE:1181A49:154D753:5D77A546", + "content-length": "179", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"viewer\":{\"id\":\"MDQ6VXNlcjI2NzYwNTcx\",\"avatar_url\":\"https://avatars1.githubusercontent.com/u/7892489?v=4\",\"name\":\"owner\",\"login\":\"owner\",\"__typename\":\"User\"}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"repoPermission\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\"},\"query\":\"query repoPermission($owner: String!, $name: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n viewerPermission\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:29:44 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4966", + "X-RateLimit-Reset": "1568125723", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7A2C:3ED77:A6DB54:CA24EE:5D77A548", + "content-length": "119", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"viewerPermission\":\"ADMIN\"}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"files\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"master:content/posts\"},\"query\":\"query files($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...FileEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment FileEntryParts on TreeEntry {\\n name\\n sha: oid\\n type\\n blob: object {\\n ... on Blob {\\n size: byteSize\\n __typename\\n }\\n __typename\\n }\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:29:45 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4965", + "X-RateLimit-Reset": "1568125723", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7A2E:244EB:1776D7E:1C7D2EC:5D77A549", + "content-length": "1218", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6VHJlZTIwNzU2NzAxMTozNDg5MjU3NWUyMTZjMDZlNzU3MDkzZjAzNmJkOGUwNTdjNzhhNTJm\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"__typename\":\"Tree\",\"entries\":[{\"name\":\"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\"sha\":\"6d51a38aed7139d2117724b1e307657b6ff2d043\",\"type\":\"blob\",\"blob\":{\"size\":1707,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\"sha\":\"d0582dd245a3f408fb3fe2333bf01400007476e9\",\"type\":\"blob\",\"blob\":{\"size\":2565,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2016-02-02---A-Brief-History-of-Typography.md\",\"sha\":\"0eea554365f002d0f1572af9a58522d335a794d5\",\"type\":\"blob\",\"blob\":{\"size\":2786,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2017-18-08---The-Birth-of-Movable-Type.md\",\"sha\":\"44f78c474d04273185a95821426f75affc9b0044\",\"type\":\"blob\",\"blob\":{\"size\":16071,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\"sha\":\"a532f0a9445cdf90a19c6812cff89d1674991774\",\"type\":\"blob\",\"blob\":{\"size\":7465,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"}]}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"files\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"master:static/media\"},\"query\":\"query files($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...FileEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment FileEntryParts on TreeEntry {\\n name\\n sha: oid\\n type\\n blob: object {\\n ... on Blob {\\n size: byteSize\\n __typename\\n }\\n __typename\\n }\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:29:45 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4964", + "X-RateLimit-Reset": "1568125723", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7A30:B4E0:16254BA:1AF298E:5D77A549", + "content-length": "1837", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6VHJlZTIwNzU2NzAxMTo5Yjc2OTliNTdlMTQzMDkxMGRiODI4MzFkY2Y2YjhhMWQxZGJkYWM5\",\"sha\":\"9b7699b57e1430910db82831dcf6b8a1d1dbdac9\",\"__typename\":\"Tree\",\"entries\":[{\"name\":\"42-line-bible.jpg\",\"sha\":\"41c8d12f9ca5864beb827c381fbeff935209d5fb\",\"type\":\"blob\",\"blob\":{\"size\":671242,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"gutenberg.jpg\",\"sha\":\"04315e355873ea5d358d9c371c39a6845c1ae4ae\",\"type\":\"blob\",\"blob\":{\"size\":155002,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-0.jpg\",\"sha\":\"b70a1b64fd4fa9635823231a0ba92c6dc9393f16\",\"type\":\"blob\",\"blob\":{\"size\":660287,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-1.jpg\",\"sha\":\"05eedae372b829c62501ac751b2d42dcc432541b\",\"type\":\"blob\",\"blob\":{\"size\":392411,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-2.jpg\",\"sha\":\"53845ed35faf8939bea242bb85eda7c324b1be0b\",\"type\":\"blob\",\"blob\":{\"size\":99147,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-3.jpg\",\"sha\":\"8b2339d97069e826fae1f156212e40ae458454e3\",\"type\":\"blob\",\"blob\":{\"size\":358022,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-4.jpg\",\"sha\":\"a8f6f21253a67a4284b5a953b2fe633d44152ecd\",\"type\":\"blob\",\"blob\":{\"size\":114837,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"movable-type.jpg\",\"sha\":\"57b4e925ea00bd8e195cf4418eb6eb2995ea5f10\",\"type\":\"blob\",\"blob\":{\"size\":559028,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"printing-press.jpg\",\"sha\":\"d27f56c9437d9becd2f56cc627c9322c2f1f61f6\",\"type\":\"blob\",\"blob\":{\"size\":279283,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"type-through-time.jpg\",\"sha\":\"3f08366a805c51a60ec5056010f22de4ba08abaa\",\"type\":\"blob\",\"blob\":{\"size\":117689,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"}]}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"6d51a38aed7139d2117724b1e307657b6ff2d043\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:29:45 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4963", + "X-RateLimit-Reset": "1568125723", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7A32:9D21:16AE2BB:1B9E7B8:5D77A549", + "content-length": "1973", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzU2NzAxMTo2ZDUxYTM4YWVkNzEzOWQyMTE3NzI0YjFlMzA3NjU3YjZmZjJkMDQz\",\"text\":\"---\\ntitle: Perfecting the Art of Perfection\\ndate: \\\"2016-09-01T23:46:37.121Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Design Inspiration\\\"\\ntags:\\n - \\\"Handwriting\\\"\\n - \\\"Learning to write\\\"\\ndescription: \\\"Quisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\\\"\\ncanonical: ''\\n---\\n\\nQuisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\\n\\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-2.jpg)\\n\\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. \\n\\nPraesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"d0582dd245a3f408fb3fe2333bf01400007476e9\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:29:46 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4962", + "X-RateLimit-Reset": "1568125723", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7A38:2B24:1730258:1C2E87C:5D77A549", + "content-length": "2866", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzU2NzAxMTpkMDU4MmRkMjQ1YTNmNDA4ZmIzZmUyMzMzYmYwMTQwMDAwNzQ3NmU5\",\"text\":\"---\\ntitle: The Origins of Social Stationery Lettering\\ndate: \\\"2016-12-01T22:40:32.169Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Design Culture\\\"\\ndescription: \\\"Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante.\\\"\\ncanonical: ''\\n---\\n\\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \\n\\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\\n\\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-3.jpg)\\n\\n## Header Level 2\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \\n\\n
\\n\\t
\\n\\t\\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\\n\\t\\t
\\n\\t\\t\\t— Aliquam tincidunt mauris eu risus.\\n\\t\\t
\\n\\t
\\n
\\n\\n### Header Level 3\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\\n\\n```css\\n#header h1 a {\\n display: block;\\n width: 300px;\\n height: 80px;\\n}\\n```\\n\\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"0eea554365f002d0f1572af9a58522d335a794d5\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:29:46 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4961", + "X-RateLimit-Reset": "1568125723", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7A52:244E1:4F65CF:5FB69C:5D77A54A", + "content-length": "3102", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzU2NzAxMTowZWVhNTU0MzY1ZjAwMmQwZjE1NzJhZjlhNTg1MjJkMzM1YTc5NGQ1\",\"text\":\"---\\ntitle: \\\"A Brief History of Typography\\\"\\ndate: \\\"2016-02-02T22:40:32.169Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Design Inspiration\\\"\\ntags:\\n - \\\"Linotype\\\"\\n - \\\"Monotype\\\"\\n - \\\"History of typography\\\"\\n - \\\"Helvetica\\\"\\ndescription: \\\"Morbi in sem quis dui placerat ornare. Pellentesque odio nisi, euismod in, pharetra a, ultricies in, diam. Sed arcu. Cras consequat.\\\"\\ncanonical: ''\\n---\\n\\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \\n\\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\\n\\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-0.jpg)\\n\\n## Header Level 2\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \\n\\n
\\n\\t
\\n\\t\\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\\n\\t\\t
\\n\\t\\t\\t— Aliquam tincidunt mauris eu risus.\\n\\t\\t
\\n\\t
\\n
\\n\\n### Header Level 3\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\\n\\n```css\\n#header h1 a {\\n display: block;\\n width: 300px;\\n height: 80px;\\n}\\n```\\n\\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"44f78c474d04273185a95821426f75affc9b0044\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:29:46 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4960", + "X-RateLimit-Reset": "1568125723", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7A51:2B1F:11B6795:159B1B0:5D77A54A", + "content-length": "16478", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzU2NzAxMTo0NGY3OGM0NzRkMDQyNzMxODVhOTU4MjE0MjZmNzVhZmZjOWIwMDQ0\",\"text\":\"---\\ntitle: \\\"Johannes Gutenberg: The Birth of Movable Type\\\"\\ndate: \\\"2017-08-18T22:12:03.284Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Typography\\\"\\ntags:\\n - \\\"Open source\\\"\\n - \\\"Gatsby\\\"\\n - \\\"Typography\\\"\\ndescription: \\\"German inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\\\"\\ncanonical: ''\\n---\\n\\nGerman inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\\n\\n**Johannes Gensfleisch zur Laden zum Gutenberg** (c. 1398 – 1468) was a German blacksmith, goldsmith, printer, and publisher who introduced printing to Europe. His invention of mechanical movable type printing started the Printing Revolution and is widely regarded as the most important event of the modern period. It played a key role in the development of the Renaissance, Reformation, the Age of Enlightenment, and the Scientific revolution and laid the material basis for the modern knowledge-based economy and the spread of learning to the masses.\\n\\n
\\n\\t\\\"Gutenberg\\\"\\n\\t
Johannes Gutenberg
\\n
\\n\\nWith his invention of the printing press, Gutenberg was the first European to use movable type printing, in around 1439. Among his many contributions to printing are: the invention of a process for mass-producing movable type; the use of oil-based ink; and the use of a wooden printing press similar to the agricultural screw presses of the period. His truly epochal invention was the combination of these elements into a practical system that allowed the mass production of printed books and was economically viable for printers and readers alike. Gutenberg's method for making type is traditionally considered to have included a type metal alloy and a hand mould for casting type. The alloy was a mixture of lead, tin, and antimony that melted at a relatively low temperature for faster and more economical casting, cast well, and created a durable type.\\n\\nIn Renaissance Europe, the arrival of mechanical movable type printing introduced the era of mass communication which permanently altered the structure of society. The relatively unrestricted circulation of information — including revolutionary ideas — transcended borders, captured the masses in the Reformation and threatened the power of political and religious authorities; the sharp increase in literacy broke the monopoly of the literate elite on education and learning and bolstered the emerging middle class. Across Europe, the increasing cultural self-awareness of its people led to the rise of proto-nationalism, accelerated by the flowering of the European vernacular languages to the detriment of Latin's status as lingua franca. In the 19th century, the replacement of the hand-operated Gutenberg-style press by steam-powered rotary presses allowed printing on an industrial scale, while Western-style printing was adopted all over the world, becoming practically the sole medium for modern bulk printing.\\n\\nThe use of movable type was a marked improvement on the handwritten manuscript, which was the existing method of book production in Europe, and upon woodblock printing, and revolutionized European book-making. Gutenberg's printing technology spread rapidly throughout Europe and later the world.\\n\\nHis major work, the Gutenberg Bible (also known as the 42-line Bible), has been acclaimed for its high aesthetic and technical quality.\\n\\n## Printing Press\\n\\nAround 1439, Gutenberg was involved in a financial misadventure making polished metal mirrors (which were believed to capture holy light from religious relics) for sale to pilgrims to Aachen: in 1439 the city was planning to exhibit its collection of relics from Emperor Charlemagne but the event was delayed by one year due to a severe flood and the capital already spent could not be repaid. When the question of satisfying the investors came up, Gutenberg is said to have promised to share a “secret”. It has been widely speculated that this secret may have been the idea of printing with movable type. Also around 1439–1440, the Dutch Laurens Janszoon Coster came up with the idea of printing. Legend has it that the idea came to him “like a ray of light”.\\n\\n
\\n\\t\\\"Early\\n\\t
Early wooden printing press as depicted in 1568.
\\n
\\n\\nUntil at least 1444 he lived in Strasbourg, most likely in the St. Arbogast parish. It was in Strasbourg in 1440 that Gutenberg is said to have perfected and unveiled the secret of printing based on his research, mysteriously entitled Kunst und Aventur (art and enterprise). It is not clear what work he was engaged in, or whether some early trials with printing from movable type may have been conducted there. After this, there is a gap of four years in the record. In 1448, he was back in Mainz, where he took out a loan from his brother-in-law Arnold Gelthus, quite possibly for a printing press or related paraphernalia. By this date, Gutenberg may have been familiar with intaglio printing; it is claimed that he had worked on copper engravings with an artist known as the Master of Playing Cards.\\n\\nBy 1450, the press was in operation, and a German poem had been printed, possibly the first item to be printed there. Gutenberg was able to convince the wealthy moneylender Johann Fust for a loan of 800 guilders. Peter Schöffer, who became Fust’s son-in-law, also joined the enterprise. Schöffer had worked as a scribe in Paris and is believed to have designed some of the first typefaces.\\n\\n
\\n\\t
\\n\\t\\t

All that has been written to me about that marvelous man seen at Frankfurt is true. I have not seen complete Bibles but only a number of quires of various books of the Bible. The script was very neat and legible, not at all difficult to follow—your grace would be able to read it without effort, and indeed without glasses.

\\n\\t\\t
\\n\\t\\t\\t—Future pope Pius II in a letter to Cardinal Carvajal, March 1455\\n\\t\\t
\\n\\t
\\n
\\n\\nGutenberg's workshop was set up at Hof Humbrecht, a property belonging to a distant relative. It is not clear when Gutenberg conceived the Bible project, but for this he borrowed another 800 guilders from Fust, and work commenced in 1452. At the same time, the press was also printing other, more lucrative texts (possibly Latin grammars). There is also some speculation that there may have been two presses, one for the pedestrian texts, and one for the Bible. One of the profit-making enterprises of the new press was the printing of thousands of indulgences for the church, documented from 1454–55.\\n\\nIn 1455 Gutenberg completed his 42-line Bible, known as the Gutenberg Bible. About 180 copies were printed, most on paper and some on vellum.\\n\\n## Court Case\\n\\nSome time in 1456, there was a dispute between Gutenberg and Fust, and Fust demanded his money back, accusing Gutenberg of misusing the funds. Meanwhile the expenses of the Bible project had proliferated, and Gutenberg's debt now exceeded 20,000 guilders. Fust sued at the archbishop's court. A November 1455 legal document records that there was a partnership for a \\\"project of the books,\\\" the funds for which Gutenberg had used for other purposes, according to Fust. The court decided in favor of Fust, giving him control over the Bible printing workshop and half of all printed Bibles.\\n\\nThus Gutenberg was effectively bankrupt, but it appears he retained (or re-started) a small printing shop, and participated in the printing of a Bible in the town of Bamberg around 1459, for which he seems at least to have supplied the type. But since his printed books never carry his name or a date, it is difficult to be certain, and there is consequently a considerable scholarly debate on this subject. It is also possible that the large Catholicon dictionary, 300 copies of 754 pages, printed in Mainz in 1460, may have been executed in his workshop.\\n\\nMeanwhile, the Fust–Schöffer shop was the first in Europe to bring out a book with the printer's name and date, the Mainz Psalter of August 1457, and while proudly proclaiming the mechanical process by which it had been produced, it made no mention of Gutenberg.\\n\\n## Later Life\\n\\nIn 1462, during a conflict between two archbishops, Mainz was sacked by archbishop Adolph von Nassau, and Gutenberg was exiled. An old man by now, he moved to Eltville where he may have initiated and supervised a new printing press belonging to the brothers Bechtermünze.\\n\\nIn January 1465, Gutenberg's achievements were recognized and he was given the title Hofmann (gentleman of the court) by von Nassau. This honor included a stipend, an annual court outfit, as well as 2,180 litres of grain and 2,000 litres of wine tax-free. It is believed he may have moved back to Mainz around this time, but this is not certain.\\n\\n***\\n\\nGutenberg died in 1468 and was buried in the Franciscan church at Mainz, his contributions largely unknown. This church and the cemetery were later destroyed, and Gutenberg's grave is now lost.\\n\\nIn 1504, he was mentioned as the inventor of typography in a book by Professor Ivo Wittig. It was not until 1567 that the first portrait of Gutenberg, almost certainly an imaginary reconstruction, appeared in Heinrich Pantaleon's biography of famous Germans.\\n\\n## Printing Method With Movable Type\\n\\nGutenberg's early printing process, and what tests he may have made with movable type, are not known in great detail. His later Bibles were printed in such a way as to have required large quantities of type, some estimates suggesting as many as 100,000 individual sorts. Setting each page would take, perhaps, half a day, and considering all the work in loading the press, inking the type, pulling the impressions, hanging up the sheets, distributing the type, etc., it is thought that the Gutenberg–Fust shop might have employed as many as 25 craftsmen.\\n\\n![Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5](/media/movable-type.jpg)\\n\\n*Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5*\\n\\nGutenberg's technique of making movable type remains unclear. In the following decades, punches and copper matrices became standardized in the rapidly disseminating printing presses across Europe. Whether Gutenberg used this sophisticated technique or a somewhat primitive version has been the subject of considerable debate.\\n\\nIn the standard process of making type, a hard metal punch (made by punchcutting, with the letter carved back to front) is hammered into a softer copper bar, creating a matrix. This is then placed into a hand-held mould and a piece of type, or \\\"sort\\\", is cast by filling the mould with molten type-metal; this cools almost at once, and the resulting piece of type can be removed from the mould. The matrix can be reused to create hundreds, or thousands, of identical sorts so that the same character appearing anywhere within the book will appear very uniform, giving rise, over time, to the development of distinct styles of typefaces or fonts. After casting, the sorts are arranged into type-cases, and used to make up pages which are inked and printed, a procedure which can be repeated hundreds, or thousands, of times. The sorts can be reused in any combination, earning the process the name of “movable type”.\\n\\nThe invention of the making of types with punch, matrix and mold has been widely attributed to Gutenberg. However, recent evidence suggests that Gutenberg's process was somewhat different. If he used the punch and matrix approach, all his letters should have been nearly identical, with some variations due to miscasting and inking. However, the type used in Gutenberg's earliest work shows other variations.\\n\\n
\\n\\t
\\n\\t\\t

It is a press, certainly, but a press from which shall flow in inexhaustible streams… Through it, god will spread his word.

\\n\\t\\t
\\n\\t\\t\\t—Johannes Gutenberg\\n\\t\\t
\\n\\t
\\n
\\n\\nIn 2001, the physicist Blaise Agüera y Arcas and Princeton librarian Paul Needham, used digital scans of a Papal bull in the Scheide Library, Princeton, to carefully compare the same letters (types) appearing in different parts of the printed text. The irregularities in Gutenberg's type, particularly in simple characters such as the hyphen, suggested that the variations could not have come from either ink smear or from wear and damage on the pieces of metal on the types themselves. While some identical types are clearly used on other pages, other variations, subjected to detailed image analysis, suggested that they could not have been produced from the same matrix. Transmitted light pictures of the page also appeared to reveal substructures in the type that could not arise from traditional punchcutting techniques. They hypothesized that the method may have involved impressing simple shapes to create alphabets in “cuneiform” style in a matrix made of some soft material, perhaps sand. Casting the type would destroy the mould, and the matrix would need to be recreated to make each additional sort. This could explain the variations in the type, as well as the substructures observed in the printed images.\\n\\nThus, they feel that “the decisive factor for the birth of typography”, the use of reusable moulds for casting type, might have been a more progressive process than was previously thought. They suggest that the additional step of using the punch to create a mould that could be reused many times was not taken until twenty years later, in the 1470s. Others have not accepted some or all of their suggestions, and have interpreted the evidence in other ways, and the truth of the matter remains very uncertain.\\n\\nA 1568 history by Hadrianus Junius of Holland claims that the basic idea of the movable type came to Gutenberg from Laurens Janszoon Coster via Fust, who was apprenticed to Coster in the 1430s and may have brought some of his equipment from Haarlem to Mainz. While Coster appears to have experimented with moulds and castable metal type, there is no evidence that he had actually printed anything with this technology. He was an inventor and a goldsmith. However, there is one indirect supporter of the claim that Coster might be the inventor. The author of the Cologne Chronicle of 1499 quotes Ulrich Zell, the first printer of Cologne, that printing was performed in Mainz in 1450, but that some type of printing of lower quality had previously occurred in the Netherlands. However, the chronicle does not mention the name of Coster, while it actually credits Gutenberg as the \\\"first inventor of printing\\\" in the very same passage (fol. 312). The first securely dated book by Dutch printers is from 1471, and the Coster connection is today regarded as a mere legend.\\n\\nThe 19th century printer and typefounder Fournier Le Jeune suggested that Gutenberg might not have been using type cast with a reusable matrix, but possibly wooden types that were carved individually. A similar suggestion was made by Nash in 2004. This remains possible, albeit entirely unproven.\\n\\nIt has also been questioned whether Gutenberg used movable types at all. In 2004, Italian professor Bruno Fabbiani claimed that examination of the 42-line Bible revealed an overlapping of letters, suggesting that Gutenberg did not in fact use movable type (individual cast characters) but rather used whole plates made from a system somewhat like a modern typewriter, whereby the letters were stamped successively into the plate and then printed. However, most specialists regard the occasional overlapping of type as caused by paper movement over pieces of type of slightly unequal height.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"a532f0a9445cdf90a19c6812cff89d1674991774\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:29:47 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4959", + "X-RateLimit-Reset": "1568125723", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7A54:2B19:A4ADDD:C857A7:5D77A54B", + "content-length": "7803", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzU2NzAxMTphNTMyZjBhOTQ0NWNkZjkwYTE5YzY4MTJjZmY4OWQxNjc0OTkxNzc0\",\"text\":\"---\\ntitle: Humane Typography in the Digital Age\\ndate: \\\"2017-08-19T22:40:32.169Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Typography\\\"\\ntags:\\n - \\\"Design\\\"\\n - \\\"Typography\\\"\\n - \\\"Web Development\\\"\\ndescription: \\\"An Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\\\"\\ncanonical: ''\\n---\\n\\n- [The first transition](#the-first-transition)\\n- [The digital age](#the-digital-age)\\n- [Loss of humanity through transitions](#loss-of-humanity-through-transitions)\\n- [Chasing perfection](#chasing-perfection)\\n\\nAn Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\\n\\nThe typography of this industrial age was no longer handcrafted. Mass production and profit became more important. Quantity mattered more than the quality. The books and printed works in general lost a part of its humanity. The typefaces were not produced by craftsmen anymore. It was the machines printing and tying the books together now. The craftsmen had to let go of their craft and became a cog in the process. An extension of the industrial machine.\\n\\nBut the victory of the industrialism didn’t mean that the craftsmen were completely extinct. The two worlds continued to coexist independently. Each recognising the good in the other — the power of industrialism and the humanity of craftsmanship. This was the second transition that would strip typography of a part of its humanity. We have to go 500 years back in time to meet the first one.\\n\\n## The first transition\\n\\nA similar conflict emerged after the invention of the first printing press in Europe. Johannes Gutenberg invented movable type and used it to produce different compositions. His workshop could print up to 240 impressions per hour. Until then, the books were being copied by hand. All the books were handwritten and decorated with hand drawn ornaments and figures. A process of copying a book was long but each book, even a copy, was a work of art.\\n\\nThe first printed books were, at first, perceived as inferior to the handwritten ones. They were smaller and cheaper to produce. Movable type provided the printers with flexibility that allowed them to print books in languages other than Latin. Gill describes the transition to industrialism as something that people needed and wanted. Something similar happened after the first printed books emerged. People wanted books in a language they understood and they wanted books they could take with them. They were hungry for knowledge and printed books satisfied this hunger.\\n\\n![42-line-bible.jpg](/media/42-line-bible.jpg)\\n\\n*The 42–Line Bible, printed by Gutenberg.*\\n\\nBut, through this transition, the book lost a large part of its humanity. The machine took over most of the process but craftsmanship was still a part of it. The typefaces were cut manually by the first punch cutters. The paper was made by hand. The illustrations and ornaments were still being hand drawn. These were the remains of the craftsmanship that went almost extinct in the times of Eric Gill.\\n\\n## The digital age\\n\\nThe first transition took away a large part of humanity from written communication. Industrialisation, the second transition described by Eric Gill, took away most of what was left. But it’s the third transition that stripped it naked. Typefaces are faceless these days. They’re just fonts on our computers. Hardly anyone knows their stories. Hardly anyone cares. Flicking through thousands of typefaces and finding the “right one” is a matter of minutes.\\n\\n> In the new computer age the proliferation of typefaces and type manipulations represents a new level of visual pollution threatening our culture. Out of thousands of typefaces, all we need are a few basic ones, and trash the rest.\\n>\\n— Massimo Vignelli\\n\\nTypography is not about typefaces. It’s not about what looks best, it’s about what feels right. What communicates the message best. Typography, in its essence, is about the message. “Typographical design should perform optically what the speaker creates through voice and gesture of his thoughts.”, as El Lissitzky, a famous Russian typographer, put it.\\n\\n## Loss of humanity through transitions\\n\\nEach transition took away a part of humanity from written language. Handwritten books being the most humane form and the digital typefaces being the least. Overuse of Helvetica is a good example. Messages are being told in a typeface just because it’s a safe option. It’s always there. Everyone knows it but yet, nobody knows it. Stop someone on the street and ask him what Helvetica is? Ask a designer the same question. Ask him where it came from, when, why and who designed it. Most of them will fail to answer these questions. Most of them used it in their precious projects but they still don’t spot it in the street.\\n\\n
\\n\\t
\\n\\t\\t

Knowledge of the quality of a typeface is of the greatest importance for the functional, aesthetic and psychological effect.

\\n\\t\\t
\\n\\t\\t\\t— Josef Mueller-Brockmann\\n\\t\\t
\\n\\t
\\n
\\n\\nTypefaces don’t look handmade these days. And that’s all right. They don’t have to. Industrialism took that away from them and we’re fine with it. We’ve traded that part of humanity for a process that produces more books that are easier to read. That can’t be bad. And it isn’t.\\n\\n> Humane typography will often be comparatively rough and even uncouth; but while a certain uncouthness does not seriously matter in humane works, uncouthness has no excuse whatever in the productions of the machine.\\n>\\n> — Eric Gill\\n\\nWe’ve come close to “perfection” in the last five centuries. The letters are crisp and without rough edges. We print our compositions with high–precision printers on a high quality, machine made paper.\\n\\n![type-through-time.jpg](/media/type-through-time.jpg)\\n\\n*Type through 5 centuries.*\\n\\nWe lost a part of ourselves because of this chase after perfection. We forgot about the craftsmanship along the way. And the worst part is that we don’t care. The transition to the digital age made that clear. We choose typefaces like clueless zombies. There’s no meaning in our work. Type sizes, leading, margins… It’s all just a few clicks or lines of code. The message isn’t important anymore. There’s no more “why” behind the “what”.\\n\\n## Chasing perfection\\n\\nHuman beings aren’t perfect. Perfection is something that will always elude us. There will always be a small part of humanity in everything we do. No matter how small that part, we should make sure that it transcends the limits of the medium. We have to think about the message first. What typeface should we use and why? Does the typeface match the message and what we want to communicate with it? What will be the leading and why? Will there be more typefaces in our design? On what ground will they be combined? What makes our design unique and why? This is the part of humanity that is left in typography. It might be the last part. Are we really going to give it up?\\n\\n*Originally published by [Matej Latin](http://matejlatin.co.uk/) on [Medium](https://medium.com/design-notes/humane-typography-in-the-digital-age-9bd5c16199bd?ref=webdesignernews.com#.lygo82z0x).*\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/1970-01-01-first-title.json?ts=300&ref=refs/meta/_netlify_cms", + "headers": { + "Date": "Tue, 10 Sep 2019 13:29:50 GMT", + "Content-Type": "application/vnd.github.VERSION.raw; charset=utf-8", + "Content-Length": "462", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4963", + "X-RateLimit-Reset": "1568125713", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"5486c6b69c1678c7f19da5bc1617b9a663ff561d\"", + "Last-Modified": "Tue, 10 Sep 2019 13:29:26 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A56:244EB:1777542:1C7DC70:5D77A54E", + "connection": "keep-alive" + }, + "response": "{\"type\":\"PR\",\"pr\":{\"number\":1,\"head\":\"b54314c27f6635ba6597a4e5970afbdd0fa99cec\"},\"user\":\"owner\",\"status\":\"draft\",\"branch\":\"cms/1970-01-01-first-title\",\"collection\":\"posts\",\"commitMessage\":\"Create Post “1970-01-01-first-title”\",\"title\":\"first title\",\"description\":\"first description\",\"objects\":{\"entry\":{\"path\":\"content/posts/1970-01-01-first-title.md\",\"sha\":\"a041245814892e3f73f63ca54333fda649b7fc0b\"},\"files\":[]},\"timeStamp\":\"1970-01-01T00:00:00.300Z\"}", + "status": 200 + }, + { + "body": "{\"operationName\":\"unpublishedBranchFile\",\"variables\":{\"headOwner\":\"owner\",\"headRepoName\":\"repo\",\"headExpression\":\"cms/1970-01-01-first-title:content/posts/1970-01-01-first-title.md\",\"baseOwner\":\"owner\",\"baseRepoName\":\"repo\",\"baseExpression\":\"master:content/posts/1970-01-01-first-title.md\"},\"query\":\"query unpublishedBranchFile($headOwner: String!, $headRepoName: String!, $headExpression: String!, $baseOwner: String!, $baseRepoName: String!, $baseExpression: String!) {\\n head: repository(owner: $headOwner, name: $headRepoName) {\\n ...RepositoryParts\\n object(expression: $headExpression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n base: repository(owner: $baseOwner, name: $baseRepoName) {\\n ...RepositoryParts\\n object(expression: $baseExpression) {\\n ... on Blob {\\n id\\n oid\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:29:51 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4958", + "X-RateLimit-Reset": "1568125723", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7A59:9D1E:48F52A:593FF4:5D77A54E", + "content-length": "189", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"head\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"object\":null},\"base\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"object\":null}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"master:content/posts/1970-01-01-first-title.md\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:29:52 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4957", + "X-RateLimit-Reset": "1568125723", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7A5A:1510F:11C0315:158869A:5D77A54F", + "content-length": "106", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"object\":null}}}\n", + "status": 200 + }, + { + "body": "{\"content\":\"LS0tCnRlbXBsYXRlOiBwb3N0CnRpdGxlOiBmaXJzdCB0aXRsZQpkcmFmdDogdHJ1ZQpkYXRlOiAxOTcwLTAxLTAxVDAwOjAwOjAwLjAwMFoKZGVzY3JpcHRpb246IGZpcnN0IGRlc2NyaXB0aW9uCmNhdGVnb3J5OiBmaXJzdCBjYXRlZ29yeQp0YWdzOgogIC0gdGFnMQotLS0KZmlyc3QgYm9keQo=\",\"encoding\":\"base64\"}", + "method": "POST", + "url": "/repos/owner/repo/git/blobs?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:29:52 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "207", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4962", + "X-RateLimit-Reset": "1568125713", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"83b3e749712791d5ee508f9924334557\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A5C:15110:17EE76A:1D0FE43:5D77A550", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"a041245814892e3f73f63ca54333fda649b7fc0b\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b\"\n}\n", + "status": 201 + }, + { + "body": "{\"operationName\":\"branch\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"qualifiedName\":\"refs/heads/master\"},\"query\":\"query branch($owner: String!, $name: String!, $qualifiedName: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n branch: ref(qualifiedName: $qualifiedName) {\\n ...BranchParts\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BranchParts on Ref {\\n commit: target {\\n ...ObjectParts\\n __typename\\n }\\n id\\n name\\n repository {\\n ...RepositoryParts\\n __typename\\n }\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:29:53 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4956", + "X-RateLimit-Reset": "1568125723", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7A5E:244E7:1135739:14FDCF2:5D77A551", + "content-length": "429", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"branch\":{\"commit\":{\"id\":\"MDY6Q29tbWl0MjA3NTY3MDExOjcyNjE3MmRlYWU5OWM4YTJjZWE0YzcxZTczNGEwMmE3OTNkNGQ5ZTU=\",\"sha\":\"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\"__typename\":\"Commit\"},\"id\":\"MDM6UmVmMjA3NTY3MDExOm1hc3Rlcg==\",\"name\":\"master\",\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\"},\"__typename\":\"Ref\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"commitTree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"726172deae99c8a2cea4c71e734a02a793d4d9e5\"},\"query\":\"query commitTree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n commit: object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n tree {\\n ...ObjectParts\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:29:54 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4955", + "X-RateLimit-Reset": "1568125723", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7A60:9D21:16AEEB2:1B9F6A0:5D77A551", + "content-length": "5040", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"commit\":{\"id\":\"MDY6Q29tbWl0MjA3NTY3MDExOjcyNjE3MmRlYWU5OWM4YTJjZWE0YzcxZTczNGEwMmE3OTNkNGQ5ZTU=\",\"sha\":\"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\"__typename\":\"Commit\",\"tree\":{\"id\":\"MDQ6VHJlZTIwNzU2NzAxMTpjNWI3ZjZkNjc0YmExOTNiYjdiNGE1ZmNmNDkzMzAzNGUxYjdmMmI3\",\"sha\":\"c5b7f6d674ba193bb7b4a5fcf4933034e1b7f2b7\",\"__typename\":\"Tree\",\"entries\":[{\"path\":\".circleci\",\"sha\":\"e5e9af3301cac61f120b8e4d40b1733c7a45685a\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\".eslintignore\",\"sha\":\"80b4531b026d19f8fa589efd122e76199d23f967\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".eslintrc.js\",\"sha\":\"370684994aaed5b858da3a006f48cfa57e88fd27\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".flowconfig\",\"sha\":\"14aa2ac4cc0e15223ad98630a6f1325fc81f8043\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".gitattributes\",\"sha\":\"10a369ddf4f603337cabc6f21646508323941ce1\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".github\",\"sha\":\"4ebeece548b52b20af59622354530a6d33b50b43\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\".gitignore\",\"sha\":\"c071ba35b0e49899bab6d610a68eef667dbbf157\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".prettierignore\",\"sha\":\"393f050e123d998cf8c8b362ff95cc8ac4d250e5\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".prettierrc\",\"sha\":\"e52ad05bb13b084d7949dd76e1b2517455162150\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".stylelintrc.json\",\"sha\":\"4b4c9698d10d756f5faa025659b86375428ed0a7\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".vscode\",\"sha\":\"286e97ec0113ea8242b41ac222e2c3e8077e6f1e\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"CHANGELOG.md\",\"sha\":\"070a5d4f0eacd2dc0be81ae8996f8982de43046e\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"CODE_OF_CONDUCT.md\",\"sha\":\"92bc7565ff0ee145a0041b5179a820f14f39ab22\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"CONTRIBUTING.md\",\"sha\":\"8552aa241254a61258e1ff9666ab36f32fb1e3b9\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"LICENSE\",\"sha\":\"42d85938357b49977c126ca03b199129082d4fb8\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"README.md\",\"sha\":\"19df50a78654c8d757ca7f38447aa3d09c7abcce\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"backend\",\"sha\":\"b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"config.js\",\"sha\":\"58afd573bbb69fcca000efd0f5d90b93c93a98dd\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"content\",\"sha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"flow-typed\",\"sha\":\"86c32fd6c3118be5e0dbbb231a834447357236c6\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"flow\",\"sha\":\"0af45ad00d155c8d8c7407d913ff85278244c9ce\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"gatsby-browser.js\",\"sha\":\"9bd2c9dce175f04980e91cd9dc295a299e3cdb80\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"gatsby-config.js\",\"sha\":\"353a109dad62e3f25bf9f5e6a2167f21a6c8b459\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"gatsby-node.js\",\"sha\":\"14a207883c2093d2cc071bc5a464e165bcc1fead\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"gatsby\",\"sha\":\"4f23c06cd1740bf78304d2c0b29bf6bfdf427981\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"jest\",\"sha\":\"5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"netlify.toml\",\"sha\":\"599b99cc5700404fde316a7ede829776f23e7d45\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"package.json\",\"sha\":\"9d777616438b90a18f1a4ebfd5f114b4c06c6f17\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"postcss-config.js\",\"sha\":\"d216501e9b351a72e00ba0b7459a6500e27e7da2\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"renovate.json\",\"sha\":\"dcc309398785698b8870545c32051a3d72dd8271\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"serverless-scripts\",\"sha\":\"ee3701f2fbfc7196ba340f6481d1387d20527898\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"serverless-single-page-app-plugin\",\"sha\":\"08763fcfba643a06a452398517019bea4a5850ba\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"serverless.yml\",\"sha\":\"20b22c5fad229f35d029bf6614d333d82fe8a987\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"src\",\"sha\":\"8cdb35a88232c0f32f12f130c92c7cc55f97f471\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"static\",\"sha\":\"53c6380a600a030d3722bff7ecde36f749fb6964\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"utils\",\"sha\":\"a592549c9f74db40b51efefcda2fd76810405f27\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"yarn.lock\",\"sha\":\"475c9c1924ca752a0686303e2fdeb7b13ad75f57\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"}]}}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"tree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"726172deae99c8a2cea4c71e734a02a793d4d9e5\"},\"query\":\"query tree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n tree: object(oid: $sha) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:29:54 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4954", + "X-RateLimit-Reset": "1568125723", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7A62:244E7:11357F8:14FDDD2:5D77A551", + "content-length": "260", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"tree\":{\"id\":\"MDY6Q29tbWl0MjA3NTY3MDExOjcyNjE3MmRlYWU5OWM4YTJjZWE0YzcxZTczNGEwMmE3OTNkNGQ5ZTU=\",\"sha\":\"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\"__typename\":\"Commit\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"commitTree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\"},\"query\":\"query commitTree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n commit: object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n tree {\\n ...ObjectParts\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:29:54 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4953", + "X-RateLimit-Reset": "1568125723", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7A64:1510F:11C0628:1588A79:5D77A552", + "content-length": "256", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"commit\":{\"id\":\"MDQ6VHJlZTIwNzU2NzAxMTowMjk0ZWYxMDZjNTg3NDM5MDdhNWM4NTVkYTFlYjBmODdiMGI2ZGZj\",\"sha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\"__typename\":\"Tree\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"tree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\"},\"query\":\"query tree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n tree: object(oid: $sha) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:29:54 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4952", + "X-RateLimit-Reset": "1568125723", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7A66:3ED82:17E6F53:1D11A07:5D77A552", + "content-length": "502", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"tree\":{\"id\":\"MDQ6VHJlZTIwNzU2NzAxMTowMjk0ZWYxMDZjNTg3NDM5MDdhNWM4NTVkYTFlYjBmODdiMGI2ZGZj\",\"sha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\"__typename\":\"Tree\",\"entries\":[{\"path\":\"pages\",\"sha\":\"1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"posts\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"}]}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"tree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\"},\"query\":\"query tree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n tree: object(oid: $sha) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:29:55 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4951", + "X-RateLimit-Reset": "1568125723", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7A68:3ED7B:11EF738:15C6F5A:5D77A553", + "content-length": "1075", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"tree\":{\"id\":\"MDQ6VHJlZTIwNzU2NzAxMTozNDg5MjU3NWUyMTZjMDZlNzU3MDkzZjAzNmJkOGUwNTdjNzhhNTJm\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"__typename\":\"Tree\",\"entries\":[{\"path\":\"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\"sha\":\"6d51a38aed7139d2117724b1e307657b6ff2d043\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\"sha\":\"d0582dd245a3f408fb3fe2333bf01400007476e9\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"2016-02-02---A-Brief-History-of-Typography.md\",\"sha\":\"0eea554365f002d0f1572af9a58522d335a794d5\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"2017-18-08---The-Birth-of-Movable-Type.md\",\"sha\":\"44f78c474d04273185a95821426f75affc9b0044\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\"sha\":\"a532f0a9445cdf90a19c6812cff89d1674991774\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"}]}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"commitTree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\"},\"query\":\"query commitTree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n commit: object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n tree {\\n ...ObjectParts\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:29:55 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4950", + "X-RateLimit-Reset": "1568125723", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7A6A:2B19:A4B393:C85EC3:5D77A553", + "content-length": "256", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"commit\":{\"id\":\"MDQ6VHJlZTIwNzU2NzAxMTozNDg5MjU3NWUyMTZjMDZlNzU3MDkzZjAzNmJkOGUwNTdjNzhhNTJm\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"__typename\":\"Tree\"}}}}\n", + "status": 200 + }, + { + "body": "{\"base_tree\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"tree\":[{\"path\":\"1970-01-01-first-title.md\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"a041245814892e3f73f63ca54333fda649b7fc0b\"}]}", + "method": "POST", + "url": "/repos/owner/repo/git/trees?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:29:56 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "2362", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4961", + "X-RateLimit-Reset": "1568125713", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"6d65750d5f558dadf97dc866bf8b2047\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A6C:2B1F:11B72AF:159BF7F:5D77A553", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a041245814892e3f73f63ca54333fda649b7fc0b\",\n \"size\": 167,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b\"\n },\n {\n \"path\": \"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"size\": 1707,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\"\n },\n {\n \"path\": \"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"size\": 2565,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\"\n },\n {\n \"path\": \"2016-02-02---A-Brief-History-of-Typography.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"0eea554365f002d0f1572af9a58522d335a794d5\",\n \"size\": 2786,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\"\n },\n {\n \"path\": \"2017-18-08---The-Birth-of-Movable-Type.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"44f78c474d04273185a95821426f75affc9b0044\",\n \"size\": 16071,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\"\n },\n {\n \"path\": \"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"size\": 7465,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"base_tree\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\"tree\":[{\"path\":\"posts\",\"mode\":\"040000\",\"type\":\"tree\",\"sha\":\"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\"parentSha\":\"34892575e216c06e757093f036bd8e057c78a52f\"}]}", + "method": "POST", + "url": "/repos/owner/repo/git/trees?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:29:57 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "831", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4960", + "X-RateLimit-Reset": "1568125713", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"941458d17a55aece507a4092046edf20\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A6E:2B1F:11B739C:159C08C:5D77A554", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"tree\": [\n {\n \"path\": \"pages\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\"\n },\n {\n \"path\": \"posts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"base_tree\":\"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\"tree\":[{\"path\":\"content\",\"mode\":\"040000\",\"type\":\"tree\",\"sha\":\"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\"parentSha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\"}]}", + "method": "POST", + "url": "/repos/owner/repo/git/trees?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:29:57 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "11769", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4959", + "X-RateLimit-Reset": "1568125713", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"5b931daea9222fce9b5272abe62d9270\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/trees/daee8d5d15d144e8779955166a2afeccde2770e1", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A70:1510F:11C095D:1588E82:5D77A555", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"daee8d5d15d144e8779955166a2afeccde2770e1\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/daee8d5d15d144e8779955166a2afeccde2770e1\",\n \"tree\": [\n {\n \"path\": \".circleci\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"e5e9af3301cac61f120b8e4d40b1733c7a45685a\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/e5e9af3301cac61f120b8e4d40b1733c7a45685a\"\n },\n {\n \"path\": \".eslintignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"80b4531b026d19f8fa589efd122e76199d23f967\",\n \"size\": 39,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/80b4531b026d19f8fa589efd122e76199d23f967\"\n },\n {\n \"path\": \".eslintrc.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"370684994aaed5b858da3a006f48cfa57e88fd27\",\n \"size\": 414,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/370684994aaed5b858da3a006f48cfa57e88fd27\"\n },\n {\n \"path\": \".flowconfig\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14aa2ac4cc0e15223ad98630a6f1325fc81f8043\",\n \"size\": 283,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14aa2ac4cc0e15223ad98630a6f1325fc81f8043\"\n },\n {\n \"path\": \".gitattributes\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"10a369ddf4f603337cabc6f21646508323941ce1\",\n \"size\": 135,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/10a369ddf4f603337cabc6f21646508323941ce1\"\n },\n {\n \"path\": \".github\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4ebeece548b52b20af59622354530a6d33b50b43\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4ebeece548b52b20af59622354530a6d33b50b43\"\n },\n {\n \"path\": \".gitignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"c071ba35b0e49899bab6d610a68eef667dbbf157\",\n \"size\": 169,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/c071ba35b0e49899bab6d610a68eef667dbbf157\"\n },\n {\n \"path\": \".prettierignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"393f050e123d998cf8c8b362ff95cc8ac4d250e5\",\n \"size\": 45,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/393f050e123d998cf8c8b362ff95cc8ac4d250e5\"\n },\n {\n \"path\": \".prettierrc\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e52ad05bb13b084d7949dd76e1b2517455162150\",\n \"size\": 223,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/e52ad05bb13b084d7949dd76e1b2517455162150\"\n },\n {\n \"path\": \".stylelintrc.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"4b4c9698d10d756f5faa025659b86375428ed0a7\",\n \"size\": 718,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/4b4c9698d10d756f5faa025659b86375428ed0a7\"\n },\n {\n \"path\": \".vscode\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"286e97ec0113ea8242b41ac222e2c3e8077e6f1e\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/286e97ec0113ea8242b41ac222e2c3e8077e6f1e\"\n },\n {\n \"path\": \"CHANGELOG.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"070a5d4f0eacd2dc0be81ae8996f8982de43046e\",\n \"size\": 2113,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/070a5d4f0eacd2dc0be81ae8996f8982de43046e\"\n },\n {\n \"path\": \"CODE_OF_CONDUCT.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"92bc7565ff0ee145a0041b5179a820f14f39ab22\",\n \"size\": 3355,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/92bc7565ff0ee145a0041b5179a820f14f39ab22\"\n },\n {\n \"path\": \"CONTRIBUTING.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"8552aa241254a61258e1ff9666ab36f32fb1e3b9\",\n \"size\": 3548,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/8552aa241254a61258e1ff9666ab36f32fb1e3b9\"\n },\n {\n \"path\": \"LICENSE\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"42d85938357b49977c126ca03b199129082d4fb8\",\n \"size\": 1091,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/42d85938357b49977c126ca03b199129082d4fb8\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"19df50a78654c8d757ca7f38447aa3d09c7abcce\",\n \"size\": 3698,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/19df50a78654c8d757ca7f38447aa3d09c7abcce\"\n },\n {\n \"path\": \"backend\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\"\n },\n {\n \"path\": \"config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"58afd573bbb69fcca000efd0f5d90b93c93a98dd\",\n \"size\": 853,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/58afd573bbb69fcca000efd0f5d90b93c93a98dd\"\n },\n {\n \"path\": \"content\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639\"\n },\n {\n \"path\": \"flow-typed\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"86c32fd6c3118be5e0dbbb231a834447357236c6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/86c32fd6c3118be5e0dbbb231a834447357236c6\"\n },\n {\n \"path\": \"flow\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"0af45ad00d155c8d8c7407d913ff85278244c9ce\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/0af45ad00d155c8d8c7407d913ff85278244c9ce\"\n },\n {\n \"path\": \"gatsby-browser.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9bd2c9dce175f04980e91cd9dc295a299e3cdb80\",\n \"size\": 90,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9bd2c9dce175f04980e91cd9dc295a299e3cdb80\"\n },\n {\n \"path\": \"gatsby-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"353a109dad62e3f25bf9f5e6a2167f21a6c8b459\",\n \"size\": 7228,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/353a109dad62e3f25bf9f5e6a2167f21a6c8b459\"\n },\n {\n \"path\": \"gatsby-node.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14a207883c2093d2cc071bc5a464e165bcc1fead\",\n \"size\": 409,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14a207883c2093d2cc071bc5a464e165bcc1fead\"\n },\n {\n \"path\": \"gatsby\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4f23c06cd1740bf78304d2c0b29bf6bfdf427981\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4f23c06cd1740bf78304d2c0b29bf6bfdf427981\"\n },\n {\n \"path\": \"jest\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\"\n },\n {\n \"path\": \"netlify.toml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"599b99cc5700404fde316a7ede829776f23e7d45\",\n \"size\": 137,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/599b99cc5700404fde316a7ede829776f23e7d45\"\n },\n {\n \"path\": \"package.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9d777616438b90a18f1a4ebfd5f114b4c06c6f17\",\n \"size\": 6855,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9d777616438b90a18f1a4ebfd5f114b4c06c6f17\"\n },\n {\n \"path\": \"postcss-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d216501e9b351a72e00ba0b7459a6500e27e7da2\",\n \"size\": 703,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d216501e9b351a72e00ba0b7459a6500e27e7da2\"\n },\n {\n \"path\": \"renovate.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"dcc309398785698b8870545c32051a3d72dd8271\",\n \"size\": 460,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/dcc309398785698b8870545c32051a3d72dd8271\"\n },\n {\n \"path\": \"serverless-scripts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ee3701f2fbfc7196ba340f6481d1387d20527898\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ee3701f2fbfc7196ba340f6481d1387d20527898\"\n },\n {\n \"path\": \"serverless-single-page-app-plugin\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"08763fcfba643a06a452398517019bea4a5850ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/08763fcfba643a06a452398517019bea4a5850ba\"\n },\n {\n \"path\": \"serverless.yml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"20b22c5fad229f35d029bf6614d333d82fe8a987\",\n \"size\": 7803,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/20b22c5fad229f35d029bf6614d333d82fe8a987\"\n },\n {\n \"path\": \"src\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"8cdb35a88232c0f32f12f130c92c7cc55f97f471\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/8cdb35a88232c0f32f12f130c92c7cc55f97f471\"\n },\n {\n \"path\": \"static\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"53c6380a600a030d3722bff7ecde36f749fb6964\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/53c6380a600a030d3722bff7ecde36f749fb6964\"\n },\n {\n \"path\": \"utils\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"a592549c9f74db40b51efefcda2fd76810405f27\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/a592549c9f74db40b51efefcda2fd76810405f27\"\n },\n {\n \"path\": \"yarn.lock\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"475c9c1924ca752a0686303e2fdeb7b13ad75f57\",\n \"size\": 793903,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/475c9c1924ca752a0686303e2fdeb7b13ad75f57\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"message\":\"Create Post “1970-01-01-first-title”\",\"tree\":\"daee8d5d15d144e8779955166a2afeccde2770e1\",\"parents\":[\"726172deae99c8a2cea4c71e734a02a793d4d9e5\"]}", + "method": "POST", + "url": "/repos/owner/repo/git/commits?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:29:58 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "1504", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4958", + "X-RateLimit-Reset": "1568125713", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"46960cc344d5eb6638fc7cee2f747265\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/commits/6a79e7424ce40aec9545bddce160bea7807aa5fe", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A72:244EB:1778132:1C7EB2D:5D77A556", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"6a79e7424ce40aec9545bddce160bea7807aa5fe\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NTY3MDExOjZhNzllNzQyNGNlNDBhZWM5NTQ1YmRkY2UxNjBiZWE3ODA3YWE1ZmU=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/6a79e7424ce40aec9545bddce160bea7807aa5fe\",\n \"html_url\": \"https://github.com/owner/repo/commit/6a79e7424ce40aec9545bddce160bea7807aa5fe\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T13:29:58Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T13:29:58Z\"\n },\n \"tree\": {\n \"sha\": \"daee8d5d15d144e8779955166a2afeccde2770e1\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/daee8d5d15d144e8779955166a2afeccde2770e1\"\n },\n \"message\": \"Create Post “1970-01-01-first-title”\",\n \"parents\": [\n {\n \"sha\": \"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"html_url\": \"https://github.com/owner/repo/commit/726172deae99c8a2cea4c71e734a02a793d4d9e5\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "status": 201 + }, + { + "body": "{\"operationName\":\"createBranchAndPullRequest\",\"variables\":{\"createRefInput\":{\"name\":\"refs/heads/cms/1970-01-01-first-title\",\"oid\":\"6a79e7424ce40aec9545bddce160bea7807aa5fe\",\"repositoryId\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\"},\"createPullRequestInput\":{\"baseRefName\":\"master\",\"body\":\"Automatically generated by Netlify CMS\",\"title\":\"Create Post “1970-01-01-first-title”\",\"headRefName\":\"cms/1970-01-01-first-title\",\"repositoryId\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\"}},\"query\":\"mutation createBranchAndPullRequest($createRefInput: CreateRefInput!, $createPullRequestInput: CreatePullRequestInput!) {\\n createRef(input: $createRefInput) {\\n branch: ref {\\n ...BranchParts\\n __typename\\n }\\n __typename\\n }\\n createPullRequest(input: $createPullRequestInput) {\\n clientMutationId\\n pullRequest {\\n ...PullRequestParts\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment BranchParts on Ref {\\n commit: target {\\n ...ObjectParts\\n __typename\\n }\\n id\\n name\\n repository {\\n ...RepositoryParts\\n __typename\\n }\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment PullRequestParts on PullRequest {\\n id\\n baseRefName\\n body\\n headRefName\\n headRefOid\\n number\\n state\\n title\\n merged_at: mergedAt\\n repository {\\n ...RepositoryParts\\n __typename\\n }\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:30:00 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4949", + "X-RateLimit-Reset": "1568125723", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7A75:244EB:1778280:1C7ECC8:5D77A556", + "content-length": "952", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"createRef\":{\"branch\":{\"commit\":{\"id\":\"MDY6Q29tbWl0MjA3NTY3MDExOjZhNzllNzQyNGNlNDBhZWM5NTQ1YmRkY2UxNjBiZWE3ODA3YWE1ZmU=\",\"sha\":\"6a79e7424ce40aec9545bddce160bea7807aa5fe\",\"__typename\":\"Commit\"},\"id\":\"MDM6UmVmMjA3NTY3MDExOmNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxl\",\"name\":\"cms/1970-01-01-first-title\",\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\"},\"__typename\":\"Ref\"},\"__typename\":\"CreateRefPayload\"},\"createPullRequest\":{\"clientMutationId\":null,\"pullRequest\":{\"id\":\"MDExOlB1bGxSZXF1ZXN0MzE1OTk1NTA3\",\"baseRefName\":\"master\",\"body\":\"Automatically generated by Netlify CMS\",\"headRefName\":\"cms/1970-01-01-first-title\",\"headRefOid\":\"6a79e7424ce40aec9545bddce160bea7807aa5fe\",\"number\":2,\"state\":\"OPEN\",\"title\":\"Create Post “1970-01-01-first-title”\",\"merged_at\":null,\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\"},\"__typename\":\"PullRequest\"},\"__typename\":\"CreatePullRequestPayload\"}}}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:30:01 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4957", + "X-RateLimit-Reset": "1568125713", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"b41753e25d19c7f32e4a74a413cf20d3\"", + "Last-Modified": "Tue, 10 Sep 2019 13:28:36 GMT", + "X-Poll-Interval": "300", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A78:1510F:11C0D55:1589381:5D77A558", + "content-length": "484", + "connection": "keep-alive" + }, + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NTY3MDExOnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"36bbc1502db1a806ab75d6308f0862e6d17fe4b7\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/36bbc1502db1a806ab75d6308f0862e6d17fe4b7\"\n }\n}\n", + "status": 200 + }, + { + "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjIsImhlYWQiOiI2YTc5ZTc0MjRjZTQwYWVjOTU0NWJkZGNlMTYwYmVhNzgwN2FhNWZlIn0sInVzZXIiOiJvd25lciIsInN0YXR1cyI6ImRyYWZ0IiwiYnJhbmNoIjoiY21zLzE5NzAtMDEtMDEtZmlyc3QtdGl0bGUiLCJjb2xsZWN0aW9uIjoicG9zdHMiLCJjb21taXRNZXNzYWdlIjoiQ3JlYXRlIFBvc3Qg4oCcMTk3MC0wMS0wMS1maXJzdC10aXRsZeKAnSIsInRpdGxlIjoiZmlyc3QgdGl0bGUiLCJkZXNjcmlwdGlvbiI6ImZpcnN0IGRlc2NyaXB0aW9uIiwib2JqZWN0cyI6eyJlbnRyeSI6eyJwYXRoIjoiY29udGVudC9wb3N0cy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxlLm1kIiwic2hhIjoiYTA0MTI0NTgxNDg5MmUzZjczZjYzY2E1NDMzM2ZkYTY0OWI3ZmMwYiJ9LCJmaWxlcyI6W119LCJ0aW1lU3RhbXAiOiIxOTcwLTAxLTAxVDAwOjAwOjAwLjMwMFoifQ==\",\"encoding\":\"base64\"}", + "method": "POST", + "url": "/repos/owner/repo/git/blobs?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:30:02 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "207", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4956", + "X-RateLimit-Reset": "1568125713", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"88e5a691784ca8c19964e5336baf7f62\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/blobs/e4b2a7a1212574e62d92faa202ed42a117ee4678", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A7B:1510F:11C0E3A:15894B3:5D77A559", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"e4b2a7a1212574e62d92faa202ed42a117ee4678\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/e4b2a7a1212574e62d92faa202ed42a117ee4678\"\n}\n", + "status": 201 + }, + { + "body": "{\"operationName\":\"tree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"36bbc1502db1a806ab75d6308f0862e6d17fe4b7\"},\"query\":\"query tree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n tree: object(oid: $sha) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:30:02 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4948", + "X-RateLimit-Reset": "1568125723", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7A89:9D21:16AFC5E:1BA080C:5D77A55A", + "content-length": "260", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"tree\":{\"id\":\"MDY6Q29tbWl0MjA3NTY3MDExOjM2YmJjMTUwMmRiMWE4MDZhYjc1ZDYzMDhmMDg2MmU2ZDE3ZmU0Yjc=\",\"sha\":\"36bbc1502db1a806ab75d6308f0862e6d17fe4b7\",\"__typename\":\"Commit\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"commitTree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"36bbc1502db1a806ab75d6308f0862e6d17fe4b7\"},\"query\":\"query commitTree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n commit: object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n tree {\\n ...ObjectParts\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:30:03 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4947", + "X-RateLimit-Reset": "1568125723", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7A86:9D1E:48FA18:594675:5D77A55A", + "content-length": "698", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"commit\":{\"id\":\"MDY6Q29tbWl0MjA3NTY3MDExOjM2YmJjMTUwMmRiMWE4MDZhYjc1ZDYzMDhmMDg2MmU2ZDE3ZmU0Yjc=\",\"sha\":\"36bbc1502db1a806ab75d6308f0862e6d17fe4b7\",\"__typename\":\"Commit\",\"tree\":{\"id\":\"MDQ6VHJlZTIwNzU2NzAxMTpjY2VhYWM5NjNmNmNjNGY1NjRlMWViODgxZGY5Y2Y2NjRjOGYzNDU3\",\"sha\":\"cceaac963f6cc4f564e1eb881df9cf664c8f3457\",\"__typename\":\"Tree\",\"entries\":[{\"path\":\"1970-01-01-first-title.json\",\"sha\":\"5486c6b69c1678c7f19da5bc1617b9a663ff561d\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"README.md\",\"sha\":\"98787d1bd948850444433e91a43091a76c4eb455\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"}]}}}}}\n", + "status": 200 + }, + { + "body": "{\"base_tree\":\"36bbc1502db1a806ab75d6308f0862e6d17fe4b7\",\"tree\":[{\"path\":\"1970-01-01-first-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"e4b2a7a1212574e62d92faa202ed42a117ee4678\"}]}", + "method": "POST", + "url": "/repos/owner/repo/git/trees?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:30:05 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "895", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4955", + "X-RateLimit-Reset": "1568125713", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"0332e0b08c00ec731baf521e9b83165c\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/trees/0312fb9cff8d666aec14f7cf7746de4f18853d67", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A8A:15110:17EFBDD:1D117D4:5D77A55C", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"0312fb9cff8d666aec14f7cf7746de4f18853d67\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/0312fb9cff8d666aec14f7cf7746de4f18853d67\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e4b2a7a1212574e62d92faa202ed42a117ee4678\",\n \"size\": 462,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/e4b2a7a1212574e62d92faa202ed42a117ee4678\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"message\":\"Updating “1970-01-01-first-title” metadata\",\"tree\":\"0312fb9cff8d666aec14f7cf7746de4f18853d67\",\"parents\":[\"36bbc1502db1a806ab75d6308f0862e6d17fe4b7\"]}", + "method": "POST", + "url": "/repos/owner/repo/git/commits?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:30:06 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "1510", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4954", + "X-RateLimit-Reset": "1568125713", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"ebfb251bcef0dc653c2051325dc01e02\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/commits/cc57fdd09c49a8b4300e04b06b7515895f28f415", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A8C:244E7:113675E:14FF129:5D77A55D", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"cc57fdd09c49a8b4300e04b06b7515895f28f415\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NTY3MDExOmNjNTdmZGQwOWM0OWE4YjQzMDBlMDRiMDZiNzUxNTg5NWYyOGY0MTU=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/cc57fdd09c49a8b4300e04b06b7515895f28f415\",\n \"html_url\": \"https://github.com/owner/repo/commit/cc57fdd09c49a8b4300e04b06b7515895f28f415\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T13:30:06Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T13:30:06Z\"\n },\n \"tree\": {\n \"sha\": \"0312fb9cff8d666aec14f7cf7746de4f18853d67\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/0312fb9cff8d666aec14f7cf7746de4f18853d67\"\n },\n \"message\": \"Updating “1970-01-01-first-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"36bbc1502db1a806ab75d6308f0862e6d17fe4b7\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/36bbc1502db1a806ab75d6308f0862e6d17fe4b7\",\n \"html_url\": \"https://github.com/owner/repo/commit/36bbc1502db1a806ab75d6308f0862e6d17fe4b7\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "status": 201 + }, + { + "body": "{\"sha\":\"cc57fdd09c49a8b4300e04b06b7515895f28f415\",\"force\":false}", + "method": "PATCH", + "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:30:07 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": "1568125713", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"d082df3408056d26a405d6cdbbf854e9\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A8E:3ED7B:11F0634:15C8265:5D77A55E", + "content-length": "484", + "connection": "keep-alive" + }, + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NTY3MDExOnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"cc57fdd09c49a8b4300e04b06b7515895f28f415\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/cc57fdd09c49a8b4300e04b06b7515895f28f415\"\n }\n}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"unpublishedBranchFile\",\"variables\":{\"headOwner\":\"owner\",\"headRepoName\":\"repo\",\"headExpression\":\"cms/1970-01-01-first-title:content/posts/1970-01-01-first-title.md\",\"baseOwner\":\"owner\",\"baseRepoName\":\"repo\",\"baseExpression\":\"master:content/posts/1970-01-01-first-title.md\"},\"query\":\"query unpublishedBranchFile($headOwner: String!, $headRepoName: String!, $headExpression: String!, $baseOwner: String!, $baseRepoName: String!, $baseExpression: String!) {\\n head: repository(owner: $headOwner, name: $headRepoName) {\\n ...RepositoryParts\\n object(expression: $headExpression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n base: repository(owner: $baseOwner, name: $baseRepoName) {\\n ...RepositoryParts\\n object(expression: $baseExpression) {\\n ... on Blob {\\n id\\n oid\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:30:08 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4946", + "X-RateLimit-Reset": "1568125723", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7A90:2B19:A4BF54:C86DDD:5D77A55F", + "content-length": "496", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"head\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzU2NzAxMTphMDQxMjQ1ODE0ODkyZTNmNzNmNjNjYTU0MzMzZmRhNjQ5YjdmYzBi\",\"text\":\"---\\ntemplate: post\\ntitle: first title\\ndraft: true\\ndate: 1970-01-01T00:00:00.000Z\\ndescription: first description\\ncategory: first category\\ntags:\\n - tag1\\n---\\nfirst body\\n\",\"is_binary\":false,\"__typename\":\"Blob\"}},\"base\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"object\":null}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"statues\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"6a79e7424ce40aec9545bddce160bea7807aa5fe\"},\"query\":\"query statues($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n status {\\n id\\n contexts {\\n id\\n context\\n state\\n target_url: targetUrl\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:30:09 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4945", + "X-RateLimit-Reset": "1568125723", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7A92:3ED76:45E4AC:55A508:5D77A561", + "content-length": "276", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDY6Q29tbWl0MjA3NTY3MDExOjZhNzllNzQyNGNlNDBhZWM5NTQ1YmRkY2UxNjBiZWE3ODA3YWE1ZmU=\",\"sha\":\"6a79e7424ce40aec9545bddce160bea7807aa5fe\",\"__typename\":\"Commit\",\"status\":null}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"unpublishedPrBranches\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\"},\"query\":\"query unpublishedPrBranches($owner: String!, $name: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n refs(refPrefix: \\\"refs/heads/cms/\\\", last: 50) {\\n nodes {\\n id\\n associatedPullRequests(last: 50, states: OPEN) {\\n nodes {\\n id\\n headRef {\\n id\\n name\\n prefix\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:30:09 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4944", + "X-RateLimit-Reset": "1568125723", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7A94:2B24:1732BCA:1C31C18:5D77A561", + "content-length": "518", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"refs\":{\"nodes\":[{\"id\":\"MDM6UmVmMjA3NTY3MDExOjE5NzAtMDEtMDEtZmlyc3QtdGl0bGU=\",\"associatedPullRequests\":{\"nodes\":[{\"id\":\"MDExOlB1bGxSZXF1ZXN0MzE1OTk1NTA3\",\"headRef\":{\"id\":\"MDM6UmVmMjA3NTY3MDExOmNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxl\",\"name\":\"cms/1970-01-01-first-title\",\"prefix\":\"refs/heads/\",\"__typename\":\"Ref\"},\"__typename\":\"PullRequest\"}],\"__typename\":\"PullRequestConnection\"},\"__typename\":\"Ref\"}],\"__typename\":\"RefConnection\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"unpublishedBranchFile\",\"variables\":{\"headOwner\":\"owner\",\"headRepoName\":\"repo\",\"headExpression\":\"cms/1970-01-01-first-title:content/posts/1970-01-01-first-title.md\",\"baseOwner\":\"owner\",\"baseRepoName\":\"repo\",\"baseExpression\":\"master:content/posts/1970-01-01-first-title.md\"},\"query\":\"query unpublishedBranchFile($headOwner: String!, $headRepoName: String!, $headExpression: String!, $baseOwner: String!, $baseRepoName: String!, $baseExpression: String!) {\\n head: repository(owner: $headOwner, name: $headRepoName) {\\n ...RepositoryParts\\n object(expression: $headExpression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n base: repository(owner: $baseOwner, name: $baseRepoName) {\\n ...RepositoryParts\\n object(expression: $baseExpression) {\\n ... on Blob {\\n id\\n oid\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:30:10 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4943", + "X-RateLimit-Reset": "1568125723", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7A98:3ED76:45E521:55A595:5D77A562", + "content-length": "496", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"head\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzU2NzAxMTphMDQxMjQ1ODE0ODkyZTNmNzNmNjNjYTU0MzMzZmRhNjQ5YjdmYzBi\",\"text\":\"---\\ntemplate: post\\ntitle: first title\\ndraft: true\\ndate: 1970-01-01T00:00:00.000Z\\ndescription: first description\\ncategory: first category\\ntags:\\n - tag1\\n---\\nfirst body\\n\",\"is_binary\":false,\"__typename\":\"Blob\"}},\"base\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"object\":null}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"statues\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"6a79e7424ce40aec9545bddce160bea7807aa5fe\"},\"query\":\"query statues($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n status {\\n id\\n contexts {\\n id\\n context\\n state\\n target_url: targetUrl\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:30:11 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4942", + "X-RateLimit-Reset": "1568125723", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7A99:2B1F:11B8690:159D891:5D77A563", + "content-length": "276", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDY6Q29tbWl0MjA3NTY3MDExOjZhNzllNzQyNGNlNDBhZWM5NTQ1YmRkY2UxNjBiZWE3ODA3YWE1ZmU=\",\"sha\":\"6a79e7424ce40aec9545bddce160bea7807aa5fe\",\"__typename\":\"Commit\",\"status\":null}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"unpublishedBranchFile\",\"variables\":{\"headOwner\":\"owner\",\"headRepoName\":\"repo\",\"headExpression\":\"cms/1970-01-01-first-title:content/posts/1970-01-01-first-title.md\",\"baseOwner\":\"owner\",\"baseRepoName\":\"repo\",\"baseExpression\":\"master:content/posts/1970-01-01-first-title.md\"},\"query\":\"query unpublishedBranchFile($headOwner: String!, $headRepoName: String!, $headExpression: String!, $baseOwner: String!, $baseRepoName: String!, $baseExpression: String!) {\\n head: repository(owner: $headOwner, name: $headRepoName) {\\n ...RepositoryParts\\n object(expression: $headExpression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n base: repository(owner: $baseOwner, name: $baseRepoName) {\\n ...RepositoryParts\\n object(expression: $baseExpression) {\\n ... on Blob {\\n id\\n oid\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:30:11 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4941", + "X-RateLimit-Reset": "1568125723", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7A9A:1510F:11C1C66:158A6AE:5D77A563", + "content-length": "496", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"head\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzU2NzAxMTphMDQxMjQ1ODE0ODkyZTNmNzNmNjNjYTU0MzMzZmRhNjQ5YjdmYzBi\",\"text\":\"---\\ntemplate: post\\ntitle: first title\\ndraft: true\\ndate: 1970-01-01T00:00:00.000Z\\ndescription: first description\\ncategory: first category\\ntags:\\n - tag1\\n---\\nfirst body\\n\",\"is_binary\":false,\"__typename\":\"Blob\"}},\"base\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"object\":null}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"statues\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"6a79e7424ce40aec9545bddce160bea7807aa5fe\"},\"query\":\"query statues($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n status {\\n id\\n contexts {\\n id\\n context\\n state\\n target_url: targetUrl\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:30:12 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4940", + "X-RateLimit-Reset": "1568125723", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7A9C:244EB:1779961:1C809A4:5D77A564", + "content-length": "276", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDY6Q29tbWl0MjA3NTY3MDExOjZhNzllNzQyNGNlNDBhZWM5NTQ1YmRkY2UxNjBiZWE3ODA3YWE1ZmU=\",\"sha\":\"6a79e7424ce40aec9545bddce160bea7807aa5fe\",\"__typename\":\"Commit\",\"status\":null}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"statues\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"6a79e7424ce40aec9545bddce160bea7807aa5fe\"},\"query\":\"query statues($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n status {\\n id\\n contexts {\\n id\\n context\\n state\\n target_url: targetUrl\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:30:15 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4939", + "X-RateLimit-Reset": "1568125723", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7AA2:B4DE:1184071:1550776:5D77A566", + "content-length": "276", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDY6Q29tbWl0MjA3NTY3MDExOjZhNzllNzQyNGNlNDBhZWM5NTQ1YmRkY2UxNjBiZWE3ODA3YWE1ZmU=\",\"sha\":\"6a79e7424ce40aec9545bddce160bea7807aa5fe\",\"__typename\":\"Commit\",\"status\":null}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"statues\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"6a79e7424ce40aec9545bddce160bea7807aa5fe\"},\"query\":\"query statues($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n status {\\n id\\n contexts {\\n id\\n context\\n state\\n target_url: targetUrl\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:30:17 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4938", + "X-RateLimit-Reset": "1568125723", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7AA4:9D21:16B13EA:1BA25A0:5D77A569", + "content-length": "276", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDY6Q29tbWl0MjA3NTY3MDExOjZhNzllNzQyNGNlNDBhZWM5NTQ1YmRkY2UxNjBiZWE3ODA3YWE1ZmU=\",\"sha\":\"6a79e7424ce40aec9545bddce160bea7807aa5fe\",\"__typename\":\"Commit\",\"status\":null}}}}\n", + "status": 200 + }, + { + "body": "{\"content\":\"LS0tCnRlbXBsYXRlOiBwb3N0CnRpdGxlOiBzZWNvbmQgdGl0bGUKZHJhZnQ6IHRydWUKZGF0ZTogMTk3MC0wMS0wMVQwMDowMDowMC4wMDBaCmRlc2NyaXB0aW9uOiBzZWNvbmQgZGVzY3JpcHRpb24KY2F0ZWdvcnk6IHNlY29uZCBjYXRlZ29yeQp0YWdzOgogIC0gdGFnMgotLS0Kc2Vjb25kIGJvZHkK\",\"encoding\":\"base64\"}", + "method": "POST", + "url": "/repos/owner/repo/git/blobs?ts=600", + "headers": { + "Date": "Tue, 10 Sep 2019 13:30:17 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "207", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4952", + "X-RateLimit-Reset": "1568125713", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"e9b694c23a77cbca55132e6388228b2f\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/blobs/3e5676c8285a456a6604603042b5428883f50417", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7AA6:15110:17F136D:1D134C9:5D77A569", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"3e5676c8285a456a6604603042b5428883f50417\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/3e5676c8285a456a6604603042b5428883f50417\"\n}\n", + "status": 201 + }, + { + "body": "{\"operationName\":\"tree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"6a79e7424ce40aec9545bddce160bea7807aa5fe\"},\"query\":\"query tree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n tree: object(oid: $sha) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:30:18 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4937", + "X-RateLimit-Reset": "1568125723", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7AAC:1510F:11C25DD:158B22F:5D77A56A", + "content-length": "260", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"tree\":{\"id\":\"MDY6Q29tbWl0MjA3NTY3MDExOjZhNzllNzQyNGNlNDBhZWM5NTQ1YmRkY2UxNjBiZWE3ODA3YWE1ZmU=\",\"sha\":\"6a79e7424ce40aec9545bddce160bea7807aa5fe\",\"__typename\":\"Commit\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"commitTree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"6a79e7424ce40aec9545bddce160bea7807aa5fe\"},\"query\":\"query commitTree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n commit: object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n tree {\\n ...ObjectParts\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:30:18 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4936", + "X-RateLimit-Reset": "1568125723", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7AAA:244EB:177A317:1C815BB:5D77A56A", + "content-length": "5040", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"commit\":{\"id\":\"MDY6Q29tbWl0MjA3NTY3MDExOjZhNzllNzQyNGNlNDBhZWM5NTQ1YmRkY2UxNjBiZWE3ODA3YWE1ZmU=\",\"sha\":\"6a79e7424ce40aec9545bddce160bea7807aa5fe\",\"__typename\":\"Commit\",\"tree\":{\"id\":\"MDQ6VHJlZTIwNzU2NzAxMTpkYWVlOGQ1ZDE1ZDE0NGU4Nzc5OTU1MTY2YTJhZmVjY2RlMjc3MGUx\",\"sha\":\"daee8d5d15d144e8779955166a2afeccde2770e1\",\"__typename\":\"Tree\",\"entries\":[{\"path\":\".circleci\",\"sha\":\"e5e9af3301cac61f120b8e4d40b1733c7a45685a\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\".eslintignore\",\"sha\":\"80b4531b026d19f8fa589efd122e76199d23f967\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".eslintrc.js\",\"sha\":\"370684994aaed5b858da3a006f48cfa57e88fd27\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".flowconfig\",\"sha\":\"14aa2ac4cc0e15223ad98630a6f1325fc81f8043\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".gitattributes\",\"sha\":\"10a369ddf4f603337cabc6f21646508323941ce1\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".github\",\"sha\":\"4ebeece548b52b20af59622354530a6d33b50b43\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\".gitignore\",\"sha\":\"c071ba35b0e49899bab6d610a68eef667dbbf157\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".prettierignore\",\"sha\":\"393f050e123d998cf8c8b362ff95cc8ac4d250e5\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".prettierrc\",\"sha\":\"e52ad05bb13b084d7949dd76e1b2517455162150\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".stylelintrc.json\",\"sha\":\"4b4c9698d10d756f5faa025659b86375428ed0a7\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".vscode\",\"sha\":\"286e97ec0113ea8242b41ac222e2c3e8077e6f1e\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"CHANGELOG.md\",\"sha\":\"070a5d4f0eacd2dc0be81ae8996f8982de43046e\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"CODE_OF_CONDUCT.md\",\"sha\":\"92bc7565ff0ee145a0041b5179a820f14f39ab22\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"CONTRIBUTING.md\",\"sha\":\"8552aa241254a61258e1ff9666ab36f32fb1e3b9\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"LICENSE\",\"sha\":\"42d85938357b49977c126ca03b199129082d4fb8\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"README.md\",\"sha\":\"19df50a78654c8d757ca7f38447aa3d09c7abcce\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"backend\",\"sha\":\"b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"config.js\",\"sha\":\"58afd573bbb69fcca000efd0f5d90b93c93a98dd\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"content\",\"sha\":\"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"flow-typed\",\"sha\":\"86c32fd6c3118be5e0dbbb231a834447357236c6\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"flow\",\"sha\":\"0af45ad00d155c8d8c7407d913ff85278244c9ce\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"gatsby-browser.js\",\"sha\":\"9bd2c9dce175f04980e91cd9dc295a299e3cdb80\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"gatsby-config.js\",\"sha\":\"353a109dad62e3f25bf9f5e6a2167f21a6c8b459\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"gatsby-node.js\",\"sha\":\"14a207883c2093d2cc071bc5a464e165bcc1fead\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"gatsby\",\"sha\":\"4f23c06cd1740bf78304d2c0b29bf6bfdf427981\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"jest\",\"sha\":\"5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"netlify.toml\",\"sha\":\"599b99cc5700404fde316a7ede829776f23e7d45\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"package.json\",\"sha\":\"9d777616438b90a18f1a4ebfd5f114b4c06c6f17\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"postcss-config.js\",\"sha\":\"d216501e9b351a72e00ba0b7459a6500e27e7da2\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"renovate.json\",\"sha\":\"dcc309398785698b8870545c32051a3d72dd8271\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"serverless-scripts\",\"sha\":\"ee3701f2fbfc7196ba340f6481d1387d20527898\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"serverless-single-page-app-plugin\",\"sha\":\"08763fcfba643a06a452398517019bea4a5850ba\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"serverless.yml\",\"sha\":\"20b22c5fad229f35d029bf6614d333d82fe8a987\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"src\",\"sha\":\"8cdb35a88232c0f32f12f130c92c7cc55f97f471\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"static\",\"sha\":\"53c6380a600a030d3722bff7ecde36f749fb6964\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"utils\",\"sha\":\"a592549c9f74db40b51efefcda2fd76810405f27\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"yarn.lock\",\"sha\":\"475c9c1924ca752a0686303e2fdeb7b13ad75f57\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"}]}}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"statues\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"6a79e7424ce40aec9545bddce160bea7807aa5fe\"},\"query\":\"query statues($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n status {\\n id\\n contexts {\\n id\\n context\\n state\\n target_url: targetUrl\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:30:18 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4935", + "X-RateLimit-Reset": "1568125723", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7AA9:2B19:A4C84D:C878F9:5D77A56A", + "content-length": "276", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDY6Q29tbWl0MjA3NTY3MDExOjZhNzllNzQyNGNlNDBhZWM5NTQ1YmRkY2UxNjBiZWE3ODA3YWE1ZmU=\",\"sha\":\"6a79e7424ce40aec9545bddce160bea7807aa5fe\",\"__typename\":\"Commit\",\"status\":null}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"commitTree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"93da0f3541510f5f9ec829a3cdc6e8147f611639\"},\"query\":\"query commitTree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n commit: object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n tree {\\n ...ObjectParts\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:30:19 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4933", + "X-RateLimit-Reset": "1568125723", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7AAE:B4E0:1628E6E:1AF7095:5D77A56A", + "content-length": "256", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"commit\":{\"id\":\"MDQ6VHJlZTIwNzU2NzAxMTo5M2RhMGYzNTQxNTEwZjVmOWVjODI5YTNjZGM2ZTgxNDdmNjExNjM5\",\"sha\":\"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\"__typename\":\"Tree\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"tree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"93da0f3541510f5f9ec829a3cdc6e8147f611639\"},\"query\":\"query tree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n tree: object(oid: $sha) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:30:19 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4934", + "X-RateLimit-Reset": "1568125723", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7AB0:B4DA:4FB225:61387B:5D77A56A", + "content-length": "502", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"tree\":{\"id\":\"MDQ6VHJlZTIwNzU2NzAxMTo5M2RhMGYzNTQxNTEwZjVmOWVjODI5YTNjZGM2ZTgxNDdmNjExNjM5\",\"sha\":\"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\"__typename\":\"Tree\",\"entries\":[{\"path\":\"pages\",\"sha\":\"1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"posts\",\"sha\":\"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"}]}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"tree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\"},\"query\":\"query tree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n tree: object(oid: $sha) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:30:20 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4932", + "X-RateLimit-Reset": "1568125723", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7AB4:2B15:4BA7BE:5BC7D5:5D77A56B", + "content-length": "1213", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"tree\":{\"id\":\"MDQ6VHJlZTIwNzU2NzAxMTphYjVhMWJiZmUxNDg2ZWEwZTkzMTgyYjcxOWM5MjdkODRlZTFmMWJh\",\"sha\":\"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\"__typename\":\"Tree\",\"entries\":[{\"path\":\"1970-01-01-first-title.md\",\"sha\":\"a041245814892e3f73f63ca54333fda649b7fc0b\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\"sha\":\"6d51a38aed7139d2117724b1e307657b6ff2d043\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\"sha\":\"d0582dd245a3f408fb3fe2333bf01400007476e9\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"2016-02-02---A-Brief-History-of-Typography.md\",\"sha\":\"0eea554365f002d0f1572af9a58522d335a794d5\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"2017-18-08---The-Birth-of-Movable-Type.md\",\"sha\":\"44f78c474d04273185a95821426f75affc9b0044\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\"sha\":\"a532f0a9445cdf90a19c6812cff89d1674991774\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"}]}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"commitTree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\"},\"query\":\"query commitTree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n commit: object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n tree {\\n ...ObjectParts\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:30:20 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4931", + "X-RateLimit-Reset": "1568125723", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7AB2:2B1F:11B918E:159E62D:5D77A56B", + "content-length": "256", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"commit\":{\"id\":\"MDQ6VHJlZTIwNzU2NzAxMTphYjVhMWJiZmUxNDg2ZWEwZTkzMTgyYjcxOWM5MjdkODRlZTFmMWJh\",\"sha\":\"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\"__typename\":\"Tree\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"statues\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"6a79e7424ce40aec9545bddce160bea7807aa5fe\"},\"query\":\"query statues($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n status {\\n id\\n contexts {\\n id\\n context\\n state\\n target_url: targetUrl\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:30:20 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4930", + "X-RateLimit-Reset": "1568125723", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7AB6:3ED7B:11F16E7:15C9727:5D77A56C", + "content-length": "276", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDY6Q29tbWl0MjA3NTY3MDExOjZhNzllNzQyNGNlNDBhZWM5NTQ1YmRkY2UxNjBiZWE3ODA3YWE1ZmU=\",\"sha\":\"6a79e7424ce40aec9545bddce160bea7807aa5fe\",\"__typename\":\"Commit\",\"status\":null}}}}\n", + "status": 200 + }, + { + "body": "{\"base_tree\":\"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\"tree\":[{\"path\":\"1970-01-01-first-title.md\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"3e5676c8285a456a6604603042b5428883f50417\"}]}", + "method": "POST", + "url": "/repos/owner/repo/git/trees?ts=600", + "headers": { + "Date": "Tue, 10 Sep 2019 13:30:21 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "2362", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4951", + "X-RateLimit-Reset": "1568125713", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"040a2c25412a1d67a1f78ac744ba4c63\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/trees/7db8b5bca921590c7c398d029d9172111750f5fc", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7AB9:244E1:4F74CA:5FC99C:5D77A56C", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"7db8b5bca921590c7c398d029d9172111750f5fc\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/7db8b5bca921590c7c398d029d9172111750f5fc\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"3e5676c8285a456a6604603042b5428883f50417\",\n \"size\": 171,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/3e5676c8285a456a6604603042b5428883f50417\"\n },\n {\n \"path\": \"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"size\": 1707,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\"\n },\n {\n \"path\": \"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"size\": 2565,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\"\n },\n {\n \"path\": \"2016-02-02---A-Brief-History-of-Typography.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"0eea554365f002d0f1572af9a58522d335a794d5\",\n \"size\": 2786,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\"\n },\n {\n \"path\": \"2017-18-08---The-Birth-of-Movable-Type.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"44f78c474d04273185a95821426f75affc9b0044\",\n \"size\": 16071,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\"\n },\n {\n \"path\": \"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"size\": 7465,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"base_tree\":\"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\"tree\":[{\"path\":\"posts\",\"mode\":\"040000\",\"type\":\"tree\",\"sha\":\"7db8b5bca921590c7c398d029d9172111750f5fc\",\"parentSha\":\"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\"}]}", + "method": "POST", + "url": "/repos/owner/repo/git/trees?ts=600", + "headers": { + "Date": "Tue, 10 Sep 2019 13:30:21 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "831", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4950", + "X-RateLimit-Reset": "1568125713", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"ea8ded0e03a06767ec521ba51c6081c4\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/trees/4663bc351c2b79f066f9434722d865f8a0fc88cd", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7ABB:1510F:11C2A68:158B7AD:5D77A56D", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"4663bc351c2b79f066f9434722d865f8a0fc88cd\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4663bc351c2b79f066f9434722d865f8a0fc88cd\",\n \"tree\": [\n {\n \"path\": \"pages\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\"\n },\n {\n \"path\": \"posts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"7db8b5bca921590c7c398d029d9172111750f5fc\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/7db8b5bca921590c7c398d029d9172111750f5fc\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"base_tree\":\"6a79e7424ce40aec9545bddce160bea7807aa5fe\",\"tree\":[{\"path\":\"content\",\"mode\":\"040000\",\"type\":\"tree\",\"sha\":\"4663bc351c2b79f066f9434722d865f8a0fc88cd\",\"parentSha\":\"93da0f3541510f5f9ec829a3cdc6e8147f611639\"}]}", + "method": "POST", + "url": "/repos/owner/repo/git/trees?ts=600", + "headers": { + "Date": "Tue, 10 Sep 2019 13:30:22 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "11769", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4949", + "X-RateLimit-Reset": "1568125713", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"ff4752ee2351f8217d02871b32a0db40\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/trees/9011d70a132ecce386da7098e3ca594bbb772623", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7ABC:B4E0:1629421:1AF777A:5D77A56E", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"9011d70a132ecce386da7098e3ca594bbb772623\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/9011d70a132ecce386da7098e3ca594bbb772623\",\n \"tree\": [\n {\n \"path\": \".circleci\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"e5e9af3301cac61f120b8e4d40b1733c7a45685a\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/e5e9af3301cac61f120b8e4d40b1733c7a45685a\"\n },\n {\n \"path\": \".eslintignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"80b4531b026d19f8fa589efd122e76199d23f967\",\n \"size\": 39,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/80b4531b026d19f8fa589efd122e76199d23f967\"\n },\n {\n \"path\": \".eslintrc.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"370684994aaed5b858da3a006f48cfa57e88fd27\",\n \"size\": 414,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/370684994aaed5b858da3a006f48cfa57e88fd27\"\n },\n {\n \"path\": \".flowconfig\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14aa2ac4cc0e15223ad98630a6f1325fc81f8043\",\n \"size\": 283,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14aa2ac4cc0e15223ad98630a6f1325fc81f8043\"\n },\n {\n \"path\": \".gitattributes\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"10a369ddf4f603337cabc6f21646508323941ce1\",\n \"size\": 135,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/10a369ddf4f603337cabc6f21646508323941ce1\"\n },\n {\n \"path\": \".github\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4ebeece548b52b20af59622354530a6d33b50b43\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4ebeece548b52b20af59622354530a6d33b50b43\"\n },\n {\n \"path\": \".gitignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"c071ba35b0e49899bab6d610a68eef667dbbf157\",\n \"size\": 169,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/c071ba35b0e49899bab6d610a68eef667dbbf157\"\n },\n {\n \"path\": \".prettierignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"393f050e123d998cf8c8b362ff95cc8ac4d250e5\",\n \"size\": 45,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/393f050e123d998cf8c8b362ff95cc8ac4d250e5\"\n },\n {\n \"path\": \".prettierrc\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e52ad05bb13b084d7949dd76e1b2517455162150\",\n \"size\": 223,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/e52ad05bb13b084d7949dd76e1b2517455162150\"\n },\n {\n \"path\": \".stylelintrc.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"4b4c9698d10d756f5faa025659b86375428ed0a7\",\n \"size\": 718,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/4b4c9698d10d756f5faa025659b86375428ed0a7\"\n },\n {\n \"path\": \".vscode\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"286e97ec0113ea8242b41ac222e2c3e8077e6f1e\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/286e97ec0113ea8242b41ac222e2c3e8077e6f1e\"\n },\n {\n \"path\": \"CHANGELOG.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"070a5d4f0eacd2dc0be81ae8996f8982de43046e\",\n \"size\": 2113,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/070a5d4f0eacd2dc0be81ae8996f8982de43046e\"\n },\n {\n \"path\": \"CODE_OF_CONDUCT.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"92bc7565ff0ee145a0041b5179a820f14f39ab22\",\n \"size\": 3355,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/92bc7565ff0ee145a0041b5179a820f14f39ab22\"\n },\n {\n \"path\": \"CONTRIBUTING.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"8552aa241254a61258e1ff9666ab36f32fb1e3b9\",\n \"size\": 3548,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/8552aa241254a61258e1ff9666ab36f32fb1e3b9\"\n },\n {\n \"path\": \"LICENSE\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"42d85938357b49977c126ca03b199129082d4fb8\",\n \"size\": 1091,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/42d85938357b49977c126ca03b199129082d4fb8\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"19df50a78654c8d757ca7f38447aa3d09c7abcce\",\n \"size\": 3698,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/19df50a78654c8d757ca7f38447aa3d09c7abcce\"\n },\n {\n \"path\": \"backend\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\"\n },\n {\n \"path\": \"config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"58afd573bbb69fcca000efd0f5d90b93c93a98dd\",\n \"size\": 853,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/58afd573bbb69fcca000efd0f5d90b93c93a98dd\"\n },\n {\n \"path\": \"content\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4663bc351c2b79f066f9434722d865f8a0fc88cd\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4663bc351c2b79f066f9434722d865f8a0fc88cd\"\n },\n {\n \"path\": \"flow-typed\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"86c32fd6c3118be5e0dbbb231a834447357236c6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/86c32fd6c3118be5e0dbbb231a834447357236c6\"\n },\n {\n \"path\": \"flow\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"0af45ad00d155c8d8c7407d913ff85278244c9ce\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/0af45ad00d155c8d8c7407d913ff85278244c9ce\"\n },\n {\n \"path\": \"gatsby-browser.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9bd2c9dce175f04980e91cd9dc295a299e3cdb80\",\n \"size\": 90,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9bd2c9dce175f04980e91cd9dc295a299e3cdb80\"\n },\n {\n \"path\": \"gatsby-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"353a109dad62e3f25bf9f5e6a2167f21a6c8b459\",\n \"size\": 7228,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/353a109dad62e3f25bf9f5e6a2167f21a6c8b459\"\n },\n {\n \"path\": \"gatsby-node.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14a207883c2093d2cc071bc5a464e165bcc1fead\",\n \"size\": 409,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14a207883c2093d2cc071bc5a464e165bcc1fead\"\n },\n {\n \"path\": \"gatsby\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4f23c06cd1740bf78304d2c0b29bf6bfdf427981\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4f23c06cd1740bf78304d2c0b29bf6bfdf427981\"\n },\n {\n \"path\": \"jest\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\"\n },\n {\n \"path\": \"netlify.toml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"599b99cc5700404fde316a7ede829776f23e7d45\",\n \"size\": 137,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/599b99cc5700404fde316a7ede829776f23e7d45\"\n },\n {\n \"path\": \"package.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9d777616438b90a18f1a4ebfd5f114b4c06c6f17\",\n \"size\": 6855,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9d777616438b90a18f1a4ebfd5f114b4c06c6f17\"\n },\n {\n \"path\": \"postcss-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d216501e9b351a72e00ba0b7459a6500e27e7da2\",\n \"size\": 703,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d216501e9b351a72e00ba0b7459a6500e27e7da2\"\n },\n {\n \"path\": \"renovate.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"dcc309398785698b8870545c32051a3d72dd8271\",\n \"size\": 460,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/dcc309398785698b8870545c32051a3d72dd8271\"\n },\n {\n \"path\": \"serverless-scripts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ee3701f2fbfc7196ba340f6481d1387d20527898\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ee3701f2fbfc7196ba340f6481d1387d20527898\"\n },\n {\n \"path\": \"serverless-single-page-app-plugin\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"08763fcfba643a06a452398517019bea4a5850ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/08763fcfba643a06a452398517019bea4a5850ba\"\n },\n {\n \"path\": \"serverless.yml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"20b22c5fad229f35d029bf6614d333d82fe8a987\",\n \"size\": 7803,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/20b22c5fad229f35d029bf6614d333d82fe8a987\"\n },\n {\n \"path\": \"src\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"8cdb35a88232c0f32f12f130c92c7cc55f97f471\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/8cdb35a88232c0f32f12f130c92c7cc55f97f471\"\n },\n {\n \"path\": \"static\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"53c6380a600a030d3722bff7ecde36f749fb6964\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/53c6380a600a030d3722bff7ecde36f749fb6964\"\n },\n {\n \"path\": \"utils\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"a592549c9f74db40b51efefcda2fd76810405f27\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/a592549c9f74db40b51efefcda2fd76810405f27\"\n },\n {\n \"path\": \"yarn.lock\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"475c9c1924ca752a0686303e2fdeb7b13ad75f57\",\n \"size\": 793903,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/475c9c1924ca752a0686303e2fdeb7b13ad75f57\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"operationName\":\"statues\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"6a79e7424ce40aec9545bddce160bea7807aa5fe\"},\"query\":\"query statues($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n status {\\n id\\n contexts {\\n id\\n context\\n state\\n target_url: targetUrl\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:30:23 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4929", + "X-RateLimit-Reset": "1568125723", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7AC1:3ED82:17EA22F:1D158FD:5D77A56F", + "content-length": "276", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDY6Q29tbWl0MjA3NTY3MDExOjZhNzllNzQyNGNlNDBhZWM5NTQ1YmRkY2UxNjBiZWE3ODA3YWE1ZmU=\",\"sha\":\"6a79e7424ce40aec9545bddce160bea7807aa5fe\",\"__typename\":\"Commit\",\"status\":null}}}}\n", + "status": 200 + }, + { + "body": "{\"message\":\"Update Post “1970-01-01-first-title”\",\"tree\":\"9011d70a132ecce386da7098e3ca594bbb772623\",\"parents\":[\"6a79e7424ce40aec9545bddce160bea7807aa5fe\"]}", + "method": "POST", + "url": "/repos/owner/repo/git/commits?ts=600", + "headers": { + "Date": "Tue, 10 Sep 2019 13:30:23 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "1504", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4948", + "X-RateLimit-Reset": "1568125713", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"ad9c6a42927f4d4de99f4280584bf895\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/commits/8a58a77a739d88c20c838328fd1b9a8a403599f8", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7ABE:2B1F:11B9580:159EB18:5D77A56E", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"8a58a77a739d88c20c838328fd1b9a8a403599f8\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NTY3MDExOjhhNThhNzdhNzM5ZDg4YzIwYzgzODMyOGZkMWI5YThhNDAzNTk5Zjg=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/8a58a77a739d88c20c838328fd1b9a8a403599f8\",\n \"html_url\": \"https://github.com/owner/repo/commit/8a58a77a739d88c20c838328fd1b9a8a403599f8\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T13:30:23Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T13:30:23Z\"\n },\n \"tree\": {\n \"sha\": \"9011d70a132ecce386da7098e3ca594bbb772623\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/9011d70a132ecce386da7098e3ca594bbb772623\"\n },\n \"message\": \"Update Post “1970-01-01-first-title”\",\n \"parents\": [\n {\n \"sha\": \"6a79e7424ce40aec9545bddce160bea7807aa5fe\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/6a79e7424ce40aec9545bddce160bea7807aa5fe\",\n \"html_url\": \"https://github.com/owner/repo/commit/6a79e7424ce40aec9545bddce160bea7807aa5fe\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "status": 201 + }, + { + "body": "{\"operationName\":\"pullRequestCommits\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"number\":2},\"query\":\"query pullRequestCommits($owner: String!, $name: String!, $number: Int!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n pullRequest(number: $number) {\\n id\\n commits(last: 100) {\\n nodes {\\n id\\n commit {\\n ...ObjectParts\\n parents(last: 100) {\\n nodes {\\n ...ObjectParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:30:24 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4928", + "X-RateLimit-Reset": "1568125723", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7AC4:2B1F:11B9694:159EC73:5D77A56F", + "content-length": "764", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"pullRequest\":{\"id\":\"MDExOlB1bGxSZXF1ZXN0MzE1OTk1NTA3\",\"commits\":{\"nodes\":[{\"id\":\"MDE3OlB1bGxSZXF1ZXN0Q29tbWl0MzE1OTk1NTA3OjZhNzllNzQyNGNlNDBhZWM5NTQ1YmRkY2UxNjBiZWE3ODA3YWE1ZmU=\",\"commit\":{\"id\":\"MDY6Q29tbWl0MjA3NTY3MDExOjZhNzllNzQyNGNlNDBhZWM5NTQ1YmRkY2UxNjBiZWE3ODA3YWE1ZmU=\",\"sha\":\"6a79e7424ce40aec9545bddce160bea7807aa5fe\",\"__typename\":\"Commit\",\"parents\":{\"nodes\":[{\"id\":\"MDY6Q29tbWl0MjA3NTY3MDExOjcyNjE3MmRlYWU5OWM4YTJjZWE0YzcxZTczNGEwMmE3OTNkNGQ5ZTU=\",\"sha\":\"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\"__typename\":\"Commit\"}],\"__typename\":\"CommitConnection\"}},\"__typename\":\"PullRequestCommit\"}],\"__typename\":\"PullRequestCommitConnection\"},\"__typename\":\"PullRequest\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"branch\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"qualifiedName\":\"refs/heads/master\"},\"query\":\"query branch($owner: String!, $name: String!, $qualifiedName: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n branch: ref(qualifiedName: $qualifiedName) {\\n ...BranchParts\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BranchParts on Ref {\\n commit: target {\\n ...ObjectParts\\n __typename\\n }\\n id\\n name\\n repository {\\n ...RepositoryParts\\n __typename\\n }\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:30:24 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4927", + "X-RateLimit-Reset": "1568125723", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7AC2:B4DA:4FB4DE:613BCE:5D77A56F", + "content-length": "429", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"branch\":{\"commit\":{\"id\":\"MDY6Q29tbWl0MjA3NTY3MDExOjcyNjE3MmRlYWU5OWM4YTJjZWE0YzcxZTczNGEwMmE3OTNkNGQ5ZTU=\",\"sha\":\"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\"__typename\":\"Commit\"},\"id\":\"MDM6UmVmMjA3NTY3MDExOm1hc3Rlcg==\",\"name\":\"master\",\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\"},\"__typename\":\"Ref\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"statues\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"6a79e7424ce40aec9545bddce160bea7807aa5fe\"},\"query\":\"query statues($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n status {\\n id\\n contexts {\\n id\\n context\\n state\\n target_url: targetUrl\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:30:24 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4926", + "X-RateLimit-Reset": "1568125723", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7AC6:2B24:173445E:1C33A6B:5D77A570", + "content-length": "276", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDY6Q29tbWl0MjA3NTY3MDExOjZhNzllNzQyNGNlNDBhZWM5NTQ1YmRkY2UxNjBiZWE3ODA3YWE1ZmU=\",\"sha\":\"6a79e7424ce40aec9545bddce160bea7807aa5fe\",\"__typename\":\"Commit\",\"status\":null}}}}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=600", + "headers": { + "Date": "Tue, 10 Sep 2019 13:30:24 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": "1568125713", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"d082df3408056d26a405d6cdbbf854e9\"", + "Last-Modified": "Tue, 10 Sep 2019 13:28:36 GMT", + "X-Poll-Interval": "300", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7AC8:B4E0:162982E:1AF7C65:5D77A570", + "content-length": "484", + "connection": "keep-alive" + }, + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NTY3MDExOnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"cc57fdd09c49a8b4300e04b06b7515895f28f415\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/cc57fdd09c49a8b4300e04b06b7515895f28f415\"\n }\n}\n", + "status": 200 + }, + { + "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjIsImhlYWQiOiI4YTU4YTc3YTczOWQ4OGMyMGM4MzgzMjhmZDFiOWE4YTQwMzU5OWY4In0sInVzZXIiOiJvd25lciIsInN0YXR1cyI6ImRyYWZ0IiwiYnJhbmNoIjoiY21zLzE5NzAtMDEtMDEtZmlyc3QtdGl0bGUiLCJjb2xsZWN0aW9uIjoicG9zdHMiLCJjb21taXRNZXNzYWdlIjoiQ3JlYXRlIFBvc3Qg4oCcMTk3MC0wMS0wMS1maXJzdC10aXRsZeKAnSIsInRpdGxlIjoiZmlyc3QgdGl0bGUiLCJkZXNjcmlwdGlvbiI6ImZpcnN0IGRlc2NyaXB0aW9uIiwib2JqZWN0cyI6eyJlbnRyeSI6eyJwYXRoIjoiY29udGVudC9wb3N0cy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxlLm1kIiwic2hhIjoiYTA0MTI0NTgxNDg5MmUzZjczZjYzY2E1NDMzM2ZkYTY0OWI3ZmMwYiJ9LCJmaWxlcyI6W119LCJ0aW1lU3RhbXAiOiIxOTcwLTAxLTAxVDAwOjAwOjAwLjYwMFoifQ==\",\"encoding\":\"base64\"}", + "method": "POST", + "url": "/repos/owner/repo/git/blobs?ts=600", + "headers": { + "Date": "Tue, 10 Sep 2019 13:30:25 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "207", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4946", + "X-RateLimit-Reset": "1568125713", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"9d027673d1425b567b0a276771dda5b3\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/blobs/b0bdc2ebfde22c5f4ad437035431dc3fa0ce8686", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7ACA:3ED77:A7003E:CA5259:5D77A571", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"b0bdc2ebfde22c5f4ad437035431dc3fa0ce8686\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/b0bdc2ebfde22c5f4ad437035431dc3fa0ce8686\"\n}\n", + "status": 201 + }, + { + "body": "{\"operationName\":\"tree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"cc57fdd09c49a8b4300e04b06b7515895f28f415\"},\"query\":\"query tree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n tree: object(oid: $sha) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:30:26 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4924", + "X-RateLimit-Reset": "1568125723", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7ACE:244EB:177AFE4:1C8252A:5D77A571", + "content-length": "260", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"tree\":{\"id\":\"MDY6Q29tbWl0MjA3NTY3MDExOmNjNTdmZGQwOWM0OWE4YjQzMDBlMDRiMDZiNzUxNTg5NWYyOGY0MTU=\",\"sha\":\"cc57fdd09c49a8b4300e04b06b7515895f28f415\",\"__typename\":\"Commit\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"commitTree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"cc57fdd09c49a8b4300e04b06b7515895f28f415\"},\"query\":\"query commitTree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n commit: object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n tree {\\n ...ObjectParts\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:30:26 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4925", + "X-RateLimit-Reset": "1568125723", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7ACC:B4DE:1184E2B:1551892:5D77A571", + "content-length": "698", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"commit\":{\"id\":\"MDY6Q29tbWl0MjA3NTY3MDExOmNjNTdmZGQwOWM0OWE4YjQzMDBlMDRiMDZiNzUxNTg5NWYyOGY0MTU=\",\"sha\":\"cc57fdd09c49a8b4300e04b06b7515895f28f415\",\"__typename\":\"Commit\",\"tree\":{\"id\":\"MDQ6VHJlZTIwNzU2NzAxMTowMzEyZmI5Y2ZmOGQ2NjZhZWMxNGY3Y2Y3NzQ2ZGU0ZjE4ODUzZDY3\",\"sha\":\"0312fb9cff8d666aec14f7cf7746de4f18853d67\",\"__typename\":\"Tree\",\"entries\":[{\"path\":\"1970-01-01-first-title.json\",\"sha\":\"e4b2a7a1212574e62d92faa202ed42a117ee4678\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"README.md\",\"sha\":\"98787d1bd948850444433e91a43091a76c4eb455\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"}]}}}}}\n", + "status": 200 + }, + { + "body": "{\"base_tree\":\"cc57fdd09c49a8b4300e04b06b7515895f28f415\",\"tree\":[{\"path\":\"1970-01-01-first-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"b0bdc2ebfde22c5f4ad437035431dc3fa0ce8686\"}]}", + "method": "POST", + "url": "/repos/owner/repo/git/trees?ts=600", + "headers": { + "Date": "Tue, 10 Sep 2019 13:30:27 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "895", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4945", + "X-RateLimit-Reset": "1568125713", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"e3efeb1621feb41459cb799f6686e668\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/trees/8c028f4b47ca9f1b7b254e9470d36675c84510dc", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7AD0:9D21:16B2192:1BA36AD:5D77A572", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"8c028f4b47ca9f1b7b254e9470d36675c84510dc\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/8c028f4b47ca9f1b7b254e9470d36675c84510dc\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"b0bdc2ebfde22c5f4ad437035431dc3fa0ce8686\",\n \"size\": 462,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/b0bdc2ebfde22c5f4ad437035431dc3fa0ce8686\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"message\":\"Updating “1970-01-01-first-title” metadata\",\"tree\":\"8c028f4b47ca9f1b7b254e9470d36675c84510dc\",\"parents\":[\"cc57fdd09c49a8b4300e04b06b7515895f28f415\"]}", + "method": "POST", + "url": "/repos/owner/repo/git/commits?ts=600", + "headers": { + "Date": "Tue, 10 Sep 2019 13:30:27 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "1510", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4944", + "X-RateLimit-Reset": "1568125713", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"8c61e7ce82ebcbcaae3ec07097e80bfb\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/commits/611793a1b7ad54cf36b96ffd59324c95f088e769", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7AD2:244E7:113847B:150150C:5D77A573", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"611793a1b7ad54cf36b96ffd59324c95f088e769\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NTY3MDExOjYxMTc5M2ExYjdhZDU0Y2YzNmI5NmZmZDU5MzI0Yzk1ZjA4OGU3Njk=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/611793a1b7ad54cf36b96ffd59324c95f088e769\",\n \"html_url\": \"https://github.com/owner/repo/commit/611793a1b7ad54cf36b96ffd59324c95f088e769\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T13:30:27Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T13:30:27Z\"\n },\n \"tree\": {\n \"sha\": \"8c028f4b47ca9f1b7b254e9470d36675c84510dc\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/8c028f4b47ca9f1b7b254e9470d36675c84510dc\"\n },\n \"message\": \"Updating “1970-01-01-first-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"cc57fdd09c49a8b4300e04b06b7515895f28f415\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/cc57fdd09c49a8b4300e04b06b7515895f28f415\",\n \"html_url\": \"https://github.com/owner/repo/commit/cc57fdd09c49a8b4300e04b06b7515895f28f415\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "status": 201 + }, + { + "body": "{\"sha\":\"611793a1b7ad54cf36b96ffd59324c95f088e769\",\"force\":false}", + "method": "PATCH", + "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=600", + "headers": { + "Date": "Tue, 10 Sep 2019 13:30:29 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": "1568125713", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"1ec4bdfeea5fba72114b7674eb80cb5a\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7AD5:B4E0:1629E77:1AF8415:5D77A574", + "content-length": "484", + "connection": "keep-alive" + }, + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NTY3MDExOnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"611793a1b7ad54cf36b96ffd59324c95f088e769\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/611793a1b7ad54cf36b96ffd59324c95f088e769\"\n }\n}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"updateRef\",\"variables\":{\"input\":{\"oid\":\"8a58a77a739d88c20c838328fd1b9a8a403599f8\",\"refId\":\"MDM6UmVmMjA3NTY3MDExOmNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxl\",\"force\":true}},\"query\":\"mutation updateRef($input: UpdateRefInput!) {\\n updateRef(input: $input) {\\n branch: ref {\\n ...BranchParts\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment BranchParts on Ref {\\n commit: target {\\n ...ObjectParts\\n __typename\\n }\\n id\\n name\\n repository {\\n ...RepositoryParts\\n __typename\\n }\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:30:30 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4923", + "X-RateLimit-Reset": "1568125723", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7AD6:244EB:177B5C5:1C82C5D:5D77A575", + "content-length": "438", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"updateRef\":{\"branch\":{\"commit\":{\"id\":\"MDY6Q29tbWl0MjA3NTY3MDExOjhhNThhNzdhNzM5ZDg4YzIwYzgzODMyOGZkMWI5YThhNDAzNTk5Zjg=\",\"sha\":\"8a58a77a739d88c20c838328fd1b9a8a403599f8\",\"__typename\":\"Commit\"},\"id\":\"MDM6UmVmMjA3NTY3MDExOmNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxl\",\"name\":\"cms/1970-01-01-first-title\",\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\"},\"__typename\":\"Ref\"},\"__typename\":\"UpdateRefPayload\"}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"statues\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"8a58a77a739d88c20c838328fd1b9a8a403599f8\"},\"query\":\"query statues($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n status {\\n id\\n contexts {\\n id\\n context\\n state\\n target_url: targetUrl\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:30:31 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4922", + "X-RateLimit-Reset": "1568125723", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7AD8:B4D7:196D08:1F134B:5D77A576", + "content-length": "276", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDY6Q29tbWl0MjA3NTY3MDExOjhhNThhNzdhNzM5ZDg4YzIwYzgzODMyOGZkMWI5YThhNDAzNTk5Zjg=\",\"sha\":\"8a58a77a739d88c20c838328fd1b9a8a403599f8\",\"__typename\":\"Commit\",\"status\":null}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"unpublishedPrBranches\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\"},\"query\":\"query unpublishedPrBranches($owner: String!, $name: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n refs(refPrefix: \\\"refs/heads/cms/\\\", last: 50) {\\n nodes {\\n id\\n associatedPullRequests(last: 50, states: OPEN) {\\n nodes {\\n id\\n headRef {\\n id\\n name\\n prefix\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:30:31 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4921", + "X-RateLimit-Reset": "1568125723", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7ADA:244EB:177B8E8:1C83039:5D77A577", + "content-length": "518", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"refs\":{\"nodes\":[{\"id\":\"MDM6UmVmMjA3NTY3MDExOjE5NzAtMDEtMDEtZmlyc3QtdGl0bGU=\",\"associatedPullRequests\":{\"nodes\":[{\"id\":\"MDExOlB1bGxSZXF1ZXN0MzE1OTk1NTA3\",\"headRef\":{\"id\":\"MDM6UmVmMjA3NTY3MDExOmNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxl\",\"name\":\"cms/1970-01-01-first-title\",\"prefix\":\"refs/heads/\",\"__typename\":\"Ref\"},\"__typename\":\"PullRequest\"}],\"__typename\":\"PullRequestConnection\"},\"__typename\":\"Ref\"}],\"__typename\":\"RefConnection\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"unpublishedBranchFile\",\"variables\":{\"headOwner\":\"owner\",\"headRepoName\":\"repo\",\"headExpression\":\"cms/1970-01-01-first-title:content/posts/1970-01-01-first-title.md\",\"baseOwner\":\"owner\",\"baseRepoName\":\"repo\",\"baseExpression\":\"master:content/posts/1970-01-01-first-title.md\"},\"query\":\"query unpublishedBranchFile($headOwner: String!, $headRepoName: String!, $headExpression: String!, $baseOwner: String!, $baseRepoName: String!, $baseExpression: String!) {\\n head: repository(owner: $headOwner, name: $headRepoName) {\\n ...RepositoryParts\\n object(expression: $headExpression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n base: repository(owner: $baseOwner, name: $baseRepoName) {\\n ...RepositoryParts\\n object(expression: $baseExpression) {\\n ... on Blob {\\n id\\n oid\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:30:32 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4920", + "X-RateLimit-Reset": "1568125723", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7ADC:1510F:11C3822:158C8A5:5D77A578", + "content-length": "500", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"head\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzU2NzAxMTozZTU2NzZjODI4NWE0NTZhNjYwNDYwMzA0MmI1NDI4ODgzZjUwNDE3\",\"text\":\"---\\ntemplate: post\\ntitle: second title\\ndraft: true\\ndate: 1970-01-01T00:00:00.000Z\\ndescription: second description\\ncategory: second category\\ntags:\\n - tag2\\n---\\nsecond body\\n\",\"is_binary\":false,\"__typename\":\"Blob\"}},\"base\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"object\":null}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"statues\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"8a58a77a739d88c20c838328fd1b9a8a403599f8\"},\"query\":\"query statues($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n status {\\n id\\n contexts {\\n id\\n context\\n state\\n target_url: targetUrl\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:30:36 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4919", + "X-RateLimit-Reset": "1568125723", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7AE6:9D1F:9E33F9:C10992:5D77A57C", + "content-length": "276", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDY6Q29tbWl0MjA3NTY3MDExOjhhNThhNzdhNzM5ZDg4YzIwYzgzODMyOGZkMWI5YThhNDAzNTk5Zjg=\",\"sha\":\"8a58a77a739d88c20c838328fd1b9a8a403599f8\",\"__typename\":\"Commit\",\"status\":null}}}}\n", + "status": 200 + } +] \ No newline at end of file diff --git a/cypress/fixtures/Github Backend Editorial Workflow - GraphQL API - Open Authoring__successfully forks repository and loads.json b/cypress/fixtures/Github Backend Editorial Workflow - GraphQL API - Open Authoring__successfully forks repository and loads.json new file mode 100644 index 00000000..c29b7f95 --- /dev/null +++ b/cypress/fixtures/Github Backend Editorial Workflow - GraphQL API - Open Authoring__successfully forks repository and loads.json @@ -0,0 +1,414 @@ +[ + { + "method": "GET", + "url": "/user", + "headers": { + "Date": "Tue, 10 Sep 2019 13:31:45 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4989", + "X-RateLimit-Reset": "1568125899", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"9f179b9cd93543dd93e6a5636e9e17a6\"", + "Last-Modified": "Sun, 01 Sep 2019 18:04:11 GMT", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BD0:2B15:4BCC57:5BF567:5D77A5C1", + "content-length": "1333", + "connection": "keep-alive" + }, + "response": "{\"login\":\"forkOwner\",\"id\":2,\"avatar_url\":\"https://avatars1.githubusercontent.com/u/7892489?v=4\",\"name\":\"forkOwner\"}", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/collaborators/forkOwner/permission", + "headers": { + "Date": "Tue, 10 Sep 2019 13:31:46 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "403 Forbidden", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4988", + "X-RateLimit-Reset": "1568125899", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BD2:244EB:1783375:1C8C821:5D77A5C2", + "content-length": "185", + "connection": "keep-alive" + }, + "response": "{\n \"message\": \"Must have push access to view collaborator permission.\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/collaborators/#review-a-users-permission-level\"\n}\n", + "status": 403 + }, + { + "method": "POST", + "url": "/repos/owner/repo/forks", + "headers": { + "Date": "Tue, 10 Sep 2019 13:31:47 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "22055", + "Server": "GitHub.com", + "Status": "202 Accepted", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4987", + "X-RateLimit-Reset": "1568125899", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BD4:1510F:11C9A86:159414A:5D77A5C2", + "connection": "keep-alive" + }, + "response": "{\n \"id\": 207567867,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1Njc4Njc=\",\n \"name\": \"repo\",\n \"full_name\": \"forkOwner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"forkOwner\",\n \"id\": 53494188,\n \"node_id\": \"MDQ6VXNlcjUzNDk0MTg4\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/forkOwner\",\n \"html_url\": \"https://github.com/forkOwner\",\n \"followers_url\": \"https://api.github.com/users/forkOwner/followers\",\n \"following_url\": \"https://api.github.com/users/forkOwner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/forkOwner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/forkOwner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/forkOwner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/forkOwner/orgs\",\n \"repos_url\": \"https://api.github.com/users/forkOwner/repos\",\n \"events_url\": \"https://api.github.com/users/forkOwner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/forkOwner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/forkOwner/repo\",\n \"description\": null,\n \"fork\": true,\n \"url\": \"https://api.github.com/repos/forkOwner/repo\",\n \"forks_url\": \"https://api.github.com/repos/forkOwner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/forkOwner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/forkOwner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/forkOwner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/forkOwner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/forkOwner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/forkOwner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/forkOwner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/forkOwner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/forkOwner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/forkOwner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/forkOwner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/forkOwner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/forkOwner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/forkOwner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/forkOwner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/forkOwner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/forkOwner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/forkOwner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/forkOwner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/forkOwner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/forkOwner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/forkOwner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/forkOwner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/forkOwner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/forkOwner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/forkOwner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/forkOwner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/forkOwner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/forkOwner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/forkOwner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/forkOwner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/forkOwner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/forkOwner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/forkOwner/repo/deployments\",\n \"created_at\": \"2019-09-10T13:31:46Z\",\n \"updated_at\": \"2019-09-10T13:31:40Z\",\n \"pushed_at\": \"2019-09-10T13:31:38Z\",\n \"git_url\": \"git://github.com/forkOwner/repo.git\",\n \"ssh_url\": \"git@github.com:forkOwner/repo.git\",\n \"clone_url\": \"https://github.com/forkOwner/repo.git\",\n \"svn_url\": \"https://github.com/forkOwner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": null,\n \"has_issues\": false,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\",\n \"permissions\": {\n \"admin\": true,\n \"push\": true,\n \"pull\": true\n },\n \"parent\": {\n \"id\": 207567011,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-10T13:28:07Z\",\n \"updated_at\": \"2019-09-10T13:31:40Z\",\n \"pushed_at\": \"2019-09-10T13:31:38Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n },\n \"source\": {\n \"id\": 207567011,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-10T13:28:07Z\",\n \"updated_at\": \"2019-09-10T13:31:40Z\",\n \"pushed_at\": \"2019-09-10T13:31:38Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n },\n \"network_count\": 1,\n \"subscribers_count\": 0\n}\n", + "status": 202 + }, + { + "method": "GET", + "url": "/repos/forkOwner/repo", + "headers": { + "Date": "Tue, 10 Sep 2019 13:31:48 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4986", + "X-RateLimit-Reset": "1568125899", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"cd86b12eb023271e3a4596d7459db12d\"", + "Last-Modified": "Tue, 10 Sep 2019 13:31:40 GMT", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BD6:15110:17FAA6E:1D1EF60:5D77A5C3", + "content-length": "22145", + "connection": "keep-alive" + }, + "response": "{\n \"id\": 207567867,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1Njc4Njc=\",\n \"name\": \"repo\",\n \"full_name\": \"forkOwner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"forkOwner\",\n \"id\": 53494188,\n \"node_id\": \"MDQ6VXNlcjUzNDk0MTg4\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/forkOwner\",\n \"html_url\": \"https://github.com/forkOwner\",\n \"followers_url\": \"https://api.github.com/users/forkOwner/followers\",\n \"following_url\": \"https://api.github.com/users/forkOwner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/forkOwner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/forkOwner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/forkOwner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/forkOwner/orgs\",\n \"repos_url\": \"https://api.github.com/users/forkOwner/repos\",\n \"events_url\": \"https://api.github.com/users/forkOwner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/forkOwner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/forkOwner/repo\",\n \"description\": null,\n \"fork\": true,\n \"url\": \"https://api.github.com/repos/forkOwner/repo\",\n \"forks_url\": \"https://api.github.com/repos/forkOwner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/forkOwner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/forkOwner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/forkOwner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/forkOwner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/forkOwner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/forkOwner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/forkOwner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/forkOwner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/forkOwner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/forkOwner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/forkOwner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/forkOwner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/forkOwner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/forkOwner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/forkOwner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/forkOwner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/forkOwner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/forkOwner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/forkOwner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/forkOwner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/forkOwner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/forkOwner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/forkOwner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/forkOwner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/forkOwner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/forkOwner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/forkOwner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/forkOwner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/forkOwner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/forkOwner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/forkOwner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/forkOwner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/forkOwner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/forkOwner/repo/deployments\",\n \"created_at\": \"2019-09-10T13:31:46Z\",\n \"updated_at\": \"2019-09-10T13:31:40Z\",\n \"pushed_at\": \"2019-09-10T13:31:38Z\",\n \"git_url\": \"git://github.com/forkOwner/repo.git\",\n \"ssh_url\": \"git@github.com:forkOwner/repo.git\",\n \"clone_url\": \"https://github.com/forkOwner/repo.git\",\n \"svn_url\": \"https://github.com/forkOwner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": null,\n \"has_issues\": false,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\",\n \"permissions\": {\n \"admin\": true,\n \"push\": true,\n \"pull\": true\n },\n \"allow_squash_merge\": true,\n \"allow_merge_commit\": true,\n \"allow_rebase_merge\": true,\n \"parent\": {\n \"id\": 207567011,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-10T13:28:07Z\",\n \"updated_at\": \"2019-09-10T13:31:40Z\",\n \"pushed_at\": \"2019-09-10T13:31:38Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n },\n \"source\": {\n \"id\": 207567011,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-10T13:28:07Z\",\n \"updated_at\": \"2019-09-10T13:31:40Z\",\n \"pushed_at\": \"2019-09-10T13:31:38Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n },\n \"network_count\": 1,\n \"subscribers_count\": 0\n}\n", + "status": 200 + }, + { + "body": "{\"operationName\":null,\"variables\":{},\"query\":\"{\\n viewer {\\n id\\n avatar_url: avatarUrl\\n name\\n login\\n __typename\\n }\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:31:48 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4999", + "X-RateLimit-Reset": "1568125908", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7BD8:244E7:113F4C1:1509E9B:5D77A5C4", + "content-length": "176", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"viewer\":{\"id\":\"MDQ6VXNlcjUzNDk0MTg4\",\"avatar_url\":\"https://avatars1.githubusercontent.com/u/7892489?v=4\",\"name\":null,\"login\":\"forkOwner\",\"__typename\":\"User\"}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"repoPermission\",\"variables\":{\"owner\":\"forkOwner\",\"name\":\"repo\"},\"query\":\"query repoPermission($owner: String!, $name: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n viewerPermission\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:31:49 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4998", + "X-RateLimit-Reset": "1568125908", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7BDB:15110:17FAC46:1D1F1B4:5D77A5C4", + "content-length": "119", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1Njc4Njc=\",\"__typename\":\"Repository\",\"viewerPermission\":\"ADMIN\"}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"files\",\"variables\":{\"owner\":\"forkOwner\",\"name\":\"repo\",\"expression\":\"master:content/posts\"},\"query\":\"query files($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...FileEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment FileEntryParts on TreeEntry {\\n name\\n sha: oid\\n type\\n blob: object {\\n ... on Blob {\\n size: byteSize\\n __typename\\n }\\n __typename\\n }\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:31:50 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4997", + "X-RateLimit-Reset": "1568125908", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7BE2:244EB:17838D8:1C8CEE0:5D77A5C5", + "content-length": "1218", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1Njc4Njc=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6VHJlZTIwNzU2Nzg2NzozNDg5MjU3NWUyMTZjMDZlNzU3MDkzZjAzNmJkOGUwNTdjNzhhNTJm\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"__typename\":\"Tree\",\"entries\":[{\"name\":\"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\"sha\":\"6d51a38aed7139d2117724b1e307657b6ff2d043\",\"type\":\"blob\",\"blob\":{\"size\":1707,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\"sha\":\"d0582dd245a3f408fb3fe2333bf01400007476e9\",\"type\":\"blob\",\"blob\":{\"size\":2565,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2016-02-02---A-Brief-History-of-Typography.md\",\"sha\":\"0eea554365f002d0f1572af9a58522d335a794d5\",\"type\":\"blob\",\"blob\":{\"size\":2786,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2017-18-08---The-Birth-of-Movable-Type.md\",\"sha\":\"44f78c474d04273185a95821426f75affc9b0044\",\"type\":\"blob\",\"blob\":{\"size\":16071,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\"sha\":\"a532f0a9445cdf90a19c6812cff89d1674991774\",\"type\":\"blob\",\"blob\":{\"size\":7465,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"}]}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"files\",\"variables\":{\"owner\":\"forkOwner\",\"name\":\"repo\",\"expression\":\"master:static/media\"},\"query\":\"query files($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...FileEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment FileEntryParts on TreeEntry {\\n name\\n sha: oid\\n type\\n blob: object {\\n ... on Blob {\\n size: byteSize\\n __typename\\n }\\n __typename\\n }\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:31:50 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4996", + "X-RateLimit-Reset": "1568125908", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7BE8:1510E:A807A7:CCA7FE:5D77A5C6", + "content-length": "1837", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1Njc4Njc=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6VHJlZTIwNzU2Nzg2Nzo5Yjc2OTliNTdlMTQzMDkxMGRiODI4MzFkY2Y2YjhhMWQxZGJkYWM5\",\"sha\":\"9b7699b57e1430910db82831dcf6b8a1d1dbdac9\",\"__typename\":\"Tree\",\"entries\":[{\"name\":\"42-line-bible.jpg\",\"sha\":\"41c8d12f9ca5864beb827c381fbeff935209d5fb\",\"type\":\"blob\",\"blob\":{\"size\":671242,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"gutenberg.jpg\",\"sha\":\"04315e355873ea5d358d9c371c39a6845c1ae4ae\",\"type\":\"blob\",\"blob\":{\"size\":155002,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-0.jpg\",\"sha\":\"b70a1b64fd4fa9635823231a0ba92c6dc9393f16\",\"type\":\"blob\",\"blob\":{\"size\":660287,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-1.jpg\",\"sha\":\"05eedae372b829c62501ac751b2d42dcc432541b\",\"type\":\"blob\",\"blob\":{\"size\":392411,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-2.jpg\",\"sha\":\"53845ed35faf8939bea242bb85eda7c324b1be0b\",\"type\":\"blob\",\"blob\":{\"size\":99147,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-3.jpg\",\"sha\":\"8b2339d97069e826fae1f156212e40ae458454e3\",\"type\":\"blob\",\"blob\":{\"size\":358022,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-4.jpg\",\"sha\":\"a8f6f21253a67a4284b5a953b2fe633d44152ecd\",\"type\":\"blob\",\"blob\":{\"size\":114837,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"movable-type.jpg\",\"sha\":\"57b4e925ea00bd8e195cf4418eb6eb2995ea5f10\",\"type\":\"blob\",\"blob\":{\"size\":559028,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"printing-press.jpg\",\"sha\":\"d27f56c9437d9becd2f56cc627c9322c2f1f61f6\",\"type\":\"blob\",\"blob\":{\"size\":279283,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"type-through-time.jpg\",\"sha\":\"3f08366a805c51a60ec5056010f22de4ba08abaa\",\"type\":\"blob\",\"blob\":{\"size\":117689,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"}]}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"forkOwner\",\"name\":\"repo\",\"expression\":\"d0582dd245a3f408fb3fe2333bf01400007476e9\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:31:50 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4994", + "X-RateLimit-Reset": "1568125908", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7BF4:B4DA:4FE4F9:6175FF:5D77A5C6", + "content-length": "2866", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1Njc4Njc=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzU2Nzg2NzpkMDU4MmRkMjQ1YTNmNDA4ZmIzZmUyMzMzYmYwMTQwMDAwNzQ3NmU5\",\"text\":\"---\\ntitle: The Origins of Social Stationery Lettering\\ndate: \\\"2016-12-01T22:40:32.169Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Design Culture\\\"\\ndescription: \\\"Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante.\\\"\\ncanonical: ''\\n---\\n\\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \\n\\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\\n\\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-3.jpg)\\n\\n## Header Level 2\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \\n\\n
\\n\\t
\\n\\t\\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\\n\\t\\t
\\n\\t\\t\\t— Aliquam tincidunt mauris eu risus.\\n\\t\\t
\\n\\t
\\n
\\n\\n### Header Level 3\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\\n\\n```css\\n#header h1 a {\\n display: block;\\n width: 300px;\\n height: 80px;\\n}\\n```\\n\\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"forkOwner\",\"name\":\"repo\",\"expression\":\"6d51a38aed7139d2117724b1e307657b6ff2d043\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:31:50 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4995", + "X-RateLimit-Reset": "1568125908", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7BFA:1510F:11C9F27:1594702:5D77A5C6", + "content-length": "1973", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1Njc4Njc=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzU2Nzg2Nzo2ZDUxYTM4YWVkNzEzOWQyMTE3NzI0YjFlMzA3NjU3YjZmZjJkMDQz\",\"text\":\"---\\ntitle: Perfecting the Art of Perfection\\ndate: \\\"2016-09-01T23:46:37.121Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Design Inspiration\\\"\\ntags:\\n - \\\"Handwriting\\\"\\n - \\\"Learning to write\\\"\\ndescription: \\\"Quisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\\\"\\ncanonical: ''\\n---\\n\\nQuisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\\n\\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-2.jpg)\\n\\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. \\n\\nPraesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"forkOwner\",\"name\":\"repo\",\"expression\":\"0eea554365f002d0f1572af9a58522d335a794d5\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:31:50 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4993", + "X-RateLimit-Reset": "1568125908", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7BF6:1510F:11C9F30:159470A:5D77A5C6", + "content-length": "3102", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1Njc4Njc=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzU2Nzg2NzowZWVhNTU0MzY1ZjAwMmQwZjE1NzJhZjlhNTg1MjJkMzM1YTc5NGQ1\",\"text\":\"---\\ntitle: \\\"A Brief History of Typography\\\"\\ndate: \\\"2016-02-02T22:40:32.169Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Design Inspiration\\\"\\ntags:\\n - \\\"Linotype\\\"\\n - \\\"Monotype\\\"\\n - \\\"History of typography\\\"\\n - \\\"Helvetica\\\"\\ndescription: \\\"Morbi in sem quis dui placerat ornare. Pellentesque odio nisi, euismod in, pharetra a, ultricies in, diam. Sed arcu. Cras consequat.\\\"\\ncanonical: ''\\n---\\n\\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \\n\\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\\n\\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-0.jpg)\\n\\n## Header Level 2\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \\n\\n
\\n\\t
\\n\\t\\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\\n\\t\\t
\\n\\t\\t\\t— Aliquam tincidunt mauris eu risus.\\n\\t\\t
\\n\\t
\\n
\\n\\n### Header Level 3\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\\n\\n```css\\n#header h1 a {\\n display: block;\\n width: 300px;\\n height: 80px;\\n}\\n```\\n\\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"forkOwner\",\"name\":\"repo\",\"expression\":\"44f78c474d04273185a95821426f75affc9b0044\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:31:51 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4992", + "X-RateLimit-Reset": "1568125908", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7A04:3ED77:A74D53:CAB0C5:5D77A5C6", + "content-length": "16478", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1Njc4Njc=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzU2Nzg2Nzo0NGY3OGM0NzRkMDQyNzMxODVhOTU4MjE0MjZmNzVhZmZjOWIwMDQ0\",\"text\":\"---\\ntitle: \\\"Johannes Gutenberg: The Birth of Movable Type\\\"\\ndate: \\\"2017-08-18T22:12:03.284Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Typography\\\"\\ntags:\\n - \\\"Open source\\\"\\n - \\\"Gatsby\\\"\\n - \\\"Typography\\\"\\ndescription: \\\"German inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\\\"\\ncanonical: ''\\n---\\n\\nGerman inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\\n\\n**Johannes Gensfleisch zur Laden zum Gutenberg** (c. 1398 – 1468) was a German blacksmith, goldsmith, printer, and publisher who introduced printing to Europe. His invention of mechanical movable type printing started the Printing Revolution and is widely regarded as the most important event of the modern period. It played a key role in the development of the Renaissance, Reformation, the Age of Enlightenment, and the Scientific revolution and laid the material basis for the modern knowledge-based economy and the spread of learning to the masses.\\n\\n
\\n\\t\\\"Gutenberg\\\"\\n\\t
Johannes Gutenberg
\\n
\\n\\nWith his invention of the printing press, Gutenberg was the first European to use movable type printing, in around 1439. Among his many contributions to printing are: the invention of a process for mass-producing movable type; the use of oil-based ink; and the use of a wooden printing press similar to the agricultural screw presses of the period. His truly epochal invention was the combination of these elements into a practical system that allowed the mass production of printed books and was economically viable for printers and readers alike. Gutenberg's method for making type is traditionally considered to have included a type metal alloy and a hand mould for casting type. The alloy was a mixture of lead, tin, and antimony that melted at a relatively low temperature for faster and more economical casting, cast well, and created a durable type.\\n\\nIn Renaissance Europe, the arrival of mechanical movable type printing introduced the era of mass communication which permanently altered the structure of society. The relatively unrestricted circulation of information — including revolutionary ideas — transcended borders, captured the masses in the Reformation and threatened the power of political and religious authorities; the sharp increase in literacy broke the monopoly of the literate elite on education and learning and bolstered the emerging middle class. Across Europe, the increasing cultural self-awareness of its people led to the rise of proto-nationalism, accelerated by the flowering of the European vernacular languages to the detriment of Latin's status as lingua franca. In the 19th century, the replacement of the hand-operated Gutenberg-style press by steam-powered rotary presses allowed printing on an industrial scale, while Western-style printing was adopted all over the world, becoming practically the sole medium for modern bulk printing.\\n\\nThe use of movable type was a marked improvement on the handwritten manuscript, which was the existing method of book production in Europe, and upon woodblock printing, and revolutionized European book-making. Gutenberg's printing technology spread rapidly throughout Europe and later the world.\\n\\nHis major work, the Gutenberg Bible (also known as the 42-line Bible), has been acclaimed for its high aesthetic and technical quality.\\n\\n## Printing Press\\n\\nAround 1439, Gutenberg was involved in a financial misadventure making polished metal mirrors (which were believed to capture holy light from religious relics) for sale to pilgrims to Aachen: in 1439 the city was planning to exhibit its collection of relics from Emperor Charlemagne but the event was delayed by one year due to a severe flood and the capital already spent could not be repaid. When the question of satisfying the investors came up, Gutenberg is said to have promised to share a “secret”. It has been widely speculated that this secret may have been the idea of printing with movable type. Also around 1439–1440, the Dutch Laurens Janszoon Coster came up with the idea of printing. Legend has it that the idea came to him “like a ray of light”.\\n\\n
\\n\\t\\\"Early\\n\\t
Early wooden printing press as depicted in 1568.
\\n
\\n\\nUntil at least 1444 he lived in Strasbourg, most likely in the St. Arbogast parish. It was in Strasbourg in 1440 that Gutenberg is said to have perfected and unveiled the secret of printing based on his research, mysteriously entitled Kunst und Aventur (art and enterprise). It is not clear what work he was engaged in, or whether some early trials with printing from movable type may have been conducted there. After this, there is a gap of four years in the record. In 1448, he was back in Mainz, where he took out a loan from his brother-in-law Arnold Gelthus, quite possibly for a printing press or related paraphernalia. By this date, Gutenberg may have been familiar with intaglio printing; it is claimed that he had worked on copper engravings with an artist known as the Master of Playing Cards.\\n\\nBy 1450, the press was in operation, and a German poem had been printed, possibly the first item to be printed there. Gutenberg was able to convince the wealthy moneylender Johann Fust for a loan of 800 guilders. Peter Schöffer, who became Fust’s son-in-law, also joined the enterprise. Schöffer had worked as a scribe in Paris and is believed to have designed some of the first typefaces.\\n\\n
\\n\\t
\\n\\t\\t

All that has been written to me about that marvelous man seen at Frankfurt is true. I have not seen complete Bibles but only a number of quires of various books of the Bible. The script was very neat and legible, not at all difficult to follow—your grace would be able to read it without effort, and indeed without glasses.

\\n\\t\\t
\\n\\t\\t\\t—Future pope Pius II in a letter to Cardinal Carvajal, March 1455\\n\\t\\t
\\n\\t
\\n
\\n\\nGutenberg's workshop was set up at Hof Humbrecht, a property belonging to a distant relative. It is not clear when Gutenberg conceived the Bible project, but for this he borrowed another 800 guilders from Fust, and work commenced in 1452. At the same time, the press was also printing other, more lucrative texts (possibly Latin grammars). There is also some speculation that there may have been two presses, one for the pedestrian texts, and one for the Bible. One of the profit-making enterprises of the new press was the printing of thousands of indulgences for the church, documented from 1454–55.\\n\\nIn 1455 Gutenberg completed his 42-line Bible, known as the Gutenberg Bible. About 180 copies were printed, most on paper and some on vellum.\\n\\n## Court Case\\n\\nSome time in 1456, there was a dispute between Gutenberg and Fust, and Fust demanded his money back, accusing Gutenberg of misusing the funds. Meanwhile the expenses of the Bible project had proliferated, and Gutenberg's debt now exceeded 20,000 guilders. Fust sued at the archbishop's court. A November 1455 legal document records that there was a partnership for a \\\"project of the books,\\\" the funds for which Gutenberg had used for other purposes, according to Fust. The court decided in favor of Fust, giving him control over the Bible printing workshop and half of all printed Bibles.\\n\\nThus Gutenberg was effectively bankrupt, but it appears he retained (or re-started) a small printing shop, and participated in the printing of a Bible in the town of Bamberg around 1459, for which he seems at least to have supplied the type. But since his printed books never carry his name or a date, it is difficult to be certain, and there is consequently a considerable scholarly debate on this subject. It is also possible that the large Catholicon dictionary, 300 copies of 754 pages, printed in Mainz in 1460, may have been executed in his workshop.\\n\\nMeanwhile, the Fust–Schöffer shop was the first in Europe to bring out a book with the printer's name and date, the Mainz Psalter of August 1457, and while proudly proclaiming the mechanical process by which it had been produced, it made no mention of Gutenberg.\\n\\n## Later Life\\n\\nIn 1462, during a conflict between two archbishops, Mainz was sacked by archbishop Adolph von Nassau, and Gutenberg was exiled. An old man by now, he moved to Eltville where he may have initiated and supervised a new printing press belonging to the brothers Bechtermünze.\\n\\nIn January 1465, Gutenberg's achievements were recognized and he was given the title Hofmann (gentleman of the court) by von Nassau. This honor included a stipend, an annual court outfit, as well as 2,180 litres of grain and 2,000 litres of wine tax-free. It is believed he may have moved back to Mainz around this time, but this is not certain.\\n\\n***\\n\\nGutenberg died in 1468 and was buried in the Franciscan church at Mainz, his contributions largely unknown. This church and the cemetery were later destroyed, and Gutenberg's grave is now lost.\\n\\nIn 1504, he was mentioned as the inventor of typography in a book by Professor Ivo Wittig. It was not until 1567 that the first portrait of Gutenberg, almost certainly an imaginary reconstruction, appeared in Heinrich Pantaleon's biography of famous Germans.\\n\\n## Printing Method With Movable Type\\n\\nGutenberg's early printing process, and what tests he may have made with movable type, are not known in great detail. His later Bibles were printed in such a way as to have required large quantities of type, some estimates suggesting as many as 100,000 individual sorts. Setting each page would take, perhaps, half a day, and considering all the work in loading the press, inking the type, pulling the impressions, hanging up the sheets, distributing the type, etc., it is thought that the Gutenberg–Fust shop might have employed as many as 25 craftsmen.\\n\\n![Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5](/media/movable-type.jpg)\\n\\n*Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5*\\n\\nGutenberg's technique of making movable type remains unclear. In the following decades, punches and copper matrices became standardized in the rapidly disseminating printing presses across Europe. Whether Gutenberg used this sophisticated technique or a somewhat primitive version has been the subject of considerable debate.\\n\\nIn the standard process of making type, a hard metal punch (made by punchcutting, with the letter carved back to front) is hammered into a softer copper bar, creating a matrix. This is then placed into a hand-held mould and a piece of type, or \\\"sort\\\", is cast by filling the mould with molten type-metal; this cools almost at once, and the resulting piece of type can be removed from the mould. The matrix can be reused to create hundreds, or thousands, of identical sorts so that the same character appearing anywhere within the book will appear very uniform, giving rise, over time, to the development of distinct styles of typefaces or fonts. After casting, the sorts are arranged into type-cases, and used to make up pages which are inked and printed, a procedure which can be repeated hundreds, or thousands, of times. The sorts can be reused in any combination, earning the process the name of “movable type”.\\n\\nThe invention of the making of types with punch, matrix and mold has been widely attributed to Gutenberg. However, recent evidence suggests that Gutenberg's process was somewhat different. If he used the punch and matrix approach, all his letters should have been nearly identical, with some variations due to miscasting and inking. However, the type used in Gutenberg's earliest work shows other variations.\\n\\n
\\n\\t
\\n\\t\\t

It is a press, certainly, but a press from which shall flow in inexhaustible streams… Through it, god will spread his word.

\\n\\t\\t
\\n\\t\\t\\t—Johannes Gutenberg\\n\\t\\t
\\n\\t
\\n
\\n\\nIn 2001, the physicist Blaise Agüera y Arcas and Princeton librarian Paul Needham, used digital scans of a Papal bull in the Scheide Library, Princeton, to carefully compare the same letters (types) appearing in different parts of the printed text. The irregularities in Gutenberg's type, particularly in simple characters such as the hyphen, suggested that the variations could not have come from either ink smear or from wear and damage on the pieces of metal on the types themselves. While some identical types are clearly used on other pages, other variations, subjected to detailed image analysis, suggested that they could not have been produced from the same matrix. Transmitted light pictures of the page also appeared to reveal substructures in the type that could not arise from traditional punchcutting techniques. They hypothesized that the method may have involved impressing simple shapes to create alphabets in “cuneiform” style in a matrix made of some soft material, perhaps sand. Casting the type would destroy the mould, and the matrix would need to be recreated to make each additional sort. This could explain the variations in the type, as well as the substructures observed in the printed images.\\n\\nThus, they feel that “the decisive factor for the birth of typography”, the use of reusable moulds for casting type, might have been a more progressive process than was previously thought. They suggest that the additional step of using the punch to create a mould that could be reused many times was not taken until twenty years later, in the 1470s. Others have not accepted some or all of their suggestions, and have interpreted the evidence in other ways, and the truth of the matter remains very uncertain.\\n\\nA 1568 history by Hadrianus Junius of Holland claims that the basic idea of the movable type came to Gutenberg from Laurens Janszoon Coster via Fust, who was apprenticed to Coster in the 1430s and may have brought some of his equipment from Haarlem to Mainz. While Coster appears to have experimented with moulds and castable metal type, there is no evidence that he had actually printed anything with this technology. He was an inventor and a goldsmith. However, there is one indirect supporter of the claim that Coster might be the inventor. The author of the Cologne Chronicle of 1499 quotes Ulrich Zell, the first printer of Cologne, that printing was performed in Mainz in 1450, but that some type of printing of lower quality had previously occurred in the Netherlands. However, the chronicle does not mention the name of Coster, while it actually credits Gutenberg as the \\\"first inventor of printing\\\" in the very same passage (fol. 312). The first securely dated book by Dutch printers is from 1471, and the Coster connection is today regarded as a mere legend.\\n\\nThe 19th century printer and typefounder Fournier Le Jeune suggested that Gutenberg might not have been using type cast with a reusable matrix, but possibly wooden types that were carved individually. A similar suggestion was made by Nash in 2004. This remains possible, albeit entirely unproven.\\n\\nIt has also been questioned whether Gutenberg used movable types at all. In 2004, Italian professor Bruno Fabbiani claimed that examination of the 42-line Bible revealed an overlapping of letters, suggesting that Gutenberg did not in fact use movable type (individual cast characters) but rather used whole plates made from a system somewhat like a modern typewriter, whereby the letters were stamped successively into the plate and then printed. However, most specialists regard the occasional overlapping of type as caused by paper movement over pieces of type of slightly unequal height.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"forkOwner\",\"name\":\"repo\",\"expression\":\"a532f0a9445cdf90a19c6812cff89d1674991774\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:31:52 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4991", + "X-RateLimit-Reset": "1568125908", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7A11:3ED82:17F3A87:1D21490:5D77A5C7", + "content-length": "7803", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1Njc4Njc=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzU2Nzg2NzphNTMyZjBhOTQ0NWNkZjkwYTE5YzY4MTJjZmY4OWQxNjc0OTkxNzc0\",\"text\":\"---\\ntitle: Humane Typography in the Digital Age\\ndate: \\\"2017-08-19T22:40:32.169Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Typography\\\"\\ntags:\\n - \\\"Design\\\"\\n - \\\"Typography\\\"\\n - \\\"Web Development\\\"\\ndescription: \\\"An Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\\\"\\ncanonical: ''\\n---\\n\\n- [The first transition](#the-first-transition)\\n- [The digital age](#the-digital-age)\\n- [Loss of humanity through transitions](#loss-of-humanity-through-transitions)\\n- [Chasing perfection](#chasing-perfection)\\n\\nAn Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\\n\\nThe typography of this industrial age was no longer handcrafted. Mass production and profit became more important. Quantity mattered more than the quality. The books and printed works in general lost a part of its humanity. The typefaces were not produced by craftsmen anymore. It was the machines printing and tying the books together now. The craftsmen had to let go of their craft and became a cog in the process. An extension of the industrial machine.\\n\\nBut the victory of the industrialism didn’t mean that the craftsmen were completely extinct. The two worlds continued to coexist independently. Each recognising the good in the other — the power of industrialism and the humanity of craftsmanship. This was the second transition that would strip typography of a part of its humanity. We have to go 500 years back in time to meet the first one.\\n\\n## The first transition\\n\\nA similar conflict emerged after the invention of the first printing press in Europe. Johannes Gutenberg invented movable type and used it to produce different compositions. His workshop could print up to 240 impressions per hour. Until then, the books were being copied by hand. All the books were handwritten and decorated with hand drawn ornaments and figures. A process of copying a book was long but each book, even a copy, was a work of art.\\n\\nThe first printed books were, at first, perceived as inferior to the handwritten ones. They were smaller and cheaper to produce. Movable type provided the printers with flexibility that allowed them to print books in languages other than Latin. Gill describes the transition to industrialism as something that people needed and wanted. Something similar happened after the first printed books emerged. People wanted books in a language they understood and they wanted books they could take with them. They were hungry for knowledge and printed books satisfied this hunger.\\n\\n![42-line-bible.jpg](/media/42-line-bible.jpg)\\n\\n*The 42–Line Bible, printed by Gutenberg.*\\n\\nBut, through this transition, the book lost a large part of its humanity. The machine took over most of the process but craftsmanship was still a part of it. The typefaces were cut manually by the first punch cutters. The paper was made by hand. The illustrations and ornaments were still being hand drawn. These were the remains of the craftsmanship that went almost extinct in the times of Eric Gill.\\n\\n## The digital age\\n\\nThe first transition took away a large part of humanity from written communication. Industrialisation, the second transition described by Eric Gill, took away most of what was left. But it’s the third transition that stripped it naked. Typefaces are faceless these days. They’re just fonts on our computers. Hardly anyone knows their stories. Hardly anyone cares. Flicking through thousands of typefaces and finding the “right one” is a matter of minutes.\\n\\n> In the new computer age the proliferation of typefaces and type manipulations represents a new level of visual pollution threatening our culture. Out of thousands of typefaces, all we need are a few basic ones, and trash the rest.\\n>\\n— Massimo Vignelli\\n\\nTypography is not about typefaces. It’s not about what looks best, it’s about what feels right. What communicates the message best. Typography, in its essence, is about the message. “Typographical design should perform optically what the speaker creates through voice and gesture of his thoughts.”, as El Lissitzky, a famous Russian typographer, put it.\\n\\n## Loss of humanity through transitions\\n\\nEach transition took away a part of humanity from written language. Handwritten books being the most humane form and the digital typefaces being the least. Overuse of Helvetica is a good example. Messages are being told in a typeface just because it’s a safe option. It’s always there. Everyone knows it but yet, nobody knows it. Stop someone on the street and ask him what Helvetica is? Ask a designer the same question. Ask him where it came from, when, why and who designed it. Most of them will fail to answer these questions. Most of them used it in their precious projects but they still don’t spot it in the street.\\n\\n
\\n\\t
\\n\\t\\t

Knowledge of the quality of a typeface is of the greatest importance for the functional, aesthetic and psychological effect.

\\n\\t\\t
\\n\\t\\t\\t— Josef Mueller-Brockmann\\n\\t\\t
\\n\\t
\\n
\\n\\nTypefaces don’t look handmade these days. And that’s all right. They don’t have to. Industrialism took that away from them and we’re fine with it. We’ve traded that part of humanity for a process that produces more books that are easier to read. That can’t be bad. And it isn’t.\\n\\n> Humane typography will often be comparatively rough and even uncouth; but while a certain uncouthness does not seriously matter in humane works, uncouthness has no excuse whatever in the productions of the machine.\\n>\\n> — Eric Gill\\n\\nWe’ve come close to “perfection” in the last five centuries. The letters are crisp and without rough edges. We print our compositions with high–precision printers on a high quality, machine made paper.\\n\\n![type-through-time.jpg](/media/type-through-time.jpg)\\n\\n*Type through 5 centuries.*\\n\\nWe lost a part of ourselves because of this chase after perfection. We forgot about the craftsmanship along the way. And the worst part is that we don’t care. The transition to the digital age made that clear. We choose typefaces like clueless zombies. There’s no meaning in our work. Type sizes, leading, margins… It’s all just a few clicks or lines of code. The message isn’t important anymore. There’s no more “why” behind the “what”.\\n\\n## Chasing perfection\\n\\nHuman beings aren’t perfect. Perfection is something that will always elude us. There will always be a small part of humanity in everything we do. No matter how small that part, we should make sure that it transcends the limits of the medium. We have to think about the message first. What typeface should we use and why? Does the typeface match the message and what we want to communicate with it? What will be the leading and why? Will there be more typefaces in our design? On what ground will they be combined? What makes our design unique and why? This is the part of humanity that is left in typography. It might be the last part. Are we really going to give it up?\\n\\n*Originally published by [Matej Latin](http://matejlatin.co.uk/) on [Medium](https://medium.com/design-notes/humane-typography-in-the-digital-age-9bd5c16199bd?ref=webdesignernews.com#.lygo82z0x).*\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "status": 200 + } +] \ No newline at end of file diff --git a/cypress/fixtures/Github Backend Editorial Workflow - GraphQL API - Open Authoring__successfully loads.json b/cypress/fixtures/Github Backend Editorial Workflow - GraphQL API - Open Authoring__successfully loads.json new file mode 100644 index 00000000..543036b7 --- /dev/null +++ b/cypress/fixtures/Github Backend Editorial Workflow - GraphQL API - Open Authoring__successfully loads.json @@ -0,0 +1,355 @@ +[ + { + "method": "GET", + "url": "/user", + "headers": { + "Date": "Tue, 10 Sep 2019 13:28:41 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4995", + "X-RateLimit-Reset": "1568125713", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"fb606f875be1d23b690ea5f5e26b9fe9\"", + "Last-Modified": "Wed, 28 Aug 2019 04:48:54 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B1A:B4DA:4F823D:60FD96:5D77A508", + "content-length": "1321", + "connection": "keep-alive" + }, + "response": "{\"login\":\"owner\",\"id\":1,\"avatar_url\":\"https://avatars1.githubusercontent.com/u/7892489?v=4\",\"name\":\"owner\"}", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/collaborators/owner/permission", + "headers": { + "Date": "Tue, 10 Sep 2019 13:28:41 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4994", + "X-RateLimit-Reset": "1568125713", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"254416b9fc40a4c5acc82d271a9b493b\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B1C:B4E0:161EDC2:1AEAB66:5D77A509", + "content-length": "1071", + "connection": "keep-alive" + }, + "response": "{\n \"permission\": \"admin\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n}\n", + "status": 200 + }, + { + "body": "{\"operationName\":null,\"variables\":{},\"query\":\"{\\n viewer {\\n id\\n avatar_url: avatarUrl\\n name\\n login\\n __typename\\n }\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:28:43 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4999", + "X-RateLimit-Reset": "1568125723", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7B1E:2B15:4B8021:5B95FE:5D77A50A", + "content-length": "179", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"viewer\":{\"id\":\"MDQ6VXNlcjI2NzYwNTcx\",\"avatar_url\":\"https://avatars1.githubusercontent.com/u/7892489?v=4\",\"name\":\"owner\",\"login\":\"owner\",\"__typename\":\"User\"}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"repoPermission\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\"},\"query\":\"query repoPermission($owner: String!, $name: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n viewerPermission\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:28:44 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4998", + "X-RateLimit-Reset": "1568125723", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7B20:244E7:112FF8C:14F7153:5D77A50B", + "content-length": "119", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"viewerPermission\":\"ADMIN\"}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"files\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"master:content/posts\"},\"query\":\"query files($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...FileEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment FileEntryParts on TreeEntry {\\n name\\n sha: oid\\n type\\n blob: object {\\n ... on Blob {\\n size: byteSize\\n __typename\\n }\\n __typename\\n }\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:28:45 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4997", + "X-RateLimit-Reset": "1568125723", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7B2B:3ED7B:11E9E17:15C01CC:5D77A50D", + "content-length": "1218", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6VHJlZTIwNzU2NzAxMTozNDg5MjU3NWUyMTZjMDZlNzU3MDkzZjAzNmJkOGUwNTdjNzhhNTJm\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"__typename\":\"Tree\",\"entries\":[{\"name\":\"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\"sha\":\"6d51a38aed7139d2117724b1e307657b6ff2d043\",\"type\":\"blob\",\"blob\":{\"size\":1707,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\"sha\":\"d0582dd245a3f408fb3fe2333bf01400007476e9\",\"type\":\"blob\",\"blob\":{\"size\":2565,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2016-02-02---A-Brief-History-of-Typography.md\",\"sha\":\"0eea554365f002d0f1572af9a58522d335a794d5\",\"type\":\"blob\",\"blob\":{\"size\":2786,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2017-18-08---The-Birth-of-Movable-Type.md\",\"sha\":\"44f78c474d04273185a95821426f75affc9b0044\",\"type\":\"blob\",\"blob\":{\"size\":16071,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\"sha\":\"a532f0a9445cdf90a19c6812cff89d1674991774\",\"type\":\"blob\",\"blob\":{\"size\":7465,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"}]}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"files\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"master:static/media\"},\"query\":\"query files($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...FileEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment FileEntryParts on TreeEntry {\\n name\\n sha: oid\\n type\\n blob: object {\\n ... on Blob {\\n size: byteSize\\n __typename\\n }\\n __typename\\n }\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:28:46 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4996", + "X-RateLimit-Reset": "1568125723", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7B5C:B4E0:161F550:1AEB4D1:5D77A50E", + "content-length": "1837", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6VHJlZTIwNzU2NzAxMTo5Yjc2OTliNTdlMTQzMDkxMGRiODI4MzFkY2Y2YjhhMWQxZGJkYWM5\",\"sha\":\"9b7699b57e1430910db82831dcf6b8a1d1dbdac9\",\"__typename\":\"Tree\",\"entries\":[{\"name\":\"42-line-bible.jpg\",\"sha\":\"41c8d12f9ca5864beb827c381fbeff935209d5fb\",\"type\":\"blob\",\"blob\":{\"size\":671242,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"gutenberg.jpg\",\"sha\":\"04315e355873ea5d358d9c371c39a6845c1ae4ae\",\"type\":\"blob\",\"blob\":{\"size\":155002,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-0.jpg\",\"sha\":\"b70a1b64fd4fa9635823231a0ba92c6dc9393f16\",\"type\":\"blob\",\"blob\":{\"size\":660287,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-1.jpg\",\"sha\":\"05eedae372b829c62501ac751b2d42dcc432541b\",\"type\":\"blob\",\"blob\":{\"size\":392411,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-2.jpg\",\"sha\":\"53845ed35faf8939bea242bb85eda7c324b1be0b\",\"type\":\"blob\",\"blob\":{\"size\":99147,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-3.jpg\",\"sha\":\"8b2339d97069e826fae1f156212e40ae458454e3\",\"type\":\"blob\",\"blob\":{\"size\":358022,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-4.jpg\",\"sha\":\"a8f6f21253a67a4284b5a953b2fe633d44152ecd\",\"type\":\"blob\",\"blob\":{\"size\":114837,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"movable-type.jpg\",\"sha\":\"57b4e925ea00bd8e195cf4418eb6eb2995ea5f10\",\"type\":\"blob\",\"blob\":{\"size\":559028,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"printing-press.jpg\",\"sha\":\"d27f56c9437d9becd2f56cc627c9322c2f1f61f6\",\"type\":\"blob\",\"blob\":{\"size\":279283,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"type-through-time.jpg\",\"sha\":\"3f08366a805c51a60ec5056010f22de4ba08abaa\",\"type\":\"blob\",\"blob\":{\"size\":117689,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"}]}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"d0582dd245a3f408fb3fe2333bf01400007476e9\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:28:47 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4995", + "X-RateLimit-Reset": "1568125723", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7B62:3ED7B:11EA0A8:15C04F9:5D77A50F", + "content-length": "2866", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzU2NzAxMTpkMDU4MmRkMjQ1YTNmNDA4ZmIzZmUyMzMzYmYwMTQwMDAwNzQ3NmU5\",\"text\":\"---\\ntitle: The Origins of Social Stationery Lettering\\ndate: \\\"2016-12-01T22:40:32.169Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Design Culture\\\"\\ndescription: \\\"Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante.\\\"\\ncanonical: ''\\n---\\n\\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \\n\\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\\n\\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-3.jpg)\\n\\n## Header Level 2\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \\n\\n
\\n\\t
\\n\\t\\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\\n\\t\\t
\\n\\t\\t\\t— Aliquam tincidunt mauris eu risus.\\n\\t\\t
\\n\\t
\\n
\\n\\n### Header Level 3\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\\n\\n```css\\n#header h1 a {\\n display: block;\\n width: 300px;\\n height: 80px;\\n}\\n```\\n\\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"a532f0a9445cdf90a19c6812cff89d1674991774\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:28:49 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4994", + "X-RateLimit-Reset": "1568125723", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7B66:244EB:1770FD7:1C75FFD:5D77A511", + "content-length": "7803", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzU2NzAxMTphNTMyZjBhOTQ0NWNkZjkwYTE5YzY4MTJjZmY4OWQxNjc0OTkxNzc0\",\"text\":\"---\\ntitle: Humane Typography in the Digital Age\\ndate: \\\"2017-08-19T22:40:32.169Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Typography\\\"\\ntags:\\n - \\\"Design\\\"\\n - \\\"Typography\\\"\\n - \\\"Web Development\\\"\\ndescription: \\\"An Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\\\"\\ncanonical: ''\\n---\\n\\n- [The first transition](#the-first-transition)\\n- [The digital age](#the-digital-age)\\n- [Loss of humanity through transitions](#loss-of-humanity-through-transitions)\\n- [Chasing perfection](#chasing-perfection)\\n\\nAn Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\\n\\nThe typography of this industrial age was no longer handcrafted. Mass production and profit became more important. Quantity mattered more than the quality. The books and printed works in general lost a part of its humanity. The typefaces were not produced by craftsmen anymore. It was the machines printing and tying the books together now. The craftsmen had to let go of their craft and became a cog in the process. An extension of the industrial machine.\\n\\nBut the victory of the industrialism didn’t mean that the craftsmen were completely extinct. The two worlds continued to coexist independently. Each recognising the good in the other — the power of industrialism and the humanity of craftsmanship. This was the second transition that would strip typography of a part of its humanity. We have to go 500 years back in time to meet the first one.\\n\\n## The first transition\\n\\nA similar conflict emerged after the invention of the first printing press in Europe. Johannes Gutenberg invented movable type and used it to produce different compositions. His workshop could print up to 240 impressions per hour. Until then, the books were being copied by hand. All the books were handwritten and decorated with hand drawn ornaments and figures. A process of copying a book was long but each book, even a copy, was a work of art.\\n\\nThe first printed books were, at first, perceived as inferior to the handwritten ones. They were smaller and cheaper to produce. Movable type provided the printers with flexibility that allowed them to print books in languages other than Latin. Gill describes the transition to industrialism as something that people needed and wanted. Something similar happened after the first printed books emerged. People wanted books in a language they understood and they wanted books they could take with them. They were hungry for knowledge and printed books satisfied this hunger.\\n\\n![42-line-bible.jpg](/media/42-line-bible.jpg)\\n\\n*The 42–Line Bible, printed by Gutenberg.*\\n\\nBut, through this transition, the book lost a large part of its humanity. The machine took over most of the process but craftsmanship was still a part of it. The typefaces were cut manually by the first punch cutters. The paper was made by hand. The illustrations and ornaments were still being hand drawn. These were the remains of the craftsmanship that went almost extinct in the times of Eric Gill.\\n\\n## The digital age\\n\\nThe first transition took away a large part of humanity from written communication. Industrialisation, the second transition described by Eric Gill, took away most of what was left. But it’s the third transition that stripped it naked. Typefaces are faceless these days. They’re just fonts on our computers. Hardly anyone knows their stories. Hardly anyone cares. Flicking through thousands of typefaces and finding the “right one” is a matter of minutes.\\n\\n> In the new computer age the proliferation of typefaces and type manipulations represents a new level of visual pollution threatening our culture. Out of thousands of typefaces, all we need are a few basic ones, and trash the rest.\\n>\\n— Massimo Vignelli\\n\\nTypography is not about typefaces. It’s not about what looks best, it’s about what feels right. What communicates the message best. Typography, in its essence, is about the message. “Typographical design should perform optically what the speaker creates through voice and gesture of his thoughts.”, as El Lissitzky, a famous Russian typographer, put it.\\n\\n## Loss of humanity through transitions\\n\\nEach transition took away a part of humanity from written language. Handwritten books being the most humane form and the digital typefaces being the least. Overuse of Helvetica is a good example. Messages are being told in a typeface just because it’s a safe option. It’s always there. Everyone knows it but yet, nobody knows it. Stop someone on the street and ask him what Helvetica is? Ask a designer the same question. Ask him where it came from, when, why and who designed it. Most of them will fail to answer these questions. Most of them used it in their precious projects but they still don’t spot it in the street.\\n\\n
\\n\\t
\\n\\t\\t

Knowledge of the quality of a typeface is of the greatest importance for the functional, aesthetic and psychological effect.

\\n\\t\\t
\\n\\t\\t\\t— Josef Mueller-Brockmann\\n\\t\\t
\\n\\t
\\n
\\n\\nTypefaces don’t look handmade these days. And that’s all right. They don’t have to. Industrialism took that away from them and we’re fine with it. We’ve traded that part of humanity for a process that produces more books that are easier to read. That can’t be bad. And it isn’t.\\n\\n> Humane typography will often be comparatively rough and even uncouth; but while a certain uncouthness does not seriously matter in humane works, uncouthness has no excuse whatever in the productions of the machine.\\n>\\n> — Eric Gill\\n\\nWe’ve come close to “perfection” in the last five centuries. The letters are crisp and without rough edges. We print our compositions with high–precision printers on a high quality, machine made paper.\\n\\n![type-through-time.jpg](/media/type-through-time.jpg)\\n\\n*Type through 5 centuries.*\\n\\nWe lost a part of ourselves because of this chase after perfection. We forgot about the craftsmanship along the way. And the worst part is that we don’t care. The transition to the digital age made that clear. We choose typefaces like clueless zombies. There’s no meaning in our work. Type sizes, leading, margins… It’s all just a few clicks or lines of code. The message isn’t important anymore. There’s no more “why” behind the “what”.\\n\\n## Chasing perfection\\n\\nHuman beings aren’t perfect. Perfection is something that will always elude us. There will always be a small part of humanity in everything we do. No matter how small that part, we should make sure that it transcends the limits of the medium. We have to think about the message first. What typeface should we use and why? Does the typeface match the message and what we want to communicate with it? What will be the leading and why? Will there be more typefaces in our design? On what ground will they be combined? What makes our design unique and why? This is the part of humanity that is left in typography. It might be the last part. Are we really going to give it up?\\n\\n*Originally published by [Matej Latin](http://matejlatin.co.uk/) on [Medium](https://medium.com/design-notes/humane-typography-in-the-digital-age-9bd5c16199bd?ref=webdesignernews.com#.lygo82z0x).*\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"44f78c474d04273185a95821426f75affc9b0044\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:28:49 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4993", + "X-RateLimit-Reset": "1568125723", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7B69:15110:17E7D5D:1D07C08:5D77A511", + "content-length": "16478", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzU2NzAxMTo0NGY3OGM0NzRkMDQyNzMxODVhOTU4MjE0MjZmNzVhZmZjOWIwMDQ0\",\"text\":\"---\\ntitle: \\\"Johannes Gutenberg: The Birth of Movable Type\\\"\\ndate: \\\"2017-08-18T22:12:03.284Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Typography\\\"\\ntags:\\n - \\\"Open source\\\"\\n - \\\"Gatsby\\\"\\n - \\\"Typography\\\"\\ndescription: \\\"German inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\\\"\\ncanonical: ''\\n---\\n\\nGerman inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\\n\\n**Johannes Gensfleisch zur Laden zum Gutenberg** (c. 1398 – 1468) was a German blacksmith, goldsmith, printer, and publisher who introduced printing to Europe. His invention of mechanical movable type printing started the Printing Revolution and is widely regarded as the most important event of the modern period. It played a key role in the development of the Renaissance, Reformation, the Age of Enlightenment, and the Scientific revolution and laid the material basis for the modern knowledge-based economy and the spread of learning to the masses.\\n\\n
\\n\\t\\\"Gutenberg\\\"\\n\\t
Johannes Gutenberg
\\n
\\n\\nWith his invention of the printing press, Gutenberg was the first European to use movable type printing, in around 1439. Among his many contributions to printing are: the invention of a process for mass-producing movable type; the use of oil-based ink; and the use of a wooden printing press similar to the agricultural screw presses of the period. His truly epochal invention was the combination of these elements into a practical system that allowed the mass production of printed books and was economically viable for printers and readers alike. Gutenberg's method for making type is traditionally considered to have included a type metal alloy and a hand mould for casting type. The alloy was a mixture of lead, tin, and antimony that melted at a relatively low temperature for faster and more economical casting, cast well, and created a durable type.\\n\\nIn Renaissance Europe, the arrival of mechanical movable type printing introduced the era of mass communication which permanently altered the structure of society. The relatively unrestricted circulation of information — including revolutionary ideas — transcended borders, captured the masses in the Reformation and threatened the power of political and religious authorities; the sharp increase in literacy broke the monopoly of the literate elite on education and learning and bolstered the emerging middle class. Across Europe, the increasing cultural self-awareness of its people led to the rise of proto-nationalism, accelerated by the flowering of the European vernacular languages to the detriment of Latin's status as lingua franca. In the 19th century, the replacement of the hand-operated Gutenberg-style press by steam-powered rotary presses allowed printing on an industrial scale, while Western-style printing was adopted all over the world, becoming practically the sole medium for modern bulk printing.\\n\\nThe use of movable type was a marked improvement on the handwritten manuscript, which was the existing method of book production in Europe, and upon woodblock printing, and revolutionized European book-making. Gutenberg's printing technology spread rapidly throughout Europe and later the world.\\n\\nHis major work, the Gutenberg Bible (also known as the 42-line Bible), has been acclaimed for its high aesthetic and technical quality.\\n\\n## Printing Press\\n\\nAround 1439, Gutenberg was involved in a financial misadventure making polished metal mirrors (which were believed to capture holy light from religious relics) for sale to pilgrims to Aachen: in 1439 the city was planning to exhibit its collection of relics from Emperor Charlemagne but the event was delayed by one year due to a severe flood and the capital already spent could not be repaid. When the question of satisfying the investors came up, Gutenberg is said to have promised to share a “secret”. It has been widely speculated that this secret may have been the idea of printing with movable type. Also around 1439–1440, the Dutch Laurens Janszoon Coster came up with the idea of printing. Legend has it that the idea came to him “like a ray of light”.\\n\\n
\\n\\t\\\"Early\\n\\t
Early wooden printing press as depicted in 1568.
\\n
\\n\\nUntil at least 1444 he lived in Strasbourg, most likely in the St. Arbogast parish. It was in Strasbourg in 1440 that Gutenberg is said to have perfected and unveiled the secret of printing based on his research, mysteriously entitled Kunst und Aventur (art and enterprise). It is not clear what work he was engaged in, or whether some early trials with printing from movable type may have been conducted there. After this, there is a gap of four years in the record. In 1448, he was back in Mainz, where he took out a loan from his brother-in-law Arnold Gelthus, quite possibly for a printing press or related paraphernalia. By this date, Gutenberg may have been familiar with intaglio printing; it is claimed that he had worked on copper engravings with an artist known as the Master of Playing Cards.\\n\\nBy 1450, the press was in operation, and a German poem had been printed, possibly the first item to be printed there. Gutenberg was able to convince the wealthy moneylender Johann Fust for a loan of 800 guilders. Peter Schöffer, who became Fust’s son-in-law, also joined the enterprise. Schöffer had worked as a scribe in Paris and is believed to have designed some of the first typefaces.\\n\\n
\\n\\t
\\n\\t\\t

All that has been written to me about that marvelous man seen at Frankfurt is true. I have not seen complete Bibles but only a number of quires of various books of the Bible. The script was very neat and legible, not at all difficult to follow—your grace would be able to read it without effort, and indeed without glasses.

\\n\\t\\t
\\n\\t\\t\\t—Future pope Pius II in a letter to Cardinal Carvajal, March 1455\\n\\t\\t
\\n\\t
\\n
\\n\\nGutenberg's workshop was set up at Hof Humbrecht, a property belonging to a distant relative. It is not clear when Gutenberg conceived the Bible project, but for this he borrowed another 800 guilders from Fust, and work commenced in 1452. At the same time, the press was also printing other, more lucrative texts (possibly Latin grammars). There is also some speculation that there may have been two presses, one for the pedestrian texts, and one for the Bible. One of the profit-making enterprises of the new press was the printing of thousands of indulgences for the church, documented from 1454–55.\\n\\nIn 1455 Gutenberg completed his 42-line Bible, known as the Gutenberg Bible. About 180 copies were printed, most on paper and some on vellum.\\n\\n## Court Case\\n\\nSome time in 1456, there was a dispute between Gutenberg and Fust, and Fust demanded his money back, accusing Gutenberg of misusing the funds. Meanwhile the expenses of the Bible project had proliferated, and Gutenberg's debt now exceeded 20,000 guilders. Fust sued at the archbishop's court. A November 1455 legal document records that there was a partnership for a \\\"project of the books,\\\" the funds for which Gutenberg had used for other purposes, according to Fust. The court decided in favor of Fust, giving him control over the Bible printing workshop and half of all printed Bibles.\\n\\nThus Gutenberg was effectively bankrupt, but it appears he retained (or re-started) a small printing shop, and participated in the printing of a Bible in the town of Bamberg around 1459, for which he seems at least to have supplied the type. But since his printed books never carry his name or a date, it is difficult to be certain, and there is consequently a considerable scholarly debate on this subject. It is also possible that the large Catholicon dictionary, 300 copies of 754 pages, printed in Mainz in 1460, may have been executed in his workshop.\\n\\nMeanwhile, the Fust–Schöffer shop was the first in Europe to bring out a book with the printer's name and date, the Mainz Psalter of August 1457, and while proudly proclaiming the mechanical process by which it had been produced, it made no mention of Gutenberg.\\n\\n## Later Life\\n\\nIn 1462, during a conflict between two archbishops, Mainz was sacked by archbishop Adolph von Nassau, and Gutenberg was exiled. An old man by now, he moved to Eltville where he may have initiated and supervised a new printing press belonging to the brothers Bechtermünze.\\n\\nIn January 1465, Gutenberg's achievements were recognized and he was given the title Hofmann (gentleman of the court) by von Nassau. This honor included a stipend, an annual court outfit, as well as 2,180 litres of grain and 2,000 litres of wine tax-free. It is believed he may have moved back to Mainz around this time, but this is not certain.\\n\\n***\\n\\nGutenberg died in 1468 and was buried in the Franciscan church at Mainz, his contributions largely unknown. This church and the cemetery were later destroyed, and Gutenberg's grave is now lost.\\n\\nIn 1504, he was mentioned as the inventor of typography in a book by Professor Ivo Wittig. It was not until 1567 that the first portrait of Gutenberg, almost certainly an imaginary reconstruction, appeared in Heinrich Pantaleon's biography of famous Germans.\\n\\n## Printing Method With Movable Type\\n\\nGutenberg's early printing process, and what tests he may have made with movable type, are not known in great detail. His later Bibles were printed in such a way as to have required large quantities of type, some estimates suggesting as many as 100,000 individual sorts. Setting each page would take, perhaps, half a day, and considering all the work in loading the press, inking the type, pulling the impressions, hanging up the sheets, distributing the type, etc., it is thought that the Gutenberg–Fust shop might have employed as many as 25 craftsmen.\\n\\n![Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5](/media/movable-type.jpg)\\n\\n*Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5*\\n\\nGutenberg's technique of making movable type remains unclear. In the following decades, punches and copper matrices became standardized in the rapidly disseminating printing presses across Europe. Whether Gutenberg used this sophisticated technique or a somewhat primitive version has been the subject of considerable debate.\\n\\nIn the standard process of making type, a hard metal punch (made by punchcutting, with the letter carved back to front) is hammered into a softer copper bar, creating a matrix. This is then placed into a hand-held mould and a piece of type, or \\\"sort\\\", is cast by filling the mould with molten type-metal; this cools almost at once, and the resulting piece of type can be removed from the mould. The matrix can be reused to create hundreds, or thousands, of identical sorts so that the same character appearing anywhere within the book will appear very uniform, giving rise, over time, to the development of distinct styles of typefaces or fonts. After casting, the sorts are arranged into type-cases, and used to make up pages which are inked and printed, a procedure which can be repeated hundreds, or thousands, of times. The sorts can be reused in any combination, earning the process the name of “movable type”.\\n\\nThe invention of the making of types with punch, matrix and mold has been widely attributed to Gutenberg. However, recent evidence suggests that Gutenberg's process was somewhat different. If he used the punch and matrix approach, all his letters should have been nearly identical, with some variations due to miscasting and inking. However, the type used in Gutenberg's earliest work shows other variations.\\n\\n
\\n\\t
\\n\\t\\t

It is a press, certainly, but a press from which shall flow in inexhaustible streams… Through it, god will spread his word.

\\n\\t\\t
\\n\\t\\t\\t—Johannes Gutenberg\\n\\t\\t
\\n\\t
\\n
\\n\\nIn 2001, the physicist Blaise Agüera y Arcas and Princeton librarian Paul Needham, used digital scans of a Papal bull in the Scheide Library, Princeton, to carefully compare the same letters (types) appearing in different parts of the printed text. The irregularities in Gutenberg's type, particularly in simple characters such as the hyphen, suggested that the variations could not have come from either ink smear or from wear and damage on the pieces of metal on the types themselves. While some identical types are clearly used on other pages, other variations, subjected to detailed image analysis, suggested that they could not have been produced from the same matrix. Transmitted light pictures of the page also appeared to reveal substructures in the type that could not arise from traditional punchcutting techniques. They hypothesized that the method may have involved impressing simple shapes to create alphabets in “cuneiform” style in a matrix made of some soft material, perhaps sand. Casting the type would destroy the mould, and the matrix would need to be recreated to make each additional sort. This could explain the variations in the type, as well as the substructures observed in the printed images.\\n\\nThus, they feel that “the decisive factor for the birth of typography”, the use of reusable moulds for casting type, might have been a more progressive process than was previously thought. They suggest that the additional step of using the punch to create a mould that could be reused many times was not taken until twenty years later, in the 1470s. Others have not accepted some or all of their suggestions, and have interpreted the evidence in other ways, and the truth of the matter remains very uncertain.\\n\\nA 1568 history by Hadrianus Junius of Holland claims that the basic idea of the movable type came to Gutenberg from Laurens Janszoon Coster via Fust, who was apprenticed to Coster in the 1430s and may have brought some of his equipment from Haarlem to Mainz. While Coster appears to have experimented with moulds and castable metal type, there is no evidence that he had actually printed anything with this technology. He was an inventor and a goldsmith. However, there is one indirect supporter of the claim that Coster might be the inventor. The author of the Cologne Chronicle of 1499 quotes Ulrich Zell, the first printer of Cologne, that printing was performed in Mainz in 1450, but that some type of printing of lower quality had previously occurred in the Netherlands. However, the chronicle does not mention the name of Coster, while it actually credits Gutenberg as the \\\"first inventor of printing\\\" in the very same passage (fol. 312). The first securely dated book by Dutch printers is from 1471, and the Coster connection is today regarded as a mere legend.\\n\\nThe 19th century printer and typefounder Fournier Le Jeune suggested that Gutenberg might not have been using type cast with a reusable matrix, but possibly wooden types that were carved individually. A similar suggestion was made by Nash in 2004. This remains possible, albeit entirely unproven.\\n\\nIt has also been questioned whether Gutenberg used movable types at all. In 2004, Italian professor Bruno Fabbiani claimed that examination of the 42-line Bible revealed an overlapping of letters, suggesting that Gutenberg did not in fact use movable type (individual cast characters) but rather used whole plates made from a system somewhat like a modern typewriter, whereby the letters were stamped successively into the plate and then printed. However, most specialists regard the occasional overlapping of type as caused by paper movement over pieces of type of slightly unequal height.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"6d51a38aed7139d2117724b1e307657b6ff2d043\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:28:49 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4992", + "X-RateLimit-Reset": "1568125723", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7B6B:B4DC:A6CEAD:CAD697:5D77A511", + "content-length": "1973", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzU2NzAxMTo2ZDUxYTM4YWVkNzEzOWQyMTE3NzI0YjFlMzA3NjU3YjZmZjJkMDQz\",\"text\":\"---\\ntitle: Perfecting the Art of Perfection\\ndate: \\\"2016-09-01T23:46:37.121Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Design Inspiration\\\"\\ntags:\\n - \\\"Handwriting\\\"\\n - \\\"Learning to write\\\"\\ndescription: \\\"Quisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\\\"\\ncanonical: ''\\n---\\n\\nQuisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\\n\\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-2.jpg)\\n\\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. \\n\\nPraesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"0eea554365f002d0f1572af9a58522d335a794d5\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:28:49 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4991", + "X-RateLimit-Reset": "1568125723", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7B6D:244EB:1770FE0:1C76005:5D77A511", + "content-length": "3102", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NjcwMTE=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzU2NzAxMTowZWVhNTU0MzY1ZjAwMmQwZjE1NzJhZjlhNTg1MjJkMzM1YTc5NGQ1\",\"text\":\"---\\ntitle: \\\"A Brief History of Typography\\\"\\ndate: \\\"2016-02-02T22:40:32.169Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Design Inspiration\\\"\\ntags:\\n - \\\"Linotype\\\"\\n - \\\"Monotype\\\"\\n - \\\"History of typography\\\"\\n - \\\"Helvetica\\\"\\ndescription: \\\"Morbi in sem quis dui placerat ornare. Pellentesque odio nisi, euismod in, pharetra a, ultricies in, diam. Sed arcu. Cras consequat.\\\"\\ncanonical: ''\\n---\\n\\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \\n\\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\\n\\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-0.jpg)\\n\\n## Header Level 2\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \\n\\n
\\n\\t
\\n\\t\\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\\n\\t\\t
\\n\\t\\t\\t— Aliquam tincidunt mauris eu risus.\\n\\t\\t
\\n\\t
\\n
\\n\\n### Header Level 3\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\\n\\n```css\\n#header h1 a {\\n display: block;\\n width: 300px;\\n height: 80px;\\n}\\n```\\n\\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "status": 200 + } +] \ No newline at end of file diff --git a/cypress/fixtures/Github Backend Editorial Workflow - GraphQL API__can change status on and publish multiple entries.json b/cypress/fixtures/Github Backend Editorial Workflow - GraphQL API__can change status on and publish multiple entries.json new file mode 100644 index 00000000..d17bfd98 --- /dev/null +++ b/cypress/fixtures/Github Backend Editorial Workflow - GraphQL API__can change status on and publish multiple entries.json @@ -0,0 +1,3700 @@ +[ + { + "body": "{\"operationName\":null,\"variables\":{},\"query\":\"{\\n viewer {\\n id\\n avatar_url: avatarUrl\\n name\\n login\\n __typename\\n }\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Wed, 11 Sep 2019 06:53:04 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4999", + "X-RateLimit-Reset": "1568188384", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7BF6:15110:2C22A87:35BCD79:5D7899D0", + "content-length": "179", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"viewer\":{\"id\":\"MDQ6VXNlcjI2NzYwNTcx\",\"avatar_url\":\"https://avatars1.githubusercontent.com/u/7892489?v=4\",\"name\":\"owner\",\"login\":\"owner\",\"__typename\":\"User\"}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"repoPermission\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\"},\"query\":\"query repoPermission($owner: String!, $name: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n viewerPermission\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Wed, 11 Sep 2019 06:53:05 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4998", + "X-RateLimit-Reset": "1568188384", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7BF9:2B1F:207C072:27C604D:5D7899D1", + "content-length": "119", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3NDM0NTM=\",\"__typename\":\"Repository\",\"viewerPermission\":\"ADMIN\"}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"files\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"master:content/posts\"},\"query\":\"query files($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...FileEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment FileEntryParts on TreeEntry {\\n name\\n sha: oid\\n type\\n blob: object {\\n ... on Blob {\\n size: byteSize\\n __typename\\n }\\n __typename\\n }\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Wed, 11 Sep 2019 06:53:06 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4997", + "X-RateLimit-Reset": "1568188384", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7A00:B4E0:291146E:321304F:5D7899D2", + "content-length": "1218", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3NDM0NTM=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6VHJlZTIwNzc0MzQ1MzozNDg5MjU3NWUyMTZjMDZlNzU3MDkzZjAzNmJkOGUwNTdjNzhhNTJm\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"__typename\":\"Tree\",\"entries\":[{\"name\":\"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\"sha\":\"6d51a38aed7139d2117724b1e307657b6ff2d043\",\"type\":\"blob\",\"blob\":{\"size\":1707,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\"sha\":\"d0582dd245a3f408fb3fe2333bf01400007476e9\",\"type\":\"blob\",\"blob\":{\"size\":2565,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2016-02-02---A-Brief-History-of-Typography.md\",\"sha\":\"0eea554365f002d0f1572af9a58522d335a794d5\",\"type\":\"blob\",\"blob\":{\"size\":2786,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2017-18-08---The-Birth-of-Movable-Type.md\",\"sha\":\"44f78c474d04273185a95821426f75affc9b0044\",\"type\":\"blob\",\"blob\":{\"size\":16071,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\"sha\":\"a532f0a9445cdf90a19c6812cff89d1674991774\",\"type\":\"blob\",\"blob\":{\"size\":7465,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"}]}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"files\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"master:static/media\"},\"query\":\"query files($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...FileEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment FileEntryParts on TreeEntry {\\n name\\n sha: oid\\n type\\n blob: object {\\n ... on Blob {\\n size: byteSize\\n __typename\\n }\\n __typename\\n }\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Wed, 11 Sep 2019 06:53:07 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4996", + "X-RateLimit-Reset": "1568188384", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7A0E:1510F:2031F30:2746519:5D7899D2", + "content-length": "1837", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3NDM0NTM=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6VHJlZTIwNzc0MzQ1Mzo5Yjc2OTliNTdlMTQzMDkxMGRiODI4MzFkY2Y2YjhhMWQxZGJkYWM5\",\"sha\":\"9b7699b57e1430910db82831dcf6b8a1d1dbdac9\",\"__typename\":\"Tree\",\"entries\":[{\"name\":\"42-line-bible.jpg\",\"sha\":\"41c8d12f9ca5864beb827c381fbeff935209d5fb\",\"type\":\"blob\",\"blob\":{\"size\":671242,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"gutenberg.jpg\",\"sha\":\"04315e355873ea5d358d9c371c39a6845c1ae4ae\",\"type\":\"blob\",\"blob\":{\"size\":155002,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-0.jpg\",\"sha\":\"b70a1b64fd4fa9635823231a0ba92c6dc9393f16\",\"type\":\"blob\",\"blob\":{\"size\":660287,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-1.jpg\",\"sha\":\"05eedae372b829c62501ac751b2d42dcc432541b\",\"type\":\"blob\",\"blob\":{\"size\":392411,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-2.jpg\",\"sha\":\"53845ed35faf8939bea242bb85eda7c324b1be0b\",\"type\":\"blob\",\"blob\":{\"size\":99147,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-3.jpg\",\"sha\":\"8b2339d97069e826fae1f156212e40ae458454e3\",\"type\":\"blob\",\"blob\":{\"size\":358022,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-4.jpg\",\"sha\":\"a8f6f21253a67a4284b5a953b2fe633d44152ecd\",\"type\":\"blob\",\"blob\":{\"size\":114837,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"movable-type.jpg\",\"sha\":\"57b4e925ea00bd8e195cf4418eb6eb2995ea5f10\",\"type\":\"blob\",\"blob\":{\"size\":559028,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"printing-press.jpg\",\"sha\":\"d27f56c9437d9becd2f56cc627c9322c2f1f61f6\",\"type\":\"blob\",\"blob\":{\"size\":279283,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"type-through-time.jpg\",\"sha\":\"3f08366a805c51a60ec5056010f22de4ba08abaa\",\"type\":\"blob\",\"blob\":{\"size\":117689,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"}]}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"6d51a38aed7139d2117724b1e307657b6ff2d043\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Wed, 11 Sep 2019 06:53:08 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4995", + "X-RateLimit-Reset": "1568188384", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7A28:9D21:29956A4:32D30BC:5D7899D3", + "content-length": "1973", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3NDM0NTM=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzc0MzQ1Mzo2ZDUxYTM4YWVkNzEzOWQyMTE3NzI0YjFlMzA3NjU3YjZmZjJkMDQz\",\"text\":\"---\\ntitle: Perfecting the Art of Perfection\\ndate: \\\"2016-09-01T23:46:37.121Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Design Inspiration\\\"\\ntags:\\n - \\\"Handwriting\\\"\\n - \\\"Learning to write\\\"\\ndescription: \\\"Quisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\\\"\\ncanonical: ''\\n---\\n\\nQuisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\\n\\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-2.jpg)\\n\\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. \\n\\nPraesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"d0582dd245a3f408fb3fe2333bf01400007476e9\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Wed, 11 Sep 2019 06:53:08 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4994", + "X-RateLimit-Reset": "1568188384", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7A36:244EB:2B09B7A:346F1FB:5D7899D4", + "content-length": "2866", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3NDM0NTM=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzc0MzQ1MzpkMDU4MmRkMjQ1YTNmNDA4ZmIzZmUyMzMzYmYwMTQwMDAwNzQ3NmU5\",\"text\":\"---\\ntitle: The Origins of Social Stationery Lettering\\ndate: \\\"2016-12-01T22:40:32.169Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Design Culture\\\"\\ndescription: \\\"Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante.\\\"\\ncanonical: ''\\n---\\n\\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \\n\\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\\n\\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-3.jpg)\\n\\n## Header Level 2\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \\n\\n
\\n\\t
\\n\\t\\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\\n\\t\\t
\\n\\t\\t\\t— Aliquam tincidunt mauris eu risus.\\n\\t\\t
\\n\\t
\\n
\\n\\n### Header Level 3\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\\n\\n```css\\n#header h1 a {\\n display: block;\\n width: 300px;\\n height: 80px;\\n}\\n```\\n\\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"a532f0a9445cdf90a19c6812cff89d1674991774\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Wed, 11 Sep 2019 06:53:10 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4991", + "X-RateLimit-Reset": "1568188384", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7A40:9D1F:121FA02:162AF61:5D7899D5", + "content-length": "7803", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3NDM0NTM=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzc0MzQ1MzphNTMyZjBhOTQ0NWNkZjkwYTE5YzY4MTJjZmY4OWQxNjc0OTkxNzc0\",\"text\":\"---\\ntitle: Humane Typography in the Digital Age\\ndate: \\\"2017-08-19T22:40:32.169Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Typography\\\"\\ntags:\\n - \\\"Design\\\"\\n - \\\"Typography\\\"\\n - \\\"Web Development\\\"\\ndescription: \\\"An Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\\\"\\ncanonical: ''\\n---\\n\\n- [The first transition](#the-first-transition)\\n- [The digital age](#the-digital-age)\\n- [Loss of humanity through transitions](#loss-of-humanity-through-transitions)\\n- [Chasing perfection](#chasing-perfection)\\n\\nAn Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\\n\\nThe typography of this industrial age was no longer handcrafted. Mass production and profit became more important. Quantity mattered more than the quality. The books and printed works in general lost a part of its humanity. The typefaces were not produced by craftsmen anymore. It was the machines printing and tying the books together now. The craftsmen had to let go of their craft and became a cog in the process. An extension of the industrial machine.\\n\\nBut the victory of the industrialism didn’t mean that the craftsmen were completely extinct. The two worlds continued to coexist independently. Each recognising the good in the other — the power of industrialism and the humanity of craftsmanship. This was the second transition that would strip typography of a part of its humanity. We have to go 500 years back in time to meet the first one.\\n\\n## The first transition\\n\\nA similar conflict emerged after the invention of the first printing press in Europe. Johannes Gutenberg invented movable type and used it to produce different compositions. His workshop could print up to 240 impressions per hour. Until then, the books were being copied by hand. All the books were handwritten and decorated with hand drawn ornaments and figures. A process of copying a book was long but each book, even a copy, was a work of art.\\n\\nThe first printed books were, at first, perceived as inferior to the handwritten ones. They were smaller and cheaper to produce. Movable type provided the printers with flexibility that allowed them to print books in languages other than Latin. Gill describes the transition to industrialism as something that people needed and wanted. Something similar happened after the first printed books emerged. People wanted books in a language they understood and they wanted books they could take with them. They were hungry for knowledge and printed books satisfied this hunger.\\n\\n![42-line-bible.jpg](/media/42-line-bible.jpg)\\n\\n*The 42–Line Bible, printed by Gutenberg.*\\n\\nBut, through this transition, the book lost a large part of its humanity. The machine took over most of the process but craftsmanship was still a part of it. The typefaces were cut manually by the first punch cutters. The paper was made by hand. The illustrations and ornaments were still being hand drawn. These were the remains of the craftsmanship that went almost extinct in the times of Eric Gill.\\n\\n## The digital age\\n\\nThe first transition took away a large part of humanity from written communication. Industrialisation, the second transition described by Eric Gill, took away most of what was left. But it’s the third transition that stripped it naked. Typefaces are faceless these days. They’re just fonts on our computers. Hardly anyone knows their stories. Hardly anyone cares. Flicking through thousands of typefaces and finding the “right one” is a matter of minutes.\\n\\n> In the new computer age the proliferation of typefaces and type manipulations represents a new level of visual pollution threatening our culture. Out of thousands of typefaces, all we need are a few basic ones, and trash the rest.\\n>\\n— Massimo Vignelli\\n\\nTypography is not about typefaces. It’s not about what looks best, it’s about what feels right. What communicates the message best. Typography, in its essence, is about the message. “Typographical design should perform optically what the speaker creates through voice and gesture of his thoughts.”, as El Lissitzky, a famous Russian typographer, put it.\\n\\n## Loss of humanity through transitions\\n\\nEach transition took away a part of humanity from written language. Handwritten books being the most humane form and the digital typefaces being the least. Overuse of Helvetica is a good example. Messages are being told in a typeface just because it’s a safe option. It’s always there. Everyone knows it but yet, nobody knows it. Stop someone on the street and ask him what Helvetica is? Ask a designer the same question. Ask him where it came from, when, why and who designed it. Most of them will fail to answer these questions. Most of them used it in their precious projects but they still don’t spot it in the street.\\n\\n
\\n\\t
\\n\\t\\t

Knowledge of the quality of a typeface is of the greatest importance for the functional, aesthetic and psychological effect.

\\n\\t\\t
\\n\\t\\t\\t— Josef Mueller-Brockmann\\n\\t\\t
\\n\\t
\\n
\\n\\nTypefaces don’t look handmade these days. And that’s all right. They don’t have to. Industrialism took that away from them and we’re fine with it. We’ve traded that part of humanity for a process that produces more books that are easier to read. That can’t be bad. And it isn’t.\\n\\n> Humane typography will often be comparatively rough and even uncouth; but while a certain uncouthness does not seriously matter in humane works, uncouthness has no excuse whatever in the productions of the machine.\\n>\\n> — Eric Gill\\n\\nWe’ve come close to “perfection” in the last five centuries. The letters are crisp and without rough edges. We print our compositions with high–precision printers on a high quality, machine made paper.\\n\\n![type-through-time.jpg](/media/type-through-time.jpg)\\n\\n*Type through 5 centuries.*\\n\\nWe lost a part of ourselves because of this chase after perfection. We forgot about the craftsmanship along the way. And the worst part is that we don’t care. The transition to the digital age made that clear. We choose typefaces like clueless zombies. There’s no meaning in our work. Type sizes, leading, margins… It’s all just a few clicks or lines of code. The message isn’t important anymore. There’s no more “why” behind the “what”.\\n\\n## Chasing perfection\\n\\nHuman beings aren’t perfect. Perfection is something that will always elude us. There will always be a small part of humanity in everything we do. No matter how small that part, we should make sure that it transcends the limits of the medium. We have to think about the message first. What typeface should we use and why? Does the typeface match the message and what we want to communicate with it? What will be the leading and why? Will there be more typefaces in our design? On what ground will they be combined? What makes our design unique and why? This is the part of humanity that is left in typography. It might be the last part. Are we really going to give it up?\\n\\n*Originally published by [Matej Latin](http://matejlatin.co.uk/) on [Medium](https://medium.com/design-notes/humane-typography-in-the-digital-age-9bd5c16199bd?ref=webdesignernews.com#.lygo82z0x).*\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"0eea554365f002d0f1572af9a58522d335a794d5\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Wed, 11 Sep 2019 06:53:10 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4993", + "X-RateLimit-Reset": "1568188384", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7A42:3ED76:840F8D:A16B7F:5D7899D5", + "content-length": "3102", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3NDM0NTM=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzc0MzQ1MzowZWVhNTU0MzY1ZjAwMmQwZjE1NzJhZjlhNTg1MjJkMzM1YTc5NGQ1\",\"text\":\"---\\ntitle: \\\"A Brief History of Typography\\\"\\ndate: \\\"2016-02-02T22:40:32.169Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Design Inspiration\\\"\\ntags:\\n - \\\"Linotype\\\"\\n - \\\"Monotype\\\"\\n - \\\"History of typography\\\"\\n - \\\"Helvetica\\\"\\ndescription: \\\"Morbi in sem quis dui placerat ornare. Pellentesque odio nisi, euismod in, pharetra a, ultricies in, diam. Sed arcu. Cras consequat.\\\"\\ncanonical: ''\\n---\\n\\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \\n\\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\\n\\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-0.jpg)\\n\\n## Header Level 2\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \\n\\n
\\n\\t
\\n\\t\\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\\n\\t\\t
\\n\\t\\t\\t— Aliquam tincidunt mauris eu risus.\\n\\t\\t
\\n\\t
\\n
\\n\\n### Header Level 3\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\\n\\n```css\\n#header h1 a {\\n display: block;\\n width: 300px;\\n height: 80px;\\n}\\n```\\n\\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"44f78c474d04273185a95821426f75affc9b0044\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Wed, 11 Sep 2019 06:53:10 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4992", + "X-RateLimit-Reset": "1568188384", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7A3E:B4E0:2911A0D:321370C:5D7899D5", + "content-length": "16478", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3NDM0NTM=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzc0MzQ1Mzo0NGY3OGM0NzRkMDQyNzMxODVhOTU4MjE0MjZmNzVhZmZjOWIwMDQ0\",\"text\":\"---\\ntitle: \\\"Johannes Gutenberg: The Birth of Movable Type\\\"\\ndate: \\\"2017-08-18T22:12:03.284Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Typography\\\"\\ntags:\\n - \\\"Open source\\\"\\n - \\\"Gatsby\\\"\\n - \\\"Typography\\\"\\ndescription: \\\"German inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\\\"\\ncanonical: ''\\n---\\n\\nGerman inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\\n\\n**Johannes Gensfleisch zur Laden zum Gutenberg** (c. 1398 – 1468) was a German blacksmith, goldsmith, printer, and publisher who introduced printing to Europe. His invention of mechanical movable type printing started the Printing Revolution and is widely regarded as the most important event of the modern period. It played a key role in the development of the Renaissance, Reformation, the Age of Enlightenment, and the Scientific revolution and laid the material basis for the modern knowledge-based economy and the spread of learning to the masses.\\n\\n
\\n\\t\\\"Gutenberg\\\"\\n\\t
Johannes Gutenberg
\\n
\\n\\nWith his invention of the printing press, Gutenberg was the first European to use movable type printing, in around 1439. Among his many contributions to printing are: the invention of a process for mass-producing movable type; the use of oil-based ink; and the use of a wooden printing press similar to the agricultural screw presses of the period. His truly epochal invention was the combination of these elements into a practical system that allowed the mass production of printed books and was economically viable for printers and readers alike. Gutenberg's method for making type is traditionally considered to have included a type metal alloy and a hand mould for casting type. The alloy was a mixture of lead, tin, and antimony that melted at a relatively low temperature for faster and more economical casting, cast well, and created a durable type.\\n\\nIn Renaissance Europe, the arrival of mechanical movable type printing introduced the era of mass communication which permanently altered the structure of society. The relatively unrestricted circulation of information — including revolutionary ideas — transcended borders, captured the masses in the Reformation and threatened the power of political and religious authorities; the sharp increase in literacy broke the monopoly of the literate elite on education and learning and bolstered the emerging middle class. Across Europe, the increasing cultural self-awareness of its people led to the rise of proto-nationalism, accelerated by the flowering of the European vernacular languages to the detriment of Latin's status as lingua franca. In the 19th century, the replacement of the hand-operated Gutenberg-style press by steam-powered rotary presses allowed printing on an industrial scale, while Western-style printing was adopted all over the world, becoming practically the sole medium for modern bulk printing.\\n\\nThe use of movable type was a marked improvement on the handwritten manuscript, which was the existing method of book production in Europe, and upon woodblock printing, and revolutionized European book-making. Gutenberg's printing technology spread rapidly throughout Europe and later the world.\\n\\nHis major work, the Gutenberg Bible (also known as the 42-line Bible), has been acclaimed for its high aesthetic and technical quality.\\n\\n## Printing Press\\n\\nAround 1439, Gutenberg was involved in a financial misadventure making polished metal mirrors (which were believed to capture holy light from religious relics) for sale to pilgrims to Aachen: in 1439 the city was planning to exhibit its collection of relics from Emperor Charlemagne but the event was delayed by one year due to a severe flood and the capital already spent could not be repaid. When the question of satisfying the investors came up, Gutenberg is said to have promised to share a “secret”. It has been widely speculated that this secret may have been the idea of printing with movable type. Also around 1439–1440, the Dutch Laurens Janszoon Coster came up with the idea of printing. Legend has it that the idea came to him “like a ray of light”.\\n\\n
\\n\\t\\\"Early\\n\\t
Early wooden printing press as depicted in 1568.
\\n
\\n\\nUntil at least 1444 he lived in Strasbourg, most likely in the St. Arbogast parish. It was in Strasbourg in 1440 that Gutenberg is said to have perfected and unveiled the secret of printing based on his research, mysteriously entitled Kunst und Aventur (art and enterprise). It is not clear what work he was engaged in, or whether some early trials with printing from movable type may have been conducted there. After this, there is a gap of four years in the record. In 1448, he was back in Mainz, where he took out a loan from his brother-in-law Arnold Gelthus, quite possibly for a printing press or related paraphernalia. By this date, Gutenberg may have been familiar with intaglio printing; it is claimed that he had worked on copper engravings with an artist known as the Master of Playing Cards.\\n\\nBy 1450, the press was in operation, and a German poem had been printed, possibly the first item to be printed there. Gutenberg was able to convince the wealthy moneylender Johann Fust for a loan of 800 guilders. Peter Schöffer, who became Fust’s son-in-law, also joined the enterprise. Schöffer had worked as a scribe in Paris and is believed to have designed some of the first typefaces.\\n\\n
\\n\\t
\\n\\t\\t

All that has been written to me about that marvelous man seen at Frankfurt is true. I have not seen complete Bibles but only a number of quires of various books of the Bible. The script was very neat and legible, not at all difficult to follow—your grace would be able to read it without effort, and indeed without glasses.

\\n\\t\\t
\\n\\t\\t\\t—Future pope Pius II in a letter to Cardinal Carvajal, March 1455\\n\\t\\t
\\n\\t
\\n
\\n\\nGutenberg's workshop was set up at Hof Humbrecht, a property belonging to a distant relative. It is not clear when Gutenberg conceived the Bible project, but for this he borrowed another 800 guilders from Fust, and work commenced in 1452. At the same time, the press was also printing other, more lucrative texts (possibly Latin grammars). There is also some speculation that there may have been two presses, one for the pedestrian texts, and one for the Bible. One of the profit-making enterprises of the new press was the printing of thousands of indulgences for the church, documented from 1454–55.\\n\\nIn 1455 Gutenberg completed his 42-line Bible, known as the Gutenberg Bible. About 180 copies were printed, most on paper and some on vellum.\\n\\n## Court Case\\n\\nSome time in 1456, there was a dispute between Gutenberg and Fust, and Fust demanded his money back, accusing Gutenberg of misusing the funds. Meanwhile the expenses of the Bible project had proliferated, and Gutenberg's debt now exceeded 20,000 guilders. Fust sued at the archbishop's court. A November 1455 legal document records that there was a partnership for a \\\"project of the books,\\\" the funds for which Gutenberg had used for other purposes, according to Fust. The court decided in favor of Fust, giving him control over the Bible printing workshop and half of all printed Bibles.\\n\\nThus Gutenberg was effectively bankrupt, but it appears he retained (or re-started) a small printing shop, and participated in the printing of a Bible in the town of Bamberg around 1459, for which he seems at least to have supplied the type. But since his printed books never carry his name or a date, it is difficult to be certain, and there is consequently a considerable scholarly debate on this subject. It is also possible that the large Catholicon dictionary, 300 copies of 754 pages, printed in Mainz in 1460, may have been executed in his workshop.\\n\\nMeanwhile, the Fust–Schöffer shop was the first in Europe to bring out a book with the printer's name and date, the Mainz Psalter of August 1457, and while proudly proclaiming the mechanical process by which it had been produced, it made no mention of Gutenberg.\\n\\n## Later Life\\n\\nIn 1462, during a conflict between two archbishops, Mainz was sacked by archbishop Adolph von Nassau, and Gutenberg was exiled. An old man by now, he moved to Eltville where he may have initiated and supervised a new printing press belonging to the brothers Bechtermünze.\\n\\nIn January 1465, Gutenberg's achievements were recognized and he was given the title Hofmann (gentleman of the court) by von Nassau. This honor included a stipend, an annual court outfit, as well as 2,180 litres of grain and 2,000 litres of wine tax-free. It is believed he may have moved back to Mainz around this time, but this is not certain.\\n\\n***\\n\\nGutenberg died in 1468 and was buried in the Franciscan church at Mainz, his contributions largely unknown. This church and the cemetery were later destroyed, and Gutenberg's grave is now lost.\\n\\nIn 1504, he was mentioned as the inventor of typography in a book by Professor Ivo Wittig. It was not until 1567 that the first portrait of Gutenberg, almost certainly an imaginary reconstruction, appeared in Heinrich Pantaleon's biography of famous Germans.\\n\\n## Printing Method With Movable Type\\n\\nGutenberg's early printing process, and what tests he may have made with movable type, are not known in great detail. His later Bibles were printed in such a way as to have required large quantities of type, some estimates suggesting as many as 100,000 individual sorts. Setting each page would take, perhaps, half a day, and considering all the work in loading the press, inking the type, pulling the impressions, hanging up the sheets, distributing the type, etc., it is thought that the Gutenberg–Fust shop might have employed as many as 25 craftsmen.\\n\\n![Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5](/media/movable-type.jpg)\\n\\n*Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5*\\n\\nGutenberg's technique of making movable type remains unclear. In the following decades, punches and copper matrices became standardized in the rapidly disseminating printing presses across Europe. Whether Gutenberg used this sophisticated technique or a somewhat primitive version has been the subject of considerable debate.\\n\\nIn the standard process of making type, a hard metal punch (made by punchcutting, with the letter carved back to front) is hammered into a softer copper bar, creating a matrix. This is then placed into a hand-held mould and a piece of type, or \\\"sort\\\", is cast by filling the mould with molten type-metal; this cools almost at once, and the resulting piece of type can be removed from the mould. The matrix can be reused to create hundreds, or thousands, of identical sorts so that the same character appearing anywhere within the book will appear very uniform, giving rise, over time, to the development of distinct styles of typefaces or fonts. After casting, the sorts are arranged into type-cases, and used to make up pages which are inked and printed, a procedure which can be repeated hundreds, or thousands, of times. The sorts can be reused in any combination, earning the process the name of “movable type”.\\n\\nThe invention of the making of types with punch, matrix and mold has been widely attributed to Gutenberg. However, recent evidence suggests that Gutenberg's process was somewhat different. If he used the punch and matrix approach, all his letters should have been nearly identical, with some variations due to miscasting and inking. However, the type used in Gutenberg's earliest work shows other variations.\\n\\n
\\n\\t
\\n\\t\\t

It is a press, certainly, but a press from which shall flow in inexhaustible streams… Through it, god will spread his word.

\\n\\t\\t
\\n\\t\\t\\t—Johannes Gutenberg\\n\\t\\t
\\n\\t
\\n
\\n\\nIn 2001, the physicist Blaise Agüera y Arcas and Princeton librarian Paul Needham, used digital scans of a Papal bull in the Scheide Library, Princeton, to carefully compare the same letters (types) appearing in different parts of the printed text. The irregularities in Gutenberg's type, particularly in simple characters such as the hyphen, suggested that the variations could not have come from either ink smear or from wear and damage on the pieces of metal on the types themselves. While some identical types are clearly used on other pages, other variations, subjected to detailed image analysis, suggested that they could not have been produced from the same matrix. Transmitted light pictures of the page also appeared to reveal substructures in the type that could not arise from traditional punchcutting techniques. They hypothesized that the method may have involved impressing simple shapes to create alphabets in “cuneiform” style in a matrix made of some soft material, perhaps sand. Casting the type would destroy the mould, and the matrix would need to be recreated to make each additional sort. This could explain the variations in the type, as well as the substructures observed in the printed images.\\n\\nThus, they feel that “the decisive factor for the birth of typography”, the use of reusable moulds for casting type, might have been a more progressive process than was previously thought. They suggest that the additional step of using the punch to create a mould that could be reused many times was not taken until twenty years later, in the 1470s. Others have not accepted some or all of their suggestions, and have interpreted the evidence in other ways, and the truth of the matter remains very uncertain.\\n\\nA 1568 history by Hadrianus Junius of Holland claims that the basic idea of the movable type came to Gutenberg from Laurens Janszoon Coster via Fust, who was apprenticed to Coster in the 1430s and may have brought some of his equipment from Haarlem to Mainz. While Coster appears to have experimented with moulds and castable metal type, there is no evidence that he had actually printed anything with this technology. He was an inventor and a goldsmith. However, there is one indirect supporter of the claim that Coster might be the inventor. The author of the Cologne Chronicle of 1499 quotes Ulrich Zell, the first printer of Cologne, that printing was performed in Mainz in 1450, but that some type of printing of lower quality had previously occurred in the Netherlands. However, the chronicle does not mention the name of Coster, while it actually credits Gutenberg as the \\\"first inventor of printing\\\" in the very same passage (fol. 312). The first securely dated book by Dutch printers is from 1471, and the Coster connection is today regarded as a mere legend.\\n\\nThe 19th century printer and typefounder Fournier Le Jeune suggested that Gutenberg might not have been using type cast with a reusable matrix, but possibly wooden types that were carved individually. A similar suggestion was made by Nash in 2004. This remains possible, albeit entirely unproven.\\n\\nIt has also been questioned whether Gutenberg used movable types at all. In 2004, Italian professor Bruno Fabbiani claimed that examination of the 42-line Bible revealed an overlapping of letters, suggesting that Gutenberg did not in fact use movable type (individual cast characters) but rather used whole plates made from a system somewhat like a modern typewriter, whereby the letters were stamped successively into the plate and then printed. However, most specialists regard the occasional overlapping of type as caused by paper movement over pieces of type of slightly unequal height.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/1970-01-01-first-title.json?ts=300&ref=refs/meta/_netlify_cms", + "headers": { + "Date": "Wed, 11 Sep 2019 06:53:14 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "404 Not Found", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4995", + "X-RateLimit-Reset": "1568188349", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A0A:9D1E:8818B8:A66F35:5D7899DA", + "content-length": "144", + "connection": "keep-alive" + }, + "response": "{\n \"message\": \"No commit found for the ref refs/meta/_netlify_cms\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/\"\n}\n", + "status": 404 + }, + { + "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"master:content/posts/1970-01-01-first-title.md\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Wed, 11 Sep 2019 06:53:15 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4990", + "X-RateLimit-Reset": "1568188384", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7A0C:9D21:2995FEE:32D3C4C:5D7899DA", + "content-length": "106", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3NDM0NTM=\",\"__typename\":\"Repository\",\"object\":null}}}\n", + "status": 200 + }, + { + "body": "{\"content\":\"LS0tCnRlbXBsYXRlOiBwb3N0CnRpdGxlOiBmaXJzdCB0aXRsZQpkcmFmdDogdHJ1ZQpkYXRlOiAxOTcwLTAxLTAxVDAwOjAwOjAwLjAwMFoKZGVzY3JpcHRpb246IGZpcnN0IGRlc2NyaXB0aW9uCmNhdGVnb3J5OiBmaXJzdCBjYXRlZ29yeQp0YWdzOgogIC0gdGFnMQotLS0KZmlyc3QgYm9keQo=\",\"encoding\":\"base64\"}", + "method": "POST", + "url": "/repos/owner/repo/git/blobs?ts=300", + "headers": { + "Date": "Wed, 11 Sep 2019 06:53:15 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "206", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4994", + "X-RateLimit-Reset": "1568188349", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"719c79267a454dc081e3fd8daa1e3bbc\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A0E:1510E:1314F6A:1754576:5D7899DB", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"a041245814892e3f73f63ca54333fda649b7fc0b\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b\"\n}\n", + "status": 201 + }, + { + "body": "{\"operationName\":\"branch\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"qualifiedName\":\"refs/heads/master\"},\"query\":\"query branch($owner: String!, $name: String!, $qualifiedName: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n branch: ref(qualifiedName: $qualifiedName) {\\n ...BranchParts\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BranchParts on Ref {\\n commit: target {\\n ...ObjectParts\\n __typename\\n }\\n id\\n name\\n repository {\\n ...RepositoryParts\\n __typename\\n }\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Wed, 11 Sep 2019 06:53:16 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4989", + "X-RateLimit-Reset": "1568188384", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7A11:3ED7B:20FF86C:282E1B8:5D7899DC", + "content-length": "429", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3NDM0NTM=\",\"__typename\":\"Repository\",\"branch\":{\"commit\":{\"id\":\"MDY6Q29tbWl0MjA3NzQzNDUzOjcyNjE3MmRlYWU5OWM4YTJjZWE0YzcxZTczNGEwMmE3OTNkNGQ5ZTU=\",\"sha\":\"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\"__typename\":\"Commit\"},\"id\":\"MDM6UmVmMjA3NzQzNDUzOm1hc3Rlcg==\",\"name\":\"master\",\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3NDM0NTM=\",\"__typename\":\"Repository\"},\"__typename\":\"Ref\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"tree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"726172deae99c8a2cea4c71e734a02a793d4d9e5\"},\"query\":\"query tree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n tree: object(oid: $sha) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Wed, 11 Sep 2019 06:53:17 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4988", + "X-RateLimit-Reset": "1568188384", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7A15:244EB:2B0A989:34702D0:5D7899DC", + "content-length": "260", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3NDM0NTM=\",\"__typename\":\"Repository\",\"tree\":{\"id\":\"MDY6Q29tbWl0MjA3NzQzNDUzOjcyNjE3MmRlYWU5OWM4YTJjZWE0YzcxZTczNGEwMmE3OTNkNGQ5ZTU=\",\"sha\":\"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\"__typename\":\"Commit\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"commitTree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"726172deae99c8a2cea4c71e734a02a793d4d9e5\"},\"query\":\"query commitTree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n commit: object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n tree {\\n ...ObjectParts\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Wed, 11 Sep 2019 06:53:17 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4987", + "X-RateLimit-Reset": "1568188384", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7A12:15110:2C23EBF:35BE5FA:5D7899DC", + "content-length": "5040", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3NDM0NTM=\",\"__typename\":\"Repository\",\"commit\":{\"id\":\"MDY6Q29tbWl0MjA3NzQzNDUzOjcyNjE3MmRlYWU5OWM4YTJjZWE0YzcxZTczNGEwMmE3OTNkNGQ5ZTU=\",\"sha\":\"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\"__typename\":\"Commit\",\"tree\":{\"id\":\"MDQ6VHJlZTIwNzc0MzQ1MzpjNWI3ZjZkNjc0YmExOTNiYjdiNGE1ZmNmNDkzMzAzNGUxYjdmMmI3\",\"sha\":\"c5b7f6d674ba193bb7b4a5fcf4933034e1b7f2b7\",\"__typename\":\"Tree\",\"entries\":[{\"path\":\".circleci\",\"sha\":\"e5e9af3301cac61f120b8e4d40b1733c7a45685a\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\".eslintignore\",\"sha\":\"80b4531b026d19f8fa589efd122e76199d23f967\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".eslintrc.js\",\"sha\":\"370684994aaed5b858da3a006f48cfa57e88fd27\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".flowconfig\",\"sha\":\"14aa2ac4cc0e15223ad98630a6f1325fc81f8043\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".gitattributes\",\"sha\":\"10a369ddf4f603337cabc6f21646508323941ce1\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".github\",\"sha\":\"4ebeece548b52b20af59622354530a6d33b50b43\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\".gitignore\",\"sha\":\"c071ba35b0e49899bab6d610a68eef667dbbf157\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".prettierignore\",\"sha\":\"393f050e123d998cf8c8b362ff95cc8ac4d250e5\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".prettierrc\",\"sha\":\"e52ad05bb13b084d7949dd76e1b2517455162150\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".stylelintrc.json\",\"sha\":\"4b4c9698d10d756f5faa025659b86375428ed0a7\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".vscode\",\"sha\":\"286e97ec0113ea8242b41ac222e2c3e8077e6f1e\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"CHANGELOG.md\",\"sha\":\"070a5d4f0eacd2dc0be81ae8996f8982de43046e\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"CODE_OF_CONDUCT.md\",\"sha\":\"92bc7565ff0ee145a0041b5179a820f14f39ab22\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"CONTRIBUTING.md\",\"sha\":\"8552aa241254a61258e1ff9666ab36f32fb1e3b9\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"LICENSE\",\"sha\":\"42d85938357b49977c126ca03b199129082d4fb8\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"README.md\",\"sha\":\"19df50a78654c8d757ca7f38447aa3d09c7abcce\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"backend\",\"sha\":\"b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"config.js\",\"sha\":\"58afd573bbb69fcca000efd0f5d90b93c93a98dd\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"content\",\"sha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"flow-typed\",\"sha\":\"86c32fd6c3118be5e0dbbb231a834447357236c6\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"flow\",\"sha\":\"0af45ad00d155c8d8c7407d913ff85278244c9ce\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"gatsby-browser.js\",\"sha\":\"9bd2c9dce175f04980e91cd9dc295a299e3cdb80\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"gatsby-config.js\",\"sha\":\"353a109dad62e3f25bf9f5e6a2167f21a6c8b459\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"gatsby-node.js\",\"sha\":\"14a207883c2093d2cc071bc5a464e165bcc1fead\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"gatsby\",\"sha\":\"4f23c06cd1740bf78304d2c0b29bf6bfdf427981\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"jest\",\"sha\":\"5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"netlify.toml\",\"sha\":\"599b99cc5700404fde316a7ede829776f23e7d45\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"package.json\",\"sha\":\"9d777616438b90a18f1a4ebfd5f114b4c06c6f17\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"postcss-config.js\",\"sha\":\"d216501e9b351a72e00ba0b7459a6500e27e7da2\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"renovate.json\",\"sha\":\"dcc309398785698b8870545c32051a3d72dd8271\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"serverless-scripts\",\"sha\":\"ee3701f2fbfc7196ba340f6481d1387d20527898\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"serverless-single-page-app-plugin\",\"sha\":\"08763fcfba643a06a452398517019bea4a5850ba\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"serverless.yml\",\"sha\":\"20b22c5fad229f35d029bf6614d333d82fe8a987\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"src\",\"sha\":\"8cdb35a88232c0f32f12f130c92c7cc55f97f471\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"static\",\"sha\":\"53c6380a600a030d3722bff7ecde36f749fb6964\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"utils\",\"sha\":\"a592549c9f74db40b51efefcda2fd76810405f27\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"yarn.lock\",\"sha\":\"475c9c1924ca752a0686303e2fdeb7b13ad75f57\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"}]}}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"tree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\"},\"query\":\"query tree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n tree: object(oid: $sha) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Wed, 11 Sep 2019 06:53:18 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4986", + "X-RateLimit-Reset": "1568188384", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7A18:1510C:29112B:3278EC:5D7899DD", + "content-length": "502", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3NDM0NTM=\",\"__typename\":\"Repository\",\"tree\":{\"id\":\"MDQ6VHJlZTIwNzc0MzQ1MzowMjk0ZWYxMDZjNTg3NDM5MDdhNWM4NTVkYTFlYjBmODdiMGI2ZGZj\",\"sha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\"__typename\":\"Tree\",\"entries\":[{\"path\":\"pages\",\"sha\":\"1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"posts\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"}]}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"commitTree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\"},\"query\":\"query commitTree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n commit: object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n tree {\\n ...ObjectParts\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Wed, 11 Sep 2019 06:53:18 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4985", + "X-RateLimit-Reset": "1568188384", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7A16:1510C:29112B:3278EB:5D7899DD", + "content-length": "256", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3NDM0NTM=\",\"__typename\":\"Repository\",\"commit\":{\"id\":\"MDQ6VHJlZTIwNzc0MzQ1MzowMjk0ZWYxMDZjNTg3NDM5MDdhNWM4NTVkYTFlYjBmODdiMGI2ZGZj\",\"sha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\"__typename\":\"Tree\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"commitTree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\"},\"query\":\"query commitTree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n commit: object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n tree {\\n ...ObjectParts\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Wed, 11 Sep 2019 06:53:18 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4983", + "X-RateLimit-Reset": "1568188384", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7A1A:244E4:134F832:177C294:5D7899DE", + "content-length": "256", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3NDM0NTM=\",\"__typename\":\"Repository\",\"commit\":{\"id\":\"MDQ6VHJlZTIwNzc0MzQ1MzozNDg5MjU3NWUyMTZjMDZlNzU3MDkzZjAzNmJkOGUwNTdjNzhhNTJm\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"__typename\":\"Tree\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"tree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\"},\"query\":\"query tree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n tree: object(oid: $sha) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Wed, 11 Sep 2019 06:53:19 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4984", + "X-RateLimit-Reset": "1568188384", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7A1C:9D1F:121FE87:162B520:5D7899DE", + "content-length": "1075", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3NDM0NTM=\",\"__typename\":\"Repository\",\"tree\":{\"id\":\"MDQ6VHJlZTIwNzc0MzQ1MzozNDg5MjU3NWUyMTZjMDZlNzU3MDkzZjAzNmJkOGUwNTdjNzhhNTJm\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"__typename\":\"Tree\",\"entries\":[{\"path\":\"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\"sha\":\"6d51a38aed7139d2117724b1e307657b6ff2d043\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\"sha\":\"d0582dd245a3f408fb3fe2333bf01400007476e9\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"2016-02-02---A-Brief-History-of-Typography.md\",\"sha\":\"0eea554365f002d0f1572af9a58522d335a794d5\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"2017-18-08---The-Birth-of-Movable-Type.md\",\"sha\":\"44f78c474d04273185a95821426f75affc9b0044\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\"sha\":\"a532f0a9445cdf90a19c6812cff89d1674991774\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"}]}}}}\n", + "status": 200 + }, + { + "body": "{\"base_tree\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"tree\":[{\"path\":\"1970-01-01-first-title.md\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"a041245814892e3f73f63ca54333fda649b7fc0b\"}]}", + "method": "POST", + "url": "/repos/owner/repo/git/trees?ts=300", + "headers": { + "Date": "Wed, 11 Sep 2019 06:53:19 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "2355", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4993", + "X-RateLimit-Reset": "1568188349", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"d9b38a032a15f36fe6e5463db697ea33\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A1F:9D21:2996656:32D443A:5D7899DF", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a041245814892e3f73f63ca54333fda649b7fc0b\",\n \"size\": 167,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b\"\n },\n {\n \"path\": \"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"size\": 1707,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\"\n },\n {\n \"path\": \"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"size\": 2565,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\"\n },\n {\n \"path\": \"2016-02-02---A-Brief-History-of-Typography.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"0eea554365f002d0f1572af9a58522d335a794d5\",\n \"size\": 2786,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\"\n },\n {\n \"path\": \"2017-18-08---The-Birth-of-Movable-Type.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"44f78c474d04273185a95821426f75affc9b0044\",\n \"size\": 16071,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\"\n },\n {\n \"path\": \"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"size\": 7465,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"base_tree\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\"tree\":[{\"path\":\"posts\",\"mode\":\"040000\",\"type\":\"tree\",\"sha\":\"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\"parentSha\":\"34892575e216c06e757093f036bd8e057c78a52f\"}]}", + "method": "POST", + "url": "/repos/owner/repo/git/trees?ts=300", + "headers": { + "Date": "Wed, 11 Sep 2019 06:53:20 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "828", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4992", + "X-RateLimit-Reset": "1568188349", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"1f96149522b789a0e92bc93c9c78567f\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A21:244EB:2B0AE86:34708C8:5D7899E0", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"tree\": [\n {\n \"path\": \"pages\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\"\n },\n {\n \"path\": \"posts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"base_tree\":\"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\"tree\":[{\"path\":\"content\",\"mode\":\"040000\",\"type\":\"tree\",\"sha\":\"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\"parentSha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\"}]}", + "method": "POST", + "url": "/repos/owner/repo/git/trees?ts=300", + "headers": { + "Date": "Wed, 11 Sep 2019 06:53:21 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "11731", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4991", + "X-RateLimit-Reset": "1568188349", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"757b5b4b01fcbe6abf1f6dc57e9d3f8c\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/trees/daee8d5d15d144e8779955166a2afeccde2770e1", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A22:1510E:1315256:1754911:5D7899E0", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"daee8d5d15d144e8779955166a2afeccde2770e1\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/daee8d5d15d144e8779955166a2afeccde2770e1\",\n \"tree\": [\n {\n \"path\": \".circleci\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"e5e9af3301cac61f120b8e4d40b1733c7a45685a\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/e5e9af3301cac61f120b8e4d40b1733c7a45685a\"\n },\n {\n \"path\": \".eslintignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"80b4531b026d19f8fa589efd122e76199d23f967\",\n \"size\": 39,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/80b4531b026d19f8fa589efd122e76199d23f967\"\n },\n {\n \"path\": \".eslintrc.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"370684994aaed5b858da3a006f48cfa57e88fd27\",\n \"size\": 414,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/370684994aaed5b858da3a006f48cfa57e88fd27\"\n },\n {\n \"path\": \".flowconfig\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14aa2ac4cc0e15223ad98630a6f1325fc81f8043\",\n \"size\": 283,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14aa2ac4cc0e15223ad98630a6f1325fc81f8043\"\n },\n {\n \"path\": \".gitattributes\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"10a369ddf4f603337cabc6f21646508323941ce1\",\n \"size\": 135,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/10a369ddf4f603337cabc6f21646508323941ce1\"\n },\n {\n \"path\": \".github\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4ebeece548b52b20af59622354530a6d33b50b43\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4ebeece548b52b20af59622354530a6d33b50b43\"\n },\n {\n \"path\": \".gitignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"c071ba35b0e49899bab6d610a68eef667dbbf157\",\n \"size\": 169,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/c071ba35b0e49899bab6d610a68eef667dbbf157\"\n },\n {\n \"path\": \".prettierignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"393f050e123d998cf8c8b362ff95cc8ac4d250e5\",\n \"size\": 45,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/393f050e123d998cf8c8b362ff95cc8ac4d250e5\"\n },\n {\n \"path\": \".prettierrc\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e52ad05bb13b084d7949dd76e1b2517455162150\",\n \"size\": 223,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/e52ad05bb13b084d7949dd76e1b2517455162150\"\n },\n {\n \"path\": \".stylelintrc.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"4b4c9698d10d756f5faa025659b86375428ed0a7\",\n \"size\": 718,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/4b4c9698d10d756f5faa025659b86375428ed0a7\"\n },\n {\n \"path\": \".vscode\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"286e97ec0113ea8242b41ac222e2c3e8077e6f1e\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/286e97ec0113ea8242b41ac222e2c3e8077e6f1e\"\n },\n {\n \"path\": \"CHANGELOG.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"070a5d4f0eacd2dc0be81ae8996f8982de43046e\",\n \"size\": 2113,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/070a5d4f0eacd2dc0be81ae8996f8982de43046e\"\n },\n {\n \"path\": \"CODE_OF_CONDUCT.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"92bc7565ff0ee145a0041b5179a820f14f39ab22\",\n \"size\": 3355,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/92bc7565ff0ee145a0041b5179a820f14f39ab22\"\n },\n {\n \"path\": \"CONTRIBUTING.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"8552aa241254a61258e1ff9666ab36f32fb1e3b9\",\n \"size\": 3548,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/8552aa241254a61258e1ff9666ab36f32fb1e3b9\"\n },\n {\n \"path\": \"LICENSE\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"42d85938357b49977c126ca03b199129082d4fb8\",\n \"size\": 1091,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/42d85938357b49977c126ca03b199129082d4fb8\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"19df50a78654c8d757ca7f38447aa3d09c7abcce\",\n \"size\": 3698,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/19df50a78654c8d757ca7f38447aa3d09c7abcce\"\n },\n {\n \"path\": \"backend\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\"\n },\n {\n \"path\": \"config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"58afd573bbb69fcca000efd0f5d90b93c93a98dd\",\n \"size\": 853,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/58afd573bbb69fcca000efd0f5d90b93c93a98dd\"\n },\n {\n \"path\": \"content\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639\"\n },\n {\n \"path\": \"flow-typed\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"86c32fd6c3118be5e0dbbb231a834447357236c6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/86c32fd6c3118be5e0dbbb231a834447357236c6\"\n },\n {\n \"path\": \"flow\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"0af45ad00d155c8d8c7407d913ff85278244c9ce\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/0af45ad00d155c8d8c7407d913ff85278244c9ce\"\n },\n {\n \"path\": \"gatsby-browser.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9bd2c9dce175f04980e91cd9dc295a299e3cdb80\",\n \"size\": 90,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9bd2c9dce175f04980e91cd9dc295a299e3cdb80\"\n },\n {\n \"path\": \"gatsby-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"353a109dad62e3f25bf9f5e6a2167f21a6c8b459\",\n \"size\": 7228,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/353a109dad62e3f25bf9f5e6a2167f21a6c8b459\"\n },\n {\n \"path\": \"gatsby-node.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14a207883c2093d2cc071bc5a464e165bcc1fead\",\n \"size\": 409,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14a207883c2093d2cc071bc5a464e165bcc1fead\"\n },\n {\n \"path\": \"gatsby\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4f23c06cd1740bf78304d2c0b29bf6bfdf427981\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4f23c06cd1740bf78304d2c0b29bf6bfdf427981\"\n },\n {\n \"path\": \"jest\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\"\n },\n {\n \"path\": \"netlify.toml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"599b99cc5700404fde316a7ede829776f23e7d45\",\n \"size\": 137,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/599b99cc5700404fde316a7ede829776f23e7d45\"\n },\n {\n \"path\": \"package.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9d777616438b90a18f1a4ebfd5f114b4c06c6f17\",\n \"size\": 6855,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9d777616438b90a18f1a4ebfd5f114b4c06c6f17\"\n },\n {\n \"path\": \"postcss-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d216501e9b351a72e00ba0b7459a6500e27e7da2\",\n \"size\": 703,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d216501e9b351a72e00ba0b7459a6500e27e7da2\"\n },\n {\n \"path\": \"renovate.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"dcc309398785698b8870545c32051a3d72dd8271\",\n \"size\": 460,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/dcc309398785698b8870545c32051a3d72dd8271\"\n },\n {\n \"path\": \"serverless-scripts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ee3701f2fbfc7196ba340f6481d1387d20527898\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ee3701f2fbfc7196ba340f6481d1387d20527898\"\n },\n {\n \"path\": \"serverless-single-page-app-plugin\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"08763fcfba643a06a452398517019bea4a5850ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/08763fcfba643a06a452398517019bea4a5850ba\"\n },\n {\n \"path\": \"serverless.yml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"20b22c5fad229f35d029bf6614d333d82fe8a987\",\n \"size\": 7803,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/20b22c5fad229f35d029bf6614d333d82fe8a987\"\n },\n {\n \"path\": \"src\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"8cdb35a88232c0f32f12f130c92c7cc55f97f471\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/8cdb35a88232c0f32f12f130c92c7cc55f97f471\"\n },\n {\n \"path\": \"static\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"53c6380a600a030d3722bff7ecde36f749fb6964\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/53c6380a600a030d3722bff7ecde36f749fb6964\"\n },\n {\n \"path\": \"utils\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"a592549c9f74db40b51efefcda2fd76810405f27\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/a592549c9f74db40b51efefcda2fd76810405f27\"\n },\n {\n \"path\": \"yarn.lock\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"475c9c1924ca752a0686303e2fdeb7b13ad75f57\",\n \"size\": 793903,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/475c9c1924ca752a0686303e2fdeb7b13ad75f57\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"message\":\"Create Post “1970-01-01-first-title”\",\"tree\":\"daee8d5d15d144e8779955166a2afeccde2770e1\",\"parents\":[\"726172deae99c8a2cea4c71e734a02a793d4d9e5\"]}", + "method": "POST", + "url": "/repos/owner/repo/git/commits?ts=300", + "headers": { + "Date": "Wed, 11 Sep 2019 06:53:22 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "1499", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4990", + "X-RateLimit-Reset": "1568188349", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"b72e8a3277a00e5267116e30c1e90f3b\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/commits/011f5cc6847ee65088ceedf792d04b1feffdac61", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A24:3ED7B:20FFE56:282E909:5D7899E1", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"011f5cc6847ee65088ceedf792d04b1feffdac61\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NzQzNDUzOjAxMWY1Y2M2ODQ3ZWU2NTA4OGNlZWRmNzkyZDA0YjFmZWZmZGFjNjE=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/011f5cc6847ee65088ceedf792d04b1feffdac61\",\n \"html_url\": \"https://github.com/owner/repo/commit/011f5cc6847ee65088ceedf792d04b1feffdac61\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-11T06:53:22Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-11T06:53:22Z\"\n },\n \"tree\": {\n \"sha\": \"daee8d5d15d144e8779955166a2afeccde2770e1\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/daee8d5d15d144e8779955166a2afeccde2770e1\"\n },\n \"message\": \"Create Post “1970-01-01-first-title”\",\n \"parents\": [\n {\n \"sha\": \"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"html_url\": \"https://github.com/owner/repo/commit/726172deae99c8a2cea4c71e734a02a793d4d9e5\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "status": 201 + }, + { + "body": "{\"operationName\":\"createBranchAndPullRequest\",\"variables\":{\"createRefInput\":{\"name\":\"refs/heads/cms/1970-01-01-first-title\",\"oid\":\"011f5cc6847ee65088ceedf792d04b1feffdac61\",\"repositoryId\":\"MDEwOlJlcG9zaXRvcnkyMDc3NDM0NTM=\"},\"createPullRequestInput\":{\"baseRefName\":\"master\",\"body\":\"Automatically generated by Netlify CMS\",\"title\":\"Create Post “1970-01-01-first-title”\",\"headRefName\":\"cms/1970-01-01-first-title\",\"repositoryId\":\"MDEwOlJlcG9zaXRvcnkyMDc3NDM0NTM=\"}},\"query\":\"mutation createBranchAndPullRequest($createRefInput: CreateRefInput!, $createPullRequestInput: CreatePullRequestInput!) {\\n createRef(input: $createRefInput) {\\n branch: ref {\\n ...BranchParts\\n __typename\\n }\\n __typename\\n }\\n createPullRequest(input: $createPullRequestInput) {\\n clientMutationId\\n pullRequest {\\n ...PullRequestParts\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment BranchParts on Ref {\\n commit: target {\\n ...ObjectParts\\n __typename\\n }\\n id\\n name\\n repository {\\n ...RepositoryParts\\n __typename\\n }\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment PullRequestParts on PullRequest {\\n id\\n baseRefName\\n body\\n headRefName\\n headRefOid\\n number\\n state\\n title\\n merged_at: mergedAt\\n repository {\\n ...RepositoryParts\\n __typename\\n }\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Wed, 11 Sep 2019 06:53:23 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4982", + "X-RateLimit-Reset": "1568188384", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7A27:3ED7B:20FFF21:282EA09:5D7899E2", + "content-length": "952", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"createRef\":{\"branch\":{\"commit\":{\"id\":\"MDY6Q29tbWl0MjA3NzQzNDUzOjAxMWY1Y2M2ODQ3ZWU2NTA4OGNlZWRmNzkyZDA0YjFmZWZmZGFjNjE=\",\"sha\":\"011f5cc6847ee65088ceedf792d04b1feffdac61\",\"__typename\":\"Commit\"},\"id\":\"MDM6UmVmMjA3NzQzNDUzOmNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxl\",\"name\":\"cms/1970-01-01-first-title\",\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3NDM0NTM=\",\"__typename\":\"Repository\"},\"__typename\":\"Ref\"},\"__typename\":\"CreateRefPayload\"},\"createPullRequest\":{\"clientMutationId\":null,\"pullRequest\":{\"id\":\"MDExOlB1bGxSZXF1ZXN0MzE2Mjk5NjU1\",\"baseRefName\":\"master\",\"body\":\"Automatically generated by Netlify CMS\",\"headRefName\":\"cms/1970-01-01-first-title\",\"headRefOid\":\"011f5cc6847ee65088ceedf792d04b1feffdac61\",\"number\":1,\"state\":\"OPEN\",\"title\":\"Create Post “1970-01-01-first-title”\",\"merged_at\":null,\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3NDM0NTM=\",\"__typename\":\"Repository\"},\"__typename\":\"PullRequest\"},\"__typename\":\"CreatePullRequestPayload\"}}}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=300", + "headers": { + "Date": "Wed, 11 Sep 2019 06:53:24 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "404 Not Found", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4989", + "X-RateLimit-Reset": "1568188349", + "X-Poll-Interval": "300", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A28:9D20:1F52A16:265BC64:5D7899E4", + "content-length": "113", + "connection": "keep-alive" + }, + "response": "{\n \"message\": \"Not Found\",\n \"documentation_url\": \"https://developer.github.com/v3/git/refs/#get-a-reference\"\n}\n", + "status": 404 + }, + { + "body": "{\"content\":\"IyBOZXRsaWZ5IENNUwoKVGhpcyB0cmVlIGlzIHVzZWQgYnkgdGhlIE5ldGxpZnkgQ01TIHRvIHN0b3JlIG1ldGFkYXRhIGluZm9ybWF0aW9uIGZvciBzcGVjaWZpYyBmaWxlcyBhbmQgYnJhbmNoZXMu\",\"encoding\":\"base64\"}", + "method": "POST", + "url": "/repos/owner/repo/git/blobs?ts=300", + "headers": { + "Date": "Wed, 11 Sep 2019 06:53:25 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "206", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4988", + "X-RateLimit-Reset": "1568188349", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"434409a640611d574828dc3176db0844\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A2A:B4E0:2912FDA:3215196:5D7899E5", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n}\n", + "status": 201 + }, + { + "body": "{\"tree\":[{\"path\":\"README.md\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"98787d1bd948850444433e91a43091a76c4eb455\"}]}", + "method": "POST", + "url": "/repos/owner/repo/git/trees?ts=300", + "headers": { + "Date": "Wed, 11 Sep 2019 06:53:26 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "559", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4987", + "X-RateLimit-Reset": "1568188349", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"4b7a9a93c050c0d089284a4134d86334\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/trees/77d01c8bf1e79f9fb17c60fe405ce741bb4eb0a6", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A2C:3ED77:13033F2:1721262:5D7899E5", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"77d01c8bf1e79f9fb17c60fe405ce741bb4eb0a6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/77d01c8bf1e79f9fb17c60fe405ce741bb4eb0a6\",\n \"tree\": [\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"message\":\"First Commit\",\"tree\":\"77d01c8bf1e79f9fb17c60fe405ce741bb4eb0a6\",\"parents\":[]}", + "method": "POST", + "url": "/repos/owner/repo/git/commits?ts=300", + "headers": { + "Date": "Wed, 11 Sep 2019 06:53:27 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "1102", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4986", + "X-RateLimit-Reset": "1568188349", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"f27ca049fa3d9c4cf23fe24e82e9ad2b\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/commits/9d050f79b4bed787c9cd1290ba86c34edf9cf2be", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A2E:244EB:2B0B7C8:3471403:5D7899E6", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"9d050f79b4bed787c9cd1290ba86c34edf9cf2be\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NzQzNDUzOjlkMDUwZjc5YjRiZWQ3ODdjOWNkMTI5MGJhODZjMzRlZGY5Y2YyYmU=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/9d050f79b4bed787c9cd1290ba86c34edf9cf2be\",\n \"html_url\": \"https://github.com/owner/repo/commit/9d050f79b4bed787c9cd1290ba86c34edf9cf2be\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-11T06:53:26Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-11T06:53:26Z\"\n },\n \"tree\": {\n \"sha\": \"77d01c8bf1e79f9fb17c60fe405ce741bb4eb0a6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/77d01c8bf1e79f9fb17c60fe405ce741bb4eb0a6\"\n },\n \"message\": \"First Commit\",\n \"parents\": [\n\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "status": 201 + }, + { + "body": "{\"ref\":\"refs/meta/_netlify_cms\",\"sha\":\"9d050f79b4bed787c9cd1290ba86c34edf9cf2be\"}", + "method": "POST", + "url": "/repos/owner/repo/git/refs?ts=300", + "headers": { + "Date": "Wed, 11 Sep 2019 06:53:28 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "482", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4985", + "X-RateLimit-Reset": "1568188349", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"bdc07774af81d1e6c0641b8a61058fb7\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "Location": "https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A30:B4E0:2913325:3215597:5D7899E7", + "connection": "keep-alive" + }, + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NzQzNDUzOnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"9d050f79b4bed787c9cd1290ba86c34edf9cf2be\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/9d050f79b4bed787c9cd1290ba86c34edf9cf2be\"\n }\n}\n", + "status": 201 + }, + { + "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjEsImhlYWQiOiIwMTFmNWNjNjg0N2VlNjUwODhjZWVkZjc5MmQwNGIxZmVmZmRhYzYxIn0sInVzZXIiOiJvd25lciIsInN0YXR1cyI6ImRyYWZ0IiwiYnJhbmNoIjoiY21zLzE5NzAtMDEtMDEtZmlyc3QtdGl0bGUiLCJjb2xsZWN0aW9uIjoicG9zdHMiLCJjb21taXRNZXNzYWdlIjoiQ3JlYXRlIFBvc3Qg4oCcMTk3MC0wMS0wMS1maXJzdC10aXRsZeKAnSIsInRpdGxlIjoiZmlyc3QgdGl0bGUiLCJkZXNjcmlwdGlvbiI6ImZpcnN0IGRlc2NyaXB0aW9uIiwib2JqZWN0cyI6eyJlbnRyeSI6eyJwYXRoIjoiY29udGVudC9wb3N0cy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxlLm1kIiwic2hhIjoiYTA0MTI0NTgxNDg5MmUzZjczZjYzY2E1NDMzM2ZkYTY0OWI3ZmMwYiJ9LCJmaWxlcyI6W119LCJ0aW1lU3RhbXAiOiIxOTcwLTAxLTAxVDAwOjAwOjAwLjMwMFoifQ==\",\"encoding\":\"base64\"}", + "method": "POST", + "url": "/repos/owner/repo/git/blobs?ts=300", + "headers": { + "Date": "Wed, 11 Sep 2019 06:53:28 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "206", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4984", + "X-RateLimit-Reset": "1568188349", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"2fda14799a07bce918aa407f98125307\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/blobs/7961c566ace1cfaf362fb0171cb6b125f953ca25", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A32:9D1F:1220311:162BAEC:5D7899E8", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"7961c566ace1cfaf362fb0171cb6b125f953ca25\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/7961c566ace1cfaf362fb0171cb6b125f953ca25\"\n}\n", + "status": 201 + }, + { + "body": "{\"operationName\":\"commitTree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"9d050f79b4bed787c9cd1290ba86c34edf9cf2be\"},\"query\":\"query commitTree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n commit: object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n tree {\\n ...ObjectParts\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Wed, 11 Sep 2019 06:53:29 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4981", + "X-RateLimit-Reset": "1568188384", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7A34:B4DA:9336E9:B3D3DB:5D7899E9", + "content-length": "558", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3NDM0NTM=\",\"__typename\":\"Repository\",\"commit\":{\"id\":\"MDY6Q29tbWl0MjA3NzQzNDUzOjlkMDUwZjc5YjRiZWQ3ODdjOWNkMTI5MGJhODZjMzRlZGY5Y2YyYmU=\",\"sha\":\"9d050f79b4bed787c9cd1290ba86c34edf9cf2be\",\"__typename\":\"Commit\",\"tree\":{\"id\":\"MDQ6VHJlZTIwNzc0MzQ1Mzo3N2QwMWM4YmYxZTc5ZjlmYjE3YzYwZmU0MDVjZTc0MWJiNGViMGE2\",\"sha\":\"77d01c8bf1e79f9fb17c60fe405ce741bb4eb0a6\",\"__typename\":\"Tree\",\"entries\":[{\"path\":\"README.md\",\"sha\":\"98787d1bd948850444433e91a43091a76c4eb455\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"}]}}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"tree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"9d050f79b4bed787c9cd1290ba86c34edf9cf2be\"},\"query\":\"query tree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n tree: object(oid: $sha) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Wed, 11 Sep 2019 06:53:29 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4980", + "X-RateLimit-Reset": "1568188384", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7A36:244E1:8B5DD5:A94EE2:5D7899E9", + "content-length": "260", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3NDM0NTM=\",\"__typename\":\"Repository\",\"tree\":{\"id\":\"MDY6Q29tbWl0MjA3NzQzNDUzOjlkMDUwZjc5YjRiZWQ3ODdjOWNkMTI5MGJhODZjMzRlZGY5Y2YyYmU=\",\"sha\":\"9d050f79b4bed787c9cd1290ba86c34edf9cf2be\",\"__typename\":\"Commit\"}}}}\n", + "status": 200 + }, + { + "body": "{\"base_tree\":\"9d050f79b4bed787c9cd1290ba86c34edf9cf2be\",\"tree\":[{\"path\":\"1970-01-01-first-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"7961c566ace1cfaf362fb0171cb6b125f953ca25\"}]}", + "method": "POST", + "url": "/repos/owner/repo/git/trees?ts=300", + "headers": { + "Date": "Wed, 11 Sep 2019 06:53:30 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "892", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4983", + "X-RateLimit-Reset": "1568188349", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"5bbf9dd70ffd66055a37626c772e2153\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/trees/0c7007fbcca218219a8b0606ad3408cf1a160ce5", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A38:2B19:12E418A:170C52C:5D7899E9", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"0c7007fbcca218219a8b0606ad3408cf1a160ce5\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/0c7007fbcca218219a8b0606ad3408cf1a160ce5\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"7961c566ace1cfaf362fb0171cb6b125f953ca25\",\n \"size\": 462,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/7961c566ace1cfaf362fb0171cb6b125f953ca25\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"message\":\"Updating “1970-01-01-first-title” metadata\",\"tree\":\"0c7007fbcca218219a8b0606ad3408cf1a160ce5\",\"parents\":[\"9d050f79b4bed787c9cd1290ba86c34edf9cf2be\"]}", + "method": "POST", + "url": "/repos/owner/repo/git/commits?ts=300", + "headers": { + "Date": "Wed, 11 Sep 2019 06:53:31 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "1505", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4982", + "X-RateLimit-Reset": "1568188349", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"84fc3a9cf3fbf30fae7ce26c352076ca\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/commits/5052e099af3be77c32ebc008887afce9be9c0d6c", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A3D:B4E0:29136EF:3215A3C:5D7899EA", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"5052e099af3be77c32ebc008887afce9be9c0d6c\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NzQzNDUzOjUwNTJlMDk5YWYzYmU3N2MzMmViYzAwODg4N2FmY2U5YmU5YzBkNmM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/5052e099af3be77c32ebc008887afce9be9c0d6c\",\n \"html_url\": \"https://github.com/owner/repo/commit/5052e099af3be77c32ebc008887afce9be9c0d6c\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-11T06:53:31Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-11T06:53:31Z\"\n },\n \"tree\": {\n \"sha\": \"0c7007fbcca218219a8b0606ad3408cf1a160ce5\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/0c7007fbcca218219a8b0606ad3408cf1a160ce5\"\n },\n \"message\": \"Updating “1970-01-01-first-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"9d050f79b4bed787c9cd1290ba86c34edf9cf2be\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/9d050f79b4bed787c9cd1290ba86c34edf9cf2be\",\n \"html_url\": \"https://github.com/owner/repo/commit/9d050f79b4bed787c9cd1290ba86c34edf9cf2be\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "status": 201 + }, + { + "body": "{\"sha\":\"5052e099af3be77c32ebc008887afce9be9c0d6c\",\"force\":false}", + "method": "PATCH", + "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=300", + "headers": { + "Date": "Wed, 11 Sep 2019 06:53:32 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": "1568188349", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"a915d6dd9676a7435f6c821820d39f40\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A3E:B4DC:13513EE:178458A:5D7899EB", + "content-length": "482", + "connection": "keep-alive" + }, + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NzQzNDUzOnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"5052e099af3be77c32ebc008887afce9be9c0d6c\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/5052e099af3be77c32ebc008887afce9be9c0d6c\"\n }\n}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"unpublishedBranchFile\",\"variables\":{\"headOwner\":\"owner\",\"headRepoName\":\"repo\",\"headExpression\":\"cms/1970-01-01-first-title:content/posts/1970-01-01-first-title.md\",\"baseOwner\":\"owner\",\"baseRepoName\":\"repo\",\"baseExpression\":\"master:content/posts/1970-01-01-first-title.md\"},\"query\":\"query unpublishedBranchFile($headOwner: String!, $headRepoName: String!, $headExpression: String!, $baseOwner: String!, $baseRepoName: String!, $baseExpression: String!) {\\n head: repository(owner: $headOwner, name: $headRepoName) {\\n ...RepositoryParts\\n object(expression: $headExpression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n base: repository(owner: $baseOwner, name: $baseRepoName) {\\n ...RepositoryParts\\n object(expression: $baseExpression) {\\n ... on Blob {\\n id\\n oid\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Wed, 11 Sep 2019 06:53:33 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4979", + "X-RateLimit-Reset": "1568188384", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7A3F:3ED82:2C362CC:35E1B24:5D7899EC", + "content-length": "496", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"head\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3NDM0NTM=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzc0MzQ1MzphMDQxMjQ1ODE0ODkyZTNmNzNmNjNjYTU0MzMzZmRhNjQ5YjdmYzBi\",\"text\":\"---\\ntemplate: post\\ntitle: first title\\ndraft: true\\ndate: 1970-01-01T00:00:00.000Z\\ndescription: first description\\ncategory: first category\\ntags:\\n - tag1\\n---\\nfirst body\\n\",\"is_binary\":false,\"__typename\":\"Blob\"}},\"base\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3NDM0NTM=\",\"__typename\":\"Repository\",\"object\":null}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"statues\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"011f5cc6847ee65088ceedf792d04b1feffdac61\"},\"query\":\"query statues($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n status {\\n id\\n contexts {\\n id\\n context\\n state\\n target_url: targetUrl\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Wed, 11 Sep 2019 06:53:34 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4978", + "X-RateLimit-Reset": "1568188384", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7A42:3ED82:2C3649C:35E1D56:5D7899EE", + "content-length": "276", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3NDM0NTM=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDY6Q29tbWl0MjA3NzQzNDUzOjAxMWY1Y2M2ODQ3ZWU2NTA4OGNlZWRmNzkyZDA0YjFmZWZmZGFjNjE=\",\"sha\":\"011f5cc6847ee65088ceedf792d04b1feffdac61\",\"__typename\":\"Commit\",\"status\":null}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"statues\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"011f5cc6847ee65088ceedf792d04b1feffdac61\"},\"query\":\"query statues($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n status {\\n id\\n contexts {\\n id\\n context\\n state\\n target_url: targetUrl\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Wed, 11 Sep 2019 06:53:40 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4977", + "X-RateLimit-Reset": "1568188384", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7A46:244EB:2B0CA2A:3472A93:5D7899F4", + "content-length": "276", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3NDM0NTM=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDY6Q29tbWl0MjA3NzQzNDUzOjAxMWY1Y2M2ODQ3ZWU2NTA4OGNlZWRmNzkyZDA0YjFmZWZmZGFjNjE=\",\"sha\":\"011f5cc6847ee65088ceedf792d04b1feffdac61\",\"__typename\":\"Commit\",\"status\":null}}}}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/1970-01-01-second-title.json?ts=600&ref=refs/meta/_netlify_cms", + "headers": { + "Date": "Wed, 11 Sep 2019 06:53:41 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "404 Not Found", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4980", + "X-RateLimit-Reset": "1568188349", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A48:244E1:8B60B2:A95273:5D7899F4", + "content-length": "116", + "connection": "keep-alive" + }, + "response": "{\n \"message\": \"Not Found\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/#get-contents\"\n}\n", + "status": 404 + }, + { + "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"master:content/posts/1970-01-01-second-title.md\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Wed, 11 Sep 2019 06:53:41 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4976", + "X-RateLimit-Reset": "1568188384", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7A4B:244E7:1FBE778:26D4A39:5D7899F5", + "content-length": "106", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3NDM0NTM=\",\"__typename\":\"Repository\",\"object\":null}}}\n", + "status": 200 + }, + { + "body": "{\"content\":\"LS0tCnRlbXBsYXRlOiBwb3N0CnRpdGxlOiBzZWNvbmQgdGl0bGUKZHJhZnQ6IHRydWUKZGF0ZTogMTk3MC0wMS0wMVQwMDowMDowMC4zMDBaCmRlc2NyaXB0aW9uOiBzZWNvbmQgZGVzY3JpcHRpb24KY2F0ZWdvcnk6IHNlY29uZCBjYXRlZ29yeQp0YWdzOgogIC0gdGFnMgotLS0Kc2Vjb25kIGJvZHkK\",\"encoding\":\"base64\"}", + "method": "POST", + "url": "/repos/owner/repo/git/blobs?ts=600", + "headers": { + "Date": "Wed, 11 Sep 2019 06:53:42 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "206", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4979", + "X-RateLimit-Reset": "1568188349", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"315784e692ac4702c482418bb176e236\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/blobs/21929dc2b35a71411987a5e966452de21a5005ab", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A4C:B4DA:933BB3:B3D99A:5D7899F6", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"21929dc2b35a71411987a5e966452de21a5005ab\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/21929dc2b35a71411987a5e966452de21a5005ab\"\n}\n", + "status": 201 + }, + { + "body": "{\"operationName\":\"branch\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"qualifiedName\":\"refs/heads/master\"},\"query\":\"query branch($owner: String!, $name: String!, $qualifiedName: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n branch: ref(qualifiedName: $qualifiedName) {\\n ...BranchParts\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BranchParts on Ref {\\n commit: target {\\n ...ObjectParts\\n __typename\\n }\\n id\\n name\\n repository {\\n ...RepositoryParts\\n __typename\\n }\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Wed, 11 Sep 2019 06:53:43 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4975", + "X-RateLimit-Reset": "1568188384", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7A4E:2B24:2AAB0C8:340794D:5D7899F7", + "content-length": "429", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3NDM0NTM=\",\"__typename\":\"Repository\",\"branch\":{\"commit\":{\"id\":\"MDY6Q29tbWl0MjA3NzQzNDUzOjcyNjE3MmRlYWU5OWM4YTJjZWE0YzcxZTczNGEwMmE3OTNkNGQ5ZTU=\",\"sha\":\"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\"__typename\":\"Commit\"},\"id\":\"MDM6UmVmMjA3NzQzNDUzOm1hc3Rlcg==\",\"name\":\"master\",\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3NDM0NTM=\",\"__typename\":\"Repository\"},\"__typename\":\"Ref\"}}}}\n", + "status": 200 + }, + { + "body": "{\"base_tree\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"tree\":[{\"path\":\"1970-01-01-second-title.md\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"21929dc2b35a71411987a5e966452de21a5005ab\"}]}", + "method": "POST", + "url": "/repos/owner/repo/git/trees?ts=600", + "headers": { + "Date": "Wed, 11 Sep 2019 06:53:44 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "2356", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4978", + "X-RateLimit-Reset": "1568188349", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"2a96544e6c0200cdfe209aaeb2906317\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/trees/e58a266291a019859cf05afac9d176f7f55fb83d", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A50:2B19:12E4859:170CDEE:5D7899F7", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"e58a266291a019859cf05afac9d176f7f55fb83d\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/e58a266291a019859cf05afac9d176f7f55fb83d\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-second-title.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"21929dc2b35a71411987a5e966452de21a5005ab\",\n \"size\": 171,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/21929dc2b35a71411987a5e966452de21a5005ab\"\n },\n {\n \"path\": \"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"size\": 1707,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\"\n },\n {\n \"path\": \"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"size\": 2565,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\"\n },\n {\n \"path\": \"2016-02-02---A-Brief-History-of-Typography.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"0eea554365f002d0f1572af9a58522d335a794d5\",\n \"size\": 2786,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\"\n },\n {\n \"path\": \"2017-18-08---The-Birth-of-Movable-Type.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"44f78c474d04273185a95821426f75affc9b0044\",\n \"size\": 16071,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\"\n },\n {\n \"path\": \"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"size\": 7465,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"base_tree\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\"tree\":[{\"path\":\"posts\",\"mode\":\"040000\",\"type\":\"tree\",\"sha\":\"e58a266291a019859cf05afac9d176f7f55fb83d\",\"parentSha\":\"34892575e216c06e757093f036bd8e057c78a52f\"}]}", + "method": "POST", + "url": "/repos/owner/repo/git/trees?ts=600", + "headers": { + "Date": "Wed, 11 Sep 2019 06:53:45 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "828", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4977", + "X-RateLimit-Reset": "1568188349", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"f877d461d7f27987709e7d58688a4b1e\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/trees/10c4513c3c1e20a48ccfb71e0dd469f5b6cd6626", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A52:244E1:8B619B:A953A1:5D7899F8", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"10c4513c3c1e20a48ccfb71e0dd469f5b6cd6626\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/10c4513c3c1e20a48ccfb71e0dd469f5b6cd6626\",\n \"tree\": [\n {\n \"path\": \"pages\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\"\n },\n {\n \"path\": \"posts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"e58a266291a019859cf05afac9d176f7f55fb83d\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/e58a266291a019859cf05afac9d176f7f55fb83d\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"base_tree\":\"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\"tree\":[{\"path\":\"content\",\"mode\":\"040000\",\"type\":\"tree\",\"sha\":\"10c4513c3c1e20a48ccfb71e0dd469f5b6cd6626\",\"parentSha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\"}]}", + "method": "POST", + "url": "/repos/owner/repo/git/trees?ts=600", + "headers": { + "Date": "Wed, 11 Sep 2019 06:53:46 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "11731", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4976", + "X-RateLimit-Reset": "1568188349", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"f008e4e17778ab969576c7352b73bc08\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/trees/6c2c35e11497ab27a1bff75759e61f32c9b49622", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A54:2B19:12E4989:170CF61:5D7899F9", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"6c2c35e11497ab27a1bff75759e61f32c9b49622\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/6c2c35e11497ab27a1bff75759e61f32c9b49622\",\n \"tree\": [\n {\n \"path\": \".circleci\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"e5e9af3301cac61f120b8e4d40b1733c7a45685a\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/e5e9af3301cac61f120b8e4d40b1733c7a45685a\"\n },\n {\n \"path\": \".eslintignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"80b4531b026d19f8fa589efd122e76199d23f967\",\n \"size\": 39,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/80b4531b026d19f8fa589efd122e76199d23f967\"\n },\n {\n \"path\": \".eslintrc.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"370684994aaed5b858da3a006f48cfa57e88fd27\",\n \"size\": 414,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/370684994aaed5b858da3a006f48cfa57e88fd27\"\n },\n {\n \"path\": \".flowconfig\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14aa2ac4cc0e15223ad98630a6f1325fc81f8043\",\n \"size\": 283,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14aa2ac4cc0e15223ad98630a6f1325fc81f8043\"\n },\n {\n \"path\": \".gitattributes\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"10a369ddf4f603337cabc6f21646508323941ce1\",\n \"size\": 135,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/10a369ddf4f603337cabc6f21646508323941ce1\"\n },\n {\n \"path\": \".github\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4ebeece548b52b20af59622354530a6d33b50b43\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4ebeece548b52b20af59622354530a6d33b50b43\"\n },\n {\n \"path\": \".gitignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"c071ba35b0e49899bab6d610a68eef667dbbf157\",\n \"size\": 169,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/c071ba35b0e49899bab6d610a68eef667dbbf157\"\n },\n {\n \"path\": \".prettierignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"393f050e123d998cf8c8b362ff95cc8ac4d250e5\",\n \"size\": 45,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/393f050e123d998cf8c8b362ff95cc8ac4d250e5\"\n },\n {\n \"path\": \".prettierrc\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e52ad05bb13b084d7949dd76e1b2517455162150\",\n \"size\": 223,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/e52ad05bb13b084d7949dd76e1b2517455162150\"\n },\n {\n \"path\": \".stylelintrc.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"4b4c9698d10d756f5faa025659b86375428ed0a7\",\n \"size\": 718,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/4b4c9698d10d756f5faa025659b86375428ed0a7\"\n },\n {\n \"path\": \".vscode\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"286e97ec0113ea8242b41ac222e2c3e8077e6f1e\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/286e97ec0113ea8242b41ac222e2c3e8077e6f1e\"\n },\n {\n \"path\": \"CHANGELOG.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"070a5d4f0eacd2dc0be81ae8996f8982de43046e\",\n \"size\": 2113,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/070a5d4f0eacd2dc0be81ae8996f8982de43046e\"\n },\n {\n \"path\": \"CODE_OF_CONDUCT.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"92bc7565ff0ee145a0041b5179a820f14f39ab22\",\n \"size\": 3355,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/92bc7565ff0ee145a0041b5179a820f14f39ab22\"\n },\n {\n \"path\": \"CONTRIBUTING.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"8552aa241254a61258e1ff9666ab36f32fb1e3b9\",\n \"size\": 3548,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/8552aa241254a61258e1ff9666ab36f32fb1e3b9\"\n },\n {\n \"path\": \"LICENSE\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"42d85938357b49977c126ca03b199129082d4fb8\",\n \"size\": 1091,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/42d85938357b49977c126ca03b199129082d4fb8\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"19df50a78654c8d757ca7f38447aa3d09c7abcce\",\n \"size\": 3698,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/19df50a78654c8d757ca7f38447aa3d09c7abcce\"\n },\n {\n \"path\": \"backend\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\"\n },\n {\n \"path\": \"config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"58afd573bbb69fcca000efd0f5d90b93c93a98dd\",\n \"size\": 853,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/58afd573bbb69fcca000efd0f5d90b93c93a98dd\"\n },\n {\n \"path\": \"content\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"10c4513c3c1e20a48ccfb71e0dd469f5b6cd6626\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/10c4513c3c1e20a48ccfb71e0dd469f5b6cd6626\"\n },\n {\n \"path\": \"flow-typed\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"86c32fd6c3118be5e0dbbb231a834447357236c6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/86c32fd6c3118be5e0dbbb231a834447357236c6\"\n },\n {\n \"path\": \"flow\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"0af45ad00d155c8d8c7407d913ff85278244c9ce\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/0af45ad00d155c8d8c7407d913ff85278244c9ce\"\n },\n {\n \"path\": \"gatsby-browser.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9bd2c9dce175f04980e91cd9dc295a299e3cdb80\",\n \"size\": 90,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9bd2c9dce175f04980e91cd9dc295a299e3cdb80\"\n },\n {\n \"path\": \"gatsby-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"353a109dad62e3f25bf9f5e6a2167f21a6c8b459\",\n \"size\": 7228,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/353a109dad62e3f25bf9f5e6a2167f21a6c8b459\"\n },\n {\n \"path\": \"gatsby-node.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14a207883c2093d2cc071bc5a464e165bcc1fead\",\n \"size\": 409,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14a207883c2093d2cc071bc5a464e165bcc1fead\"\n },\n {\n \"path\": \"gatsby\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4f23c06cd1740bf78304d2c0b29bf6bfdf427981\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4f23c06cd1740bf78304d2c0b29bf6bfdf427981\"\n },\n {\n \"path\": \"jest\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\"\n },\n {\n \"path\": \"netlify.toml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"599b99cc5700404fde316a7ede829776f23e7d45\",\n \"size\": 137,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/599b99cc5700404fde316a7ede829776f23e7d45\"\n },\n {\n \"path\": \"package.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9d777616438b90a18f1a4ebfd5f114b4c06c6f17\",\n \"size\": 6855,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9d777616438b90a18f1a4ebfd5f114b4c06c6f17\"\n },\n {\n \"path\": \"postcss-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d216501e9b351a72e00ba0b7459a6500e27e7da2\",\n \"size\": 703,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d216501e9b351a72e00ba0b7459a6500e27e7da2\"\n },\n {\n \"path\": \"renovate.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"dcc309398785698b8870545c32051a3d72dd8271\",\n \"size\": 460,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/dcc309398785698b8870545c32051a3d72dd8271\"\n },\n {\n \"path\": \"serverless-scripts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ee3701f2fbfc7196ba340f6481d1387d20527898\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ee3701f2fbfc7196ba340f6481d1387d20527898\"\n },\n {\n \"path\": \"serverless-single-page-app-plugin\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"08763fcfba643a06a452398517019bea4a5850ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/08763fcfba643a06a452398517019bea4a5850ba\"\n },\n {\n \"path\": \"serverless.yml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"20b22c5fad229f35d029bf6614d333d82fe8a987\",\n \"size\": 7803,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/20b22c5fad229f35d029bf6614d333d82fe8a987\"\n },\n {\n \"path\": \"src\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"8cdb35a88232c0f32f12f130c92c7cc55f97f471\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/8cdb35a88232c0f32f12f130c92c7cc55f97f471\"\n },\n {\n \"path\": \"static\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"53c6380a600a030d3722bff7ecde36f749fb6964\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/53c6380a600a030d3722bff7ecde36f749fb6964\"\n },\n {\n \"path\": \"utils\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"a592549c9f74db40b51efefcda2fd76810405f27\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/a592549c9f74db40b51efefcda2fd76810405f27\"\n },\n {\n \"path\": \"yarn.lock\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"475c9c1924ca752a0686303e2fdeb7b13ad75f57\",\n \"size\": 793903,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/475c9c1924ca752a0686303e2fdeb7b13ad75f57\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"operationName\":\"statues\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"011f5cc6847ee65088ceedf792d04b1feffdac61\"},\"query\":\"query statues($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n status {\\n id\\n contexts {\\n id\\n context\\n state\\n target_url: targetUrl\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Wed, 11 Sep 2019 06:53:46 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4974", + "X-RateLimit-Reset": "1568188384", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7A56:244E7:1FBEC35:26D500F:5D7899F9", + "content-length": "276", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3NDM0NTM=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDY6Q29tbWl0MjA3NzQzNDUzOjAxMWY1Y2M2ODQ3ZWU2NTA4OGNlZWRmNzkyZDA0YjFmZWZmZGFjNjE=\",\"sha\":\"011f5cc6847ee65088ceedf792d04b1feffdac61\",\"__typename\":\"Commit\",\"status\":null}}}}\n", + "status": 200 + }, + { + "body": "{\"message\":\"Create Post “1970-01-01-second-title”\",\"tree\":\"6c2c35e11497ab27a1bff75759e61f32c9b49622\",\"parents\":[\"726172deae99c8a2cea4c71e734a02a793d4d9e5\"]}", + "method": "POST", + "url": "/repos/owner/repo/git/commits?ts=600", + "headers": { + "Date": "Wed, 11 Sep 2019 06:53:46 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "1500", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4975", + "X-RateLimit-Reset": "1568188349", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"5a18d83099a99554fbc223b381922854\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/commits/7bd5e8c1186afd8327cfaae0f52ad5643f4dde8a", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A58:244E7:1FBECB8:26D50A2:5D7899FA", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"7bd5e8c1186afd8327cfaae0f52ad5643f4dde8a\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NzQzNDUzOjdiZDVlOGMxMTg2YWZkODMyN2NmYWFlMGY1MmFkNTY0M2Y0ZGRlOGE=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/7bd5e8c1186afd8327cfaae0f52ad5643f4dde8a\",\n \"html_url\": \"https://github.com/owner/repo/commit/7bd5e8c1186afd8327cfaae0f52ad5643f4dde8a\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-11T06:53:46Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-11T06:53:46Z\"\n },\n \"tree\": {\n \"sha\": \"6c2c35e11497ab27a1bff75759e61f32c9b49622\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/6c2c35e11497ab27a1bff75759e61f32c9b49622\"\n },\n \"message\": \"Create Post “1970-01-01-second-title”\",\n \"parents\": [\n {\n \"sha\": \"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"html_url\": \"https://github.com/owner/repo/commit/726172deae99c8a2cea4c71e734a02a793d4d9e5\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "status": 201 + }, + { + "body": "{\"operationName\":\"createBranchAndPullRequest\",\"variables\":{\"createRefInput\":{\"name\":\"refs/heads/cms/1970-01-01-second-title\",\"oid\":\"7bd5e8c1186afd8327cfaae0f52ad5643f4dde8a\",\"repositoryId\":\"MDEwOlJlcG9zaXRvcnkyMDc3NDM0NTM=\"},\"createPullRequestInput\":{\"baseRefName\":\"master\",\"body\":\"Automatically generated by Netlify CMS\",\"title\":\"Create Post “1970-01-01-second-title”\",\"headRefName\":\"cms/1970-01-01-second-title\",\"repositoryId\":\"MDEwOlJlcG9zaXRvcnkyMDc3NDM0NTM=\"}},\"query\":\"mutation createBranchAndPullRequest($createRefInput: CreateRefInput!, $createPullRequestInput: CreatePullRequestInput!) {\\n createRef(input: $createRefInput) {\\n branch: ref {\\n ...BranchParts\\n __typename\\n }\\n __typename\\n }\\n createPullRequest(input: $createPullRequestInput) {\\n clientMutationId\\n pullRequest {\\n ...PullRequestParts\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment BranchParts on Ref {\\n commit: target {\\n ...ObjectParts\\n __typename\\n }\\n id\\n name\\n repository {\\n ...RepositoryParts\\n __typename\\n }\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment PullRequestParts on PullRequest {\\n id\\n baseRefName\\n body\\n headRefName\\n headRefOid\\n number\\n state\\n title\\n merged_at: mergedAt\\n repository {\\n ...RepositoryParts\\n __typename\\n }\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Wed, 11 Sep 2019 06:53:48 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4973", + "X-RateLimit-Reset": "1568188384", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7A5A:1510E:1316070:1755AD5:5D7899FB", + "content-length": "959", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"createRef\":{\"branch\":{\"commit\":{\"id\":\"MDY6Q29tbWl0MjA3NzQzNDUzOjdiZDVlOGMxMTg2YWZkODMyN2NmYWFlMGY1MmFkNTY0M2Y0ZGRlOGE=\",\"sha\":\"7bd5e8c1186afd8327cfaae0f52ad5643f4dde8a\",\"__typename\":\"Commit\"},\"id\":\"MDM6UmVmMjA3NzQzNDUzOmNtcy8xOTcwLTAxLTAxLXNlY29uZC10aXRsZQ==\",\"name\":\"cms/1970-01-01-second-title\",\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3NDM0NTM=\",\"__typename\":\"Repository\"},\"__typename\":\"Ref\"},\"__typename\":\"CreateRefPayload\"},\"createPullRequest\":{\"clientMutationId\":null,\"pullRequest\":{\"id\":\"MDExOlB1bGxSZXF1ZXN0MzE2Mjk5NzY2\",\"baseRefName\":\"master\",\"body\":\"Automatically generated by Netlify CMS\",\"headRefName\":\"cms/1970-01-01-second-title\",\"headRefOid\":\"7bd5e8c1186afd8327cfaae0f52ad5643f4dde8a\",\"number\":2,\"state\":\"OPEN\",\"title\":\"Create Post “1970-01-01-second-title”\",\"merged_at\":null,\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3NDM0NTM=\",\"__typename\":\"Repository\"},\"__typename\":\"PullRequest\"},\"__typename\":\"CreatePullRequestPayload\"}}}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=600", + "headers": { + "Date": "Wed, 11 Sep 2019 06:53:49 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4974", + "X-RateLimit-Reset": "1568188349", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"a915d6dd9676a7435f6c821820d39f40\"", + "Last-Modified": "Wed, 11 Sep 2019 06:52:56 GMT", + "X-Poll-Interval": "300", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A5C:15110:2C26C32:35C1D84:5D7899FC", + "content-length": "482", + "connection": "keep-alive" + }, + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NzQzNDUzOnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"5052e099af3be77c32ebc008887afce9be9c0d6c\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/5052e099af3be77c32ebc008887afce9be9c0d6c\"\n }\n}\n", + "status": 200 + }, + { + "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjIsImhlYWQiOiI3YmQ1ZThjMTE4NmFmZDgzMjdjZmFhZTBmNTJhZDU2NDNmNGRkZThhIn0sInVzZXIiOiJvd25lciIsInN0YXR1cyI6ImRyYWZ0IiwiYnJhbmNoIjoiY21zLzE5NzAtMDEtMDEtc2Vjb25kLXRpdGxlIiwiY29sbGVjdGlvbiI6InBvc3RzIiwiY29tbWl0TWVzc2FnZSI6IkNyZWF0ZSBQb3N0IOKAnDE5NzAtMDEtMDEtc2Vjb25kLXRpdGxl4oCdIiwidGl0bGUiOiJzZWNvbmQgdGl0bGUiLCJkZXNjcmlwdGlvbiI6InNlY29uZCBkZXNjcmlwdGlvbiIsIm9iamVjdHMiOnsiZW50cnkiOnsicGF0aCI6ImNvbnRlbnQvcG9zdHMvMTk3MC0wMS0wMS1zZWNvbmQtdGl0bGUubWQiLCJzaGEiOiIyMTkyOWRjMmIzNWE3MTQxMTk4N2E1ZTk2NjQ1MmRlMjFhNTAwNWFiIn0sImZpbGVzIjpbXX0sInRpbWVTdGFtcCI6IjE5NzAtMDEtMDFUMDA6MDA6MDAuNjAwWiJ9\",\"encoding\":\"base64\"}", + "method": "POST", + "url": "/repos/owner/repo/git/blobs?ts=600", + "headers": { + "Date": "Wed, 11 Sep 2019 06:53:50 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "206", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4973", + "X-RateLimit-Reset": "1568188349", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"d259d51c74dbf0d483f3b0eba8010fc4\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/blobs/c65d99d83e281e3be2aad42ded2606821c88abc4", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A5E:244E4:1350AAB:177D993:5D7899FD", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"c65d99d83e281e3be2aad42ded2606821c88abc4\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/c65d99d83e281e3be2aad42ded2606821c88abc4\"\n}\n", + "status": 201 + }, + { + "body": "{\"operationName\":\"commitTree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"5052e099af3be77c32ebc008887afce9be9c0d6c\"},\"query\":\"query commitTree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n commit: object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n tree {\\n ...ObjectParts\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Wed, 11 Sep 2019 06:53:50 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4972", + "X-RateLimit-Reset": "1568188384", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7A61:1510F:2034C83:2749CE6:5D7899FE", + "content-length": "698", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3NDM0NTM=\",\"__typename\":\"Repository\",\"commit\":{\"id\":\"MDY6Q29tbWl0MjA3NzQzNDUzOjUwNTJlMDk5YWYzYmU3N2MzMmViYzAwODg4N2FmY2U5YmU5YzBkNmM=\",\"sha\":\"5052e099af3be77c32ebc008887afce9be9c0d6c\",\"__typename\":\"Commit\",\"tree\":{\"id\":\"MDQ6VHJlZTIwNzc0MzQ1MzowYzcwMDdmYmNjYTIxODIxOWE4YjA2MDZhZDM0MDhjZjFhMTYwY2U1\",\"sha\":\"0c7007fbcca218219a8b0606ad3408cf1a160ce5\",\"__typename\":\"Tree\",\"entries\":[{\"path\":\"1970-01-01-first-title.json\",\"sha\":\"7961c566ace1cfaf362fb0171cb6b125f953ca25\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"README.md\",\"sha\":\"98787d1bd948850444433e91a43091a76c4eb455\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"}]}}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"tree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"5052e099af3be77c32ebc008887afce9be9c0d6c\"},\"query\":\"query tree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n tree: object(oid: $sha) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Wed, 11 Sep 2019 06:53:50 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4971", + "X-RateLimit-Reset": "1568188384", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7A62:244E7:1FBF19C:26D56AA:5D7899FE", + "content-length": "260", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3NDM0NTM=\",\"__typename\":\"Repository\",\"tree\":{\"id\":\"MDY6Q29tbWl0MjA3NzQzNDUzOjUwNTJlMDk5YWYzYmU3N2MzMmViYzAwODg4N2FmY2U5YmU5YzBkNmM=\",\"sha\":\"5052e099af3be77c32ebc008887afce9be9c0d6c\",\"__typename\":\"Commit\"}}}}\n", + "status": 200 + }, + { + "body": "{\"base_tree\":\"5052e099af3be77c32ebc008887afce9be9c0d6c\",\"tree\":[{\"path\":\"1970-01-01-second-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"c65d99d83e281e3be2aad42ded2606821c88abc4\"}]}", + "method": "POST", + "url": "/repos/owner/repo/git/trees?ts=600", + "headers": { + "Date": "Wed, 11 Sep 2019 06:53:51 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "1226", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4972", + "X-RateLimit-Reset": "1568188349", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"9d3566f90fcc118795f284871f1ea16c\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/trees/db43443b21539a2ba7e5cf67915002973e14f796", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A64:15110:2C26F68:35C219D:5D7899FF", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"db43443b21539a2ba7e5cf67915002973e14f796\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/db43443b21539a2ba7e5cf67915002973e14f796\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"7961c566ace1cfaf362fb0171cb6b125f953ca25\",\n \"size\": 462,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/7961c566ace1cfaf362fb0171cb6b125f953ca25\"\n },\n {\n \"path\": \"1970-01-01-second-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"c65d99d83e281e3be2aad42ded2606821c88abc4\",\n \"size\": 467,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/c65d99d83e281e3be2aad42ded2606821c88abc4\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"message\":\"Updating “1970-01-01-second-title” metadata\",\"tree\":\"db43443b21539a2ba7e5cf67915002973e14f796\",\"parents\":[\"5052e099af3be77c32ebc008887afce9be9c0d6c\"]}", + "method": "POST", + "url": "/repos/owner/repo/git/commits?ts=600", + "headers": { + "Date": "Wed, 11 Sep 2019 06:53:52 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "1506", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4971", + "X-RateLimit-Reset": "1568188349", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"11381e86e1e93e606acc2160d0f741a3\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/commits/31fcff80002dee97acbef83856cfb81b172f19e0", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A66:3ED70:AD8FB:DA28A:5D7899FF", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"31fcff80002dee97acbef83856cfb81b172f19e0\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NzQzNDUzOjMxZmNmZjgwMDAyZGVlOTdhY2JlZjgzODU2Y2ZiODFiMTcyZjE5ZTA=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/31fcff80002dee97acbef83856cfb81b172f19e0\",\n \"html_url\": \"https://github.com/owner/repo/commit/31fcff80002dee97acbef83856cfb81b172f19e0\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-11T06:53:52Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-11T06:53:52Z\"\n },\n \"tree\": {\n \"sha\": \"db43443b21539a2ba7e5cf67915002973e14f796\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/db43443b21539a2ba7e5cf67915002973e14f796\"\n },\n \"message\": \"Updating “1970-01-01-second-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"5052e099af3be77c32ebc008887afce9be9c0d6c\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/5052e099af3be77c32ebc008887afce9be9c0d6c\",\n \"html_url\": \"https://github.com/owner/repo/commit/5052e099af3be77c32ebc008887afce9be9c0d6c\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "status": 201 + }, + { + "body": "{\"sha\":\"31fcff80002dee97acbef83856cfb81b172f19e0\",\"force\":false}", + "method": "PATCH", + "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=600", + "headers": { + "Date": "Wed, 11 Sep 2019 06:53:53 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": "1568188349", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"69b0146fa07f492d018d013892232223\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A68:3ED7B:2101D3B:2830F65:5D789A00", + "content-length": "482", + "connection": "keep-alive" + }, + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NzQzNDUzOnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"31fcff80002dee97acbef83856cfb81b172f19e0\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/31fcff80002dee97acbef83856cfb81b172f19e0\"\n }\n}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"unpublishedBranchFile\",\"variables\":{\"headOwner\":\"owner\",\"headRepoName\":\"repo\",\"headExpression\":\"cms/1970-01-01-second-title:content/posts/1970-01-01-second-title.md\",\"baseOwner\":\"owner\",\"baseRepoName\":\"repo\",\"baseExpression\":\"master:content/posts/1970-01-01-second-title.md\"},\"query\":\"query unpublishedBranchFile($headOwner: String!, $headRepoName: String!, $headExpression: String!, $baseOwner: String!, $baseRepoName: String!, $baseExpression: String!) {\\n head: repository(owner: $headOwner, name: $headRepoName) {\\n ...RepositoryParts\\n object(expression: $headExpression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n base: repository(owner: $baseOwner, name: $baseRepoName) {\\n ...RepositoryParts\\n object(expression: $baseExpression) {\\n ... on Blob {\\n id\\n oid\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Wed, 11 Sep 2019 06:53:54 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4970", + "X-RateLimit-Reset": "1568188384", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7A6B:9D20:1F549A9:265E356:5D789A02", + "content-length": "500", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"head\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3NDM0NTM=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzc0MzQ1MzoyMTkyOWRjMmIzNWE3MTQxMTk4N2E1ZTk2NjQ1MmRlMjFhNTAwNWFi\",\"text\":\"---\\ntemplate: post\\ntitle: second title\\ndraft: true\\ndate: 1970-01-01T00:00:00.300Z\\ndescription: second description\\ncategory: second category\\ntags:\\n - tag2\\n---\\nsecond body\\n\",\"is_binary\":false,\"__typename\":\"Blob\"}},\"base\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3NDM0NTM=\",\"__typename\":\"Repository\",\"object\":null}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"statues\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"7bd5e8c1186afd8327cfaae0f52ad5643f4dde8a\"},\"query\":\"query statues($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n status {\\n id\\n contexts {\\n id\\n context\\n state\\n target_url: targetUrl\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Wed, 11 Sep 2019 06:53:56 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4969", + "X-RateLimit-Reset": "1568188384", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7A6C:2B15:893369:A723F0:5D789A03", + "content-length": "276", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3NDM0NTM=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDY6Q29tbWl0MjA3NzQzNDUzOjdiZDVlOGMxMTg2YWZkODMyN2NmYWFlMGY1MmFkNTY0M2Y0ZGRlOGE=\",\"sha\":\"7bd5e8c1186afd8327cfaae0f52ad5643f4dde8a\",\"__typename\":\"Commit\",\"status\":null}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"statues\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"7bd5e8c1186afd8327cfaae0f52ad5643f4dde8a\"},\"query\":\"query statues($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n status {\\n id\\n contexts {\\n id\\n context\\n state\\n target_url: targetUrl\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Wed, 11 Sep 2019 06:54:01 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4968", + "X-RateLimit-Reset": "1568188384", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7A72:244EB:2B0E83F:3474F59:5D789A09", + "content-length": "276", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3NDM0NTM=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDY6Q29tbWl0MjA3NzQzNDUzOjdiZDVlOGMxMTg2YWZkODMyN2NmYWFlMGY1MmFkNTY0M2Y0ZGRlOGE=\",\"sha\":\"7bd5e8c1186afd8327cfaae0f52ad5643f4dde8a\",\"__typename\":\"Commit\",\"status\":null}}}}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/1970-01-01-third-title.json?ts=900&ref=refs/meta/_netlify_cms", + "headers": { + "Date": "Wed, 11 Sep 2019 06:54:03 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "404 Not Found", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4969", + "X-RateLimit-Reset": "1568188349", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A74:B4DE:202D3C2:27439C3:5D789A0A", + "content-length": "116", + "connection": "keep-alive" + }, + "response": "{\n \"message\": \"Not Found\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/#get-contents\"\n}\n", + "status": 404 + }, + { + "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"master:content/posts/1970-01-01-third-title.md\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Wed, 11 Sep 2019 06:54:03 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4967", + "X-RateLimit-Reset": "1568188384", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7A77:3ED82:2C38FE1:35E5248:5D789A0B", + "content-length": "106", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3NDM0NTM=\",\"__typename\":\"Repository\",\"object\":null}}}\n", + "status": 200 + }, + { + "body": "{\"content\":\"LS0tCnRlbXBsYXRlOiBwb3N0CnRpdGxlOiB0aGlyZCB0aXRsZQpkcmFmdDogdHJ1ZQpkYXRlOiAxOTcwLTAxLTAxVDAwOjAwOjAwLjYwMFoKZGVzY3JpcHRpb246IHRoaXJkIGRlc2NyaXB0aW9uCmNhdGVnb3J5OiB0aGlyZCBjYXRlZ29yeQp0YWdzOgogIC0gdGFnMwotLS0KdGhpcmQgYm9keQo=\",\"encoding\":\"base64\"}", + "method": "POST", + "url": "/repos/owner/repo/git/blobs?ts=900", + "headers": { + "Date": "Wed, 11 Sep 2019 06:54:04 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "206", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4968", + "X-RateLimit-Reset": "1568188349", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"aa4e0296a478f86c0189cfb6925244bc\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/blobs/28f15fe1a4ea577666ddd92b41a263bd194632a2", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A79:15110:2C284B1:35C3B23:5D789A0C", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"28f15fe1a4ea577666ddd92b41a263bd194632a2\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/28f15fe1a4ea577666ddd92b41a263bd194632a2\"\n}\n", + "status": 201 + }, + { + "body": "{\"operationName\":\"branch\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"qualifiedName\":\"refs/heads/master\"},\"query\":\"query branch($owner: String!, $name: String!, $qualifiedName: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n branch: ref(qualifiedName: $qualifiedName) {\\n ...BranchParts\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BranchParts on Ref {\\n commit: target {\\n ...ObjectParts\\n __typename\\n }\\n id\\n name\\n repository {\\n ...RepositoryParts\\n __typename\\n }\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Wed, 11 Sep 2019 06:54:05 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4966", + "X-RateLimit-Reset": "1568188384", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7A2E:244E4:1351526:177E61F:5D789A0D", + "content-length": "429", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3NDM0NTM=\",\"__typename\":\"Repository\",\"branch\":{\"commit\":{\"id\":\"MDY6Q29tbWl0MjA3NzQzNDUzOjcyNjE3MmRlYWU5OWM4YTJjZWE0YzcxZTczNGEwMmE3OTNkNGQ5ZTU=\",\"sha\":\"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\"__typename\":\"Commit\"},\"id\":\"MDM6UmVmMjA3NzQzNDUzOm1hc3Rlcg==\",\"name\":\"master\",\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3NDM0NTM=\",\"__typename\":\"Repository\"},\"__typename\":\"Ref\"}}}}\n", + "status": 200 + }, + { + "body": "{\"base_tree\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"tree\":[{\"path\":\"1970-01-01-third-title.md\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"28f15fe1a4ea577666ddd92b41a263bd194632a2\"}]}", + "method": "POST", + "url": "/repos/owner/repo/git/trees?ts=900", + "headers": { + "Date": "Wed, 11 Sep 2019 06:54:06 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "2355", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4967", + "X-RateLimit-Reset": "1568188349", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"89eccbeb34dfd1496ce8a9619f20bc08\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/trees/a4bf412e6fe815847f4cd61c5d3b6fee67a5ed38", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A30:B4E0:291685C:3219687:5D789A0D", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"a4bf412e6fe815847f4cd61c5d3b6fee67a5ed38\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/a4bf412e6fe815847f4cd61c5d3b6fee67a5ed38\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-third-title.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"28f15fe1a4ea577666ddd92b41a263bd194632a2\",\n \"size\": 167,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/28f15fe1a4ea577666ddd92b41a263bd194632a2\"\n },\n {\n \"path\": \"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"size\": 1707,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\"\n },\n {\n \"path\": \"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"size\": 2565,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\"\n },\n {\n \"path\": \"2016-02-02---A-Brief-History-of-Typography.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"0eea554365f002d0f1572af9a58522d335a794d5\",\n \"size\": 2786,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\"\n },\n {\n \"path\": \"2017-18-08---The-Birth-of-Movable-Type.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"44f78c474d04273185a95821426f75affc9b0044\",\n \"size\": 16071,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\"\n },\n {\n \"path\": \"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"size\": 7465,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"base_tree\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\"tree\":[{\"path\":\"posts\",\"mode\":\"040000\",\"type\":\"tree\",\"sha\":\"a4bf412e6fe815847f4cd61c5d3b6fee67a5ed38\",\"parentSha\":\"34892575e216c06e757093f036bd8e057c78a52f\"}]}", + "method": "POST", + "url": "/repos/owner/repo/git/trees?ts=900", + "headers": { + "Date": "Wed, 11 Sep 2019 06:54:07 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "828", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4966", + "X-RateLimit-Reset": "1568188349", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"30882790316d440049c8da72fd904eac\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/trees/171202850395a6ac687cc4cc318bd28037cbc4da", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A32:9D20:1F55838:265F4E9:5D789A0E", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"171202850395a6ac687cc4cc318bd28037cbc4da\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/171202850395a6ac687cc4cc318bd28037cbc4da\",\n \"tree\": [\n {\n \"path\": \"pages\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\"\n },\n {\n \"path\": \"posts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"a4bf412e6fe815847f4cd61c5d3b6fee67a5ed38\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/a4bf412e6fe815847f4cd61c5d3b6fee67a5ed38\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"base_tree\":\"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\"tree\":[{\"path\":\"content\",\"mode\":\"040000\",\"type\":\"tree\",\"sha\":\"171202850395a6ac687cc4cc318bd28037cbc4da\",\"parentSha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\"}]}", + "method": "POST", + "url": "/repos/owner/repo/git/trees?ts=900", + "headers": { + "Date": "Wed, 11 Sep 2019 06:54:07 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "11731", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4965", + "X-RateLimit-Reset": "1568188349", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"fbc67a0455aa8af0375d4b38b3970587\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/trees/683ee758f443afa80d6fb841e8ee17755ee99cd6", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A34:B4D7:2DD784:38318A:5D789A0F", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"683ee758f443afa80d6fb841e8ee17755ee99cd6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/683ee758f443afa80d6fb841e8ee17755ee99cd6\",\n \"tree\": [\n {\n \"path\": \".circleci\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"e5e9af3301cac61f120b8e4d40b1733c7a45685a\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/e5e9af3301cac61f120b8e4d40b1733c7a45685a\"\n },\n {\n \"path\": \".eslintignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"80b4531b026d19f8fa589efd122e76199d23f967\",\n \"size\": 39,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/80b4531b026d19f8fa589efd122e76199d23f967\"\n },\n {\n \"path\": \".eslintrc.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"370684994aaed5b858da3a006f48cfa57e88fd27\",\n \"size\": 414,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/370684994aaed5b858da3a006f48cfa57e88fd27\"\n },\n {\n \"path\": \".flowconfig\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14aa2ac4cc0e15223ad98630a6f1325fc81f8043\",\n \"size\": 283,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14aa2ac4cc0e15223ad98630a6f1325fc81f8043\"\n },\n {\n \"path\": \".gitattributes\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"10a369ddf4f603337cabc6f21646508323941ce1\",\n \"size\": 135,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/10a369ddf4f603337cabc6f21646508323941ce1\"\n },\n {\n \"path\": \".github\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4ebeece548b52b20af59622354530a6d33b50b43\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4ebeece548b52b20af59622354530a6d33b50b43\"\n },\n {\n \"path\": \".gitignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"c071ba35b0e49899bab6d610a68eef667dbbf157\",\n \"size\": 169,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/c071ba35b0e49899bab6d610a68eef667dbbf157\"\n },\n {\n \"path\": \".prettierignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"393f050e123d998cf8c8b362ff95cc8ac4d250e5\",\n \"size\": 45,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/393f050e123d998cf8c8b362ff95cc8ac4d250e5\"\n },\n {\n \"path\": \".prettierrc\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e52ad05bb13b084d7949dd76e1b2517455162150\",\n \"size\": 223,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/e52ad05bb13b084d7949dd76e1b2517455162150\"\n },\n {\n \"path\": \".stylelintrc.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"4b4c9698d10d756f5faa025659b86375428ed0a7\",\n \"size\": 718,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/4b4c9698d10d756f5faa025659b86375428ed0a7\"\n },\n {\n \"path\": \".vscode\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"286e97ec0113ea8242b41ac222e2c3e8077e6f1e\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/286e97ec0113ea8242b41ac222e2c3e8077e6f1e\"\n },\n {\n \"path\": \"CHANGELOG.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"070a5d4f0eacd2dc0be81ae8996f8982de43046e\",\n \"size\": 2113,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/070a5d4f0eacd2dc0be81ae8996f8982de43046e\"\n },\n {\n \"path\": \"CODE_OF_CONDUCT.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"92bc7565ff0ee145a0041b5179a820f14f39ab22\",\n \"size\": 3355,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/92bc7565ff0ee145a0041b5179a820f14f39ab22\"\n },\n {\n \"path\": \"CONTRIBUTING.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"8552aa241254a61258e1ff9666ab36f32fb1e3b9\",\n \"size\": 3548,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/8552aa241254a61258e1ff9666ab36f32fb1e3b9\"\n },\n {\n \"path\": \"LICENSE\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"42d85938357b49977c126ca03b199129082d4fb8\",\n \"size\": 1091,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/42d85938357b49977c126ca03b199129082d4fb8\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"19df50a78654c8d757ca7f38447aa3d09c7abcce\",\n \"size\": 3698,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/19df50a78654c8d757ca7f38447aa3d09c7abcce\"\n },\n {\n \"path\": \"backend\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\"\n },\n {\n \"path\": \"config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"58afd573bbb69fcca000efd0f5d90b93c93a98dd\",\n \"size\": 853,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/58afd573bbb69fcca000efd0f5d90b93c93a98dd\"\n },\n {\n \"path\": \"content\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"171202850395a6ac687cc4cc318bd28037cbc4da\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/171202850395a6ac687cc4cc318bd28037cbc4da\"\n },\n {\n \"path\": \"flow-typed\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"86c32fd6c3118be5e0dbbb231a834447357236c6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/86c32fd6c3118be5e0dbbb231a834447357236c6\"\n },\n {\n \"path\": \"flow\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"0af45ad00d155c8d8c7407d913ff85278244c9ce\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/0af45ad00d155c8d8c7407d913ff85278244c9ce\"\n },\n {\n \"path\": \"gatsby-browser.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9bd2c9dce175f04980e91cd9dc295a299e3cdb80\",\n \"size\": 90,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9bd2c9dce175f04980e91cd9dc295a299e3cdb80\"\n },\n {\n \"path\": \"gatsby-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"353a109dad62e3f25bf9f5e6a2167f21a6c8b459\",\n \"size\": 7228,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/353a109dad62e3f25bf9f5e6a2167f21a6c8b459\"\n },\n {\n \"path\": \"gatsby-node.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14a207883c2093d2cc071bc5a464e165bcc1fead\",\n \"size\": 409,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14a207883c2093d2cc071bc5a464e165bcc1fead\"\n },\n {\n \"path\": \"gatsby\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4f23c06cd1740bf78304d2c0b29bf6bfdf427981\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4f23c06cd1740bf78304d2c0b29bf6bfdf427981\"\n },\n {\n \"path\": \"jest\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\"\n },\n {\n \"path\": \"netlify.toml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"599b99cc5700404fde316a7ede829776f23e7d45\",\n \"size\": 137,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/599b99cc5700404fde316a7ede829776f23e7d45\"\n },\n {\n \"path\": \"package.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9d777616438b90a18f1a4ebfd5f114b4c06c6f17\",\n \"size\": 6855,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9d777616438b90a18f1a4ebfd5f114b4c06c6f17\"\n },\n {\n \"path\": \"postcss-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d216501e9b351a72e00ba0b7459a6500e27e7da2\",\n \"size\": 703,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d216501e9b351a72e00ba0b7459a6500e27e7da2\"\n },\n {\n \"path\": \"renovate.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"dcc309398785698b8870545c32051a3d72dd8271\",\n \"size\": 460,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/dcc309398785698b8870545c32051a3d72dd8271\"\n },\n {\n \"path\": \"serverless-scripts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ee3701f2fbfc7196ba340f6481d1387d20527898\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ee3701f2fbfc7196ba340f6481d1387d20527898\"\n },\n {\n \"path\": \"serverless-single-page-app-plugin\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"08763fcfba643a06a452398517019bea4a5850ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/08763fcfba643a06a452398517019bea4a5850ba\"\n },\n {\n \"path\": \"serverless.yml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"20b22c5fad229f35d029bf6614d333d82fe8a987\",\n \"size\": 7803,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/20b22c5fad229f35d029bf6614d333d82fe8a987\"\n },\n {\n \"path\": \"src\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"8cdb35a88232c0f32f12f130c92c7cc55f97f471\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/8cdb35a88232c0f32f12f130c92c7cc55f97f471\"\n },\n {\n \"path\": \"static\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"53c6380a600a030d3722bff7ecde36f749fb6964\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/53c6380a600a030d3722bff7ecde36f749fb6964\"\n },\n {\n \"path\": \"utils\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"a592549c9f74db40b51efefcda2fd76810405f27\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/a592549c9f74db40b51efefcda2fd76810405f27\"\n },\n {\n \"path\": \"yarn.lock\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"475c9c1924ca752a0686303e2fdeb7b13ad75f57\",\n \"size\": 793903,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/475c9c1924ca752a0686303e2fdeb7b13ad75f57\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"operationName\":\"statues\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"7bd5e8c1186afd8327cfaae0f52ad5643f4dde8a\"},\"query\":\"query statues($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n status {\\n id\\n contexts {\\n id\\n context\\n state\\n target_url: targetUrl\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Wed, 11 Sep 2019 06:54:08 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4965", + "X-RateLimit-Reset": "1568188384", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7A36:244EB:2B0F3D1:3475CD3:5D789A0F", + "content-length": "276", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3NDM0NTM=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDY6Q29tbWl0MjA3NzQzNDUzOjdiZDVlOGMxMTg2YWZkODMyN2NmYWFlMGY1MmFkNTY0M2Y0ZGRlOGE=\",\"sha\":\"7bd5e8c1186afd8327cfaae0f52ad5643f4dde8a\",\"__typename\":\"Commit\",\"status\":null}}}}\n", + "status": 200 + }, + { + "body": "{\"message\":\"Create Post “1970-01-01-third-title”\",\"tree\":\"683ee758f443afa80d6fb841e8ee17755ee99cd6\",\"parents\":[\"726172deae99c8a2cea4c71e734a02a793d4d9e5\"]}", + "method": "POST", + "url": "/repos/owner/repo/git/commits?ts=900", + "headers": { + "Date": "Wed, 11 Sep 2019 06:54:08 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "1499", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4964", + "X-RateLimit-Reset": "1568188349", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"4e48b96e29e7ab58dd45e99e0383007d\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/commits/41fe210e8b78bf0da2360dcef1e61d7c4cdddfbf", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A38:2B19:12E5752:170E054:5D789A10", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"41fe210e8b78bf0da2360dcef1e61d7c4cdddfbf\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NzQzNDUzOjQxZmUyMTBlOGI3OGJmMGRhMjM2MGRjZWYxZTYxZDdjNGNkZGRmYmY=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/41fe210e8b78bf0da2360dcef1e61d7c4cdddfbf\",\n \"html_url\": \"https://github.com/owner/repo/commit/41fe210e8b78bf0da2360dcef1e61d7c4cdddfbf\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-11T06:54:08Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-11T06:54:08Z\"\n },\n \"tree\": {\n \"sha\": \"683ee758f443afa80d6fb841e8ee17755ee99cd6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/683ee758f443afa80d6fb841e8ee17755ee99cd6\"\n },\n \"message\": \"Create Post “1970-01-01-third-title”\",\n \"parents\": [\n {\n \"sha\": \"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"html_url\": \"https://github.com/owner/repo/commit/726172deae99c8a2cea4c71e734a02a793d4d9e5\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "status": 201 + }, + { + "body": "{\"operationName\":\"createBranchAndPullRequest\",\"variables\":{\"createRefInput\":{\"name\":\"refs/heads/cms/1970-01-01-third-title\",\"oid\":\"41fe210e8b78bf0da2360dcef1e61d7c4cdddfbf\",\"repositoryId\":\"MDEwOlJlcG9zaXRvcnkyMDc3NDM0NTM=\"},\"createPullRequestInput\":{\"baseRefName\":\"master\",\"body\":\"Automatically generated by Netlify CMS\",\"title\":\"Create Post “1970-01-01-third-title”\",\"headRefName\":\"cms/1970-01-01-third-title\",\"repositoryId\":\"MDEwOlJlcG9zaXRvcnkyMDc3NDM0NTM=\"}},\"query\":\"mutation createBranchAndPullRequest($createRefInput: CreateRefInput!, $createPullRequestInput: CreatePullRequestInput!) {\\n createRef(input: $createRefInput) {\\n branch: ref {\\n ...BranchParts\\n __typename\\n }\\n __typename\\n }\\n createPullRequest(input: $createPullRequestInput) {\\n clientMutationId\\n pullRequest {\\n ...PullRequestParts\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment BranchParts on Ref {\\n commit: target {\\n ...ObjectParts\\n __typename\\n }\\n id\\n name\\n repository {\\n ...RepositoryParts\\n __typename\\n }\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment PullRequestParts on PullRequest {\\n id\\n baseRefName\\n body\\n headRefName\\n headRefOid\\n number\\n state\\n title\\n merged_at: mergedAt\\n repository {\\n ...RepositoryParts\\n __typename\\n }\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Wed, 11 Sep 2019 06:54:10 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4964", + "X-RateLimit-Reset": "1568188384", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7A3D:B4D7:2DD7B4:3831C1:5D789A11", + "content-length": "952", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"createRef\":{\"branch\":{\"commit\":{\"id\":\"MDY6Q29tbWl0MjA3NzQzNDUzOjQxZmUyMTBlOGI3OGJmMGRhMjM2MGRjZWYxZTYxZDdjNGNkZGRmYmY=\",\"sha\":\"41fe210e8b78bf0da2360dcef1e61d7c4cdddfbf\",\"__typename\":\"Commit\"},\"id\":\"MDM6UmVmMjA3NzQzNDUzOmNtcy8xOTcwLTAxLTAxLXRoaXJkLXRpdGxl\",\"name\":\"cms/1970-01-01-third-title\",\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3NDM0NTM=\",\"__typename\":\"Repository\"},\"__typename\":\"Ref\"},\"__typename\":\"CreateRefPayload\"},\"createPullRequest\":{\"clientMutationId\":null,\"pullRequest\":{\"id\":\"MDExOlB1bGxSZXF1ZXN0MzE2Mjk5ODY5\",\"baseRefName\":\"master\",\"body\":\"Automatically generated by Netlify CMS\",\"headRefName\":\"cms/1970-01-01-third-title\",\"headRefOid\":\"41fe210e8b78bf0da2360dcef1e61d7c4cdddfbf\",\"number\":3,\"state\":\"OPEN\",\"title\":\"Create Post “1970-01-01-third-title”\",\"merged_at\":null,\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3NDM0NTM=\",\"__typename\":\"Repository\"},\"__typename\":\"PullRequest\"},\"__typename\":\"CreatePullRequestPayload\"}}}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=900", + "headers": { + "Date": "Wed, 11 Sep 2019 06:54:11 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4963", + "X-RateLimit-Reset": "1568188349", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"69b0146fa07f492d018d013892232223\"", + "Last-Modified": "Wed, 11 Sep 2019 06:52:56 GMT", + "X-Poll-Interval": "300", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A3E:B4DC:1353048:17867A8:5D789A12", + "content-length": "482", + "connection": "keep-alive" + }, + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NzQzNDUzOnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"31fcff80002dee97acbef83856cfb81b172f19e0\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/31fcff80002dee97acbef83856cfb81b172f19e0\"\n }\n}\n", + "status": 200 + }, + { + "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjMsImhlYWQiOiI0MWZlMjEwZThiNzhiZjBkYTIzNjBkY2VmMWU2MWQ3YzRjZGRkZmJmIn0sInVzZXIiOiJvd25lciIsInN0YXR1cyI6ImRyYWZ0IiwiYnJhbmNoIjoiY21zLzE5NzAtMDEtMDEtdGhpcmQtdGl0bGUiLCJjb2xsZWN0aW9uIjoicG9zdHMiLCJjb21taXRNZXNzYWdlIjoiQ3JlYXRlIFBvc3Qg4oCcMTk3MC0wMS0wMS10aGlyZC10aXRsZeKAnSIsInRpdGxlIjoidGhpcmQgdGl0bGUiLCJkZXNjcmlwdGlvbiI6InRoaXJkIGRlc2NyaXB0aW9uIiwib2JqZWN0cyI6eyJlbnRyeSI6eyJwYXRoIjoiY29udGVudC9wb3N0cy8xOTcwLTAxLTAxLXRoaXJkLXRpdGxlLm1kIiwic2hhIjoiMjhmMTVmZTFhNGVhNTc3NjY2ZGRkOTJiNDFhMjYzYmQxOTQ2MzJhMiJ9LCJmaWxlcyI6W119LCJ0aW1lU3RhbXAiOiIxOTcwLTAxLTAxVDAwOjAwOjAwLjkwMFoifQ==\",\"encoding\":\"base64\"}", + "method": "POST", + "url": "/repos/owner/repo/git/blobs?ts=900", + "headers": { + "Date": "Wed, 11 Sep 2019 06:54:12 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "206", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4962", + "X-RateLimit-Reset": "1568188349", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"23185b8a2c33de2bbac58e47c9191489\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/blobs/1f2d13143a2c5dc075d8d12b86955db424ca1004", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A3F:3ED7B:2103321:2832A03:5D789A13", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"1f2d13143a2c5dc075d8d12b86955db424ca1004\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/1f2d13143a2c5dc075d8d12b86955db424ca1004\"\n}\n", + "status": 201 + }, + { + "body": "{\"operationName\":\"commitTree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"31fcff80002dee97acbef83856cfb81b172f19e0\"},\"query\":\"query commitTree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n commit: object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n tree {\\n ...ObjectParts\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Wed, 11 Sep 2019 06:54:12 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4963", + "X-RateLimit-Reset": "1568188384", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7A40:9D20:1F55EFF:265FD40:5D789A14", + "content-length": "839", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3NDM0NTM=\",\"__typename\":\"Repository\",\"commit\":{\"id\":\"MDY6Q29tbWl0MjA3NzQzNDUzOjMxZmNmZjgwMDAyZGVlOTdhY2JlZjgzODU2Y2ZiODFiMTcyZjE5ZTA=\",\"sha\":\"31fcff80002dee97acbef83856cfb81b172f19e0\",\"__typename\":\"Commit\",\"tree\":{\"id\":\"MDQ6VHJlZTIwNzc0MzQ1MzpkYjQzNDQzYjIxNTM5YTJiYTdlNWNmNjc5MTUwMDI5NzNlMTRmNzk2\",\"sha\":\"db43443b21539a2ba7e5cf67915002973e14f796\",\"__typename\":\"Tree\",\"entries\":[{\"path\":\"1970-01-01-first-title.json\",\"sha\":\"7961c566ace1cfaf362fb0171cb6b125f953ca25\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"1970-01-01-second-title.json\",\"sha\":\"c65d99d83e281e3be2aad42ded2606821c88abc4\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"README.md\",\"sha\":\"98787d1bd948850444433e91a43091a76c4eb455\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"}]}}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"tree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"31fcff80002dee97acbef83856cfb81b172f19e0\"},\"query\":\"query tree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n tree: object(oid: $sha) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Wed, 11 Sep 2019 06:54:12 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4962", + "X-RateLimit-Reset": "1568188384", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7A42:3ED82:2C39F63:35E64B1:5D789A14", + "content-length": "260", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3NDM0NTM=\",\"__typename\":\"Repository\",\"tree\":{\"id\":\"MDY6Q29tbWl0MjA3NzQzNDUzOjMxZmNmZjgwMDAyZGVlOTdhY2JlZjgzODU2Y2ZiODFiMTcyZjE5ZTA=\",\"sha\":\"31fcff80002dee97acbef83856cfb81b172f19e0\",\"__typename\":\"Commit\"}}}}\n", + "status": 200 + }, + { + "body": "{\"base_tree\":\"31fcff80002dee97acbef83856cfb81b172f19e0\",\"tree\":[{\"path\":\"1970-01-01-third-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"1f2d13143a2c5dc075d8d12b86955db424ca1004\"}]}", + "method": "POST", + "url": "/repos/owner/repo/git/trees?ts=900", + "headers": { + "Date": "Wed, 11 Sep 2019 06:54:13 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "1559", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4961", + "X-RateLimit-Reset": "1568188349", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"0e02d730e48cf79b28c5859594e99d4f\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/trees/a03c2abe8303f7623a51018df368bcd36280dbd1", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A44:244EB:2B0FD27:34767E8:5D789A14", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"a03c2abe8303f7623a51018df368bcd36280dbd1\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/a03c2abe8303f7623a51018df368bcd36280dbd1\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"7961c566ace1cfaf362fb0171cb6b125f953ca25\",\n \"size\": 462,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/7961c566ace1cfaf362fb0171cb6b125f953ca25\"\n },\n {\n \"path\": \"1970-01-01-second-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"c65d99d83e281e3be2aad42ded2606821c88abc4\",\n \"size\": 467,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/c65d99d83e281e3be2aad42ded2606821c88abc4\"\n },\n {\n \"path\": \"1970-01-01-third-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"1f2d13143a2c5dc075d8d12b86955db424ca1004\",\n \"size\": 462,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/1f2d13143a2c5dc075d8d12b86955db424ca1004\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"message\":\"Updating “1970-01-01-third-title” metadata\",\"tree\":\"a03c2abe8303f7623a51018df368bcd36280dbd1\",\"parents\":[\"31fcff80002dee97acbef83856cfb81b172f19e0\"]}", + "method": "POST", + "url": "/repos/owner/repo/git/commits?ts=900", + "headers": { + "Date": "Wed, 11 Sep 2019 06:54:14 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "1505", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4960", + "X-RateLimit-Reset": "1568188349", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"73d6c295dd38f4a113cc20e8f22e16b5\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/commits/4a92b1e3de48379f3e63f0fee082de4bc970c419", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A46:244E7:1FC0B2C:26D75C5:5D789A15", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"4a92b1e3de48379f3e63f0fee082de4bc970c419\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NzQzNDUzOjRhOTJiMWUzZGU0ODM3OWYzZTYzZjBmZWUwODJkZTRiYzk3MGM0MTk=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/4a92b1e3de48379f3e63f0fee082de4bc970c419\",\n \"html_url\": \"https://github.com/owner/repo/commit/4a92b1e3de48379f3e63f0fee082de4bc970c419\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-11T06:54:13Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-11T06:54:13Z\"\n },\n \"tree\": {\n \"sha\": \"a03c2abe8303f7623a51018df368bcd36280dbd1\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/a03c2abe8303f7623a51018df368bcd36280dbd1\"\n },\n \"message\": \"Updating “1970-01-01-third-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"31fcff80002dee97acbef83856cfb81b172f19e0\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/31fcff80002dee97acbef83856cfb81b172f19e0\",\n \"html_url\": \"https://github.com/owner/repo/commit/31fcff80002dee97acbef83856cfb81b172f19e0\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "status": 201 + }, + { + "body": "{\"sha\":\"4a92b1e3de48379f3e63f0fee082de4bc970c419\",\"force\":false}", + "method": "PATCH", + "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=900", + "headers": { + "Date": "Wed, 11 Sep 2019 06:54:15 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4959", + "X-RateLimit-Reset": "1568188349", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"0622133f70f4b392b1070b89e5eafae9\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A48:244E1:8B69EA:A95DDD:5D789A16", + "content-length": "482", + "connection": "keep-alive" + }, + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NzQzNDUzOnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"4a92b1e3de48379f3e63f0fee082de4bc970c419\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/4a92b1e3de48379f3e63f0fee082de4bc970c419\"\n }\n}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"unpublishedBranchFile\",\"variables\":{\"headOwner\":\"owner\",\"headRepoName\":\"repo\",\"headExpression\":\"cms/1970-01-01-third-title:content/posts/1970-01-01-third-title.md\",\"baseOwner\":\"owner\",\"baseRepoName\":\"repo\",\"baseExpression\":\"master:content/posts/1970-01-01-third-title.md\"},\"query\":\"query unpublishedBranchFile($headOwner: String!, $headRepoName: String!, $headExpression: String!, $baseOwner: String!, $baseRepoName: String!, $baseExpression: String!) {\\n head: repository(owner: $headOwner, name: $headRepoName) {\\n ...RepositoryParts\\n object(expression: $headExpression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n base: repository(owner: $baseOwner, name: $baseRepoName) {\\n ...RepositoryParts\\n object(expression: $baseExpression) {\\n ... on Blob {\\n id\\n oid\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Wed, 11 Sep 2019 06:54:16 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4961", + "X-RateLimit-Reset": "1568188384", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7A4B:244EB:2B101C0:3476D86:5D789A17", + "content-length": "496", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"head\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3NDM0NTM=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzc0MzQ1MzoyOGYxNWZlMWE0ZWE1Nzc2NjZkZGQ5MmI0MWEyNjNiZDE5NDYzMmEy\",\"text\":\"---\\ntemplate: post\\ntitle: third title\\ndraft: true\\ndate: 1970-01-01T00:00:00.600Z\\ndescription: third description\\ncategory: third category\\ntags:\\n - tag3\\n---\\nthird body\\n\",\"is_binary\":false,\"__typename\":\"Blob\"}},\"base\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3NDM0NTM=\",\"__typename\":\"Repository\",\"object\":null}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"statues\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"41fe210e8b78bf0da2360dcef1e61d7c4cdddfbf\"},\"query\":\"query statues($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n status {\\n id\\n contexts {\\n id\\n context\\n state\\n target_url: targetUrl\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Wed, 11 Sep 2019 06:54:17 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4960", + "X-RateLimit-Reset": "1568188384", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7A4E:2B1F:20810A1:27CC264:5D789A19", + "content-length": "276", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3NDM0NTM=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDY6Q29tbWl0MjA3NzQzNDUzOjQxZmUyMTBlOGI3OGJmMGRhMjM2MGRjZWYxZTYxZDdjNGNkZGRmYmY=\",\"sha\":\"41fe210e8b78bf0da2360dcef1e61d7c4cdddfbf\",\"__typename\":\"Commit\",\"status\":null}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"unpublishedPrBranches\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\"},\"query\":\"query unpublishedPrBranches($owner: String!, $name: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n refs(refPrefix: \\\"refs/heads/cms/\\\", last: 50) {\\n nodes {\\n id\\n associatedPullRequests(last: 50, states: OPEN) {\\n nodes {\\n id\\n headRef {\\n id\\n name\\n prefix\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Wed, 11 Sep 2019 06:54:18 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4959", + "X-RateLimit-Reset": "1568188384", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7A50:2B19:12E5D56:170E7AD:5D789A19", + "content-length": "1279", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3NDM0NTM=\",\"__typename\":\"Repository\",\"refs\":{\"nodes\":[{\"id\":\"MDM6UmVmMjA3NzQzNDUzOjE5NzAtMDEtMDEtZmlyc3QtdGl0bGU=\",\"associatedPullRequests\":{\"nodes\":[{\"id\":\"MDExOlB1bGxSZXF1ZXN0MzE2Mjk5NjU1\",\"headRef\":{\"id\":\"MDM6UmVmMjA3NzQzNDUzOmNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxl\",\"name\":\"cms/1970-01-01-first-title\",\"prefix\":\"refs/heads/\",\"__typename\":\"Ref\"},\"__typename\":\"PullRequest\"}],\"__typename\":\"PullRequestConnection\"},\"__typename\":\"Ref\"},{\"id\":\"MDM6UmVmMjA3NzQzNDUzOjE5NzAtMDEtMDEtc2Vjb25kLXRpdGxl\",\"associatedPullRequests\":{\"nodes\":[{\"id\":\"MDExOlB1bGxSZXF1ZXN0MzE2Mjk5NzY2\",\"headRef\":{\"id\":\"MDM6UmVmMjA3NzQzNDUzOmNtcy8xOTcwLTAxLTAxLXNlY29uZC10aXRsZQ==\",\"name\":\"cms/1970-01-01-second-title\",\"prefix\":\"refs/heads/\",\"__typename\":\"Ref\"},\"__typename\":\"PullRequest\"}],\"__typename\":\"PullRequestConnection\"},\"__typename\":\"Ref\"},{\"id\":\"MDM6UmVmMjA3NzQzNDUzOjE5NzAtMDEtMDEtdGhpcmQtdGl0bGU=\",\"associatedPullRequests\":{\"nodes\":[{\"id\":\"MDExOlB1bGxSZXF1ZXN0MzE2Mjk5ODY5\",\"headRef\":{\"id\":\"MDM6UmVmMjA3NzQzNDUzOmNtcy8xOTcwLTAxLTAxLXRoaXJkLXRpdGxl\",\"name\":\"cms/1970-01-01-third-title\",\"prefix\":\"refs/heads/\",\"__typename\":\"Ref\"},\"__typename\":\"PullRequest\"}],\"__typename\":\"PullRequestConnection\"},\"__typename\":\"Ref\"}],\"__typename\":\"RefConnection\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"unpublishedBranchFile\",\"variables\":{\"headOwner\":\"owner\",\"headRepoName\":\"repo\",\"headExpression\":\"cms/1970-01-01-third-title:content/posts/1970-01-01-third-title.md\",\"baseOwner\":\"owner\",\"baseRepoName\":\"repo\",\"baseExpression\":\"master:content/posts/1970-01-01-third-title.md\"},\"query\":\"query unpublishedBranchFile($headOwner: String!, $headRepoName: String!, $headExpression: String!, $baseOwner: String!, $baseRepoName: String!, $baseExpression: String!) {\\n head: repository(owner: $headOwner, name: $headRepoName) {\\n ...RepositoryParts\\n object(expression: $headExpression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n base: repository(owner: $baseOwner, name: $baseRepoName) {\\n ...RepositoryParts\\n object(expression: $baseExpression) {\\n ... on Blob {\\n id\\n oid\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Wed, 11 Sep 2019 06:54:18 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4957", + "X-RateLimit-Reset": "1568188384", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7A56:244E4:1351EC6:177F1C2:5D789A1A", + "content-length": "496", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"head\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3NDM0NTM=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzc0MzQ1MzoyOGYxNWZlMWE0ZWE1Nzc2NjZkZGQ5MmI0MWEyNjNiZDE5NDYzMmEy\",\"text\":\"---\\ntemplate: post\\ntitle: third title\\ndraft: true\\ndate: 1970-01-01T00:00:00.600Z\\ndescription: third description\\ncategory: third category\\ntags:\\n - tag3\\n---\\nthird body\\n\",\"is_binary\":false,\"__typename\":\"Blob\"}},\"base\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3NDM0NTM=\",\"__typename\":\"Repository\",\"object\":null}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"unpublishedBranchFile\",\"variables\":{\"headOwner\":\"owner\",\"headRepoName\":\"repo\",\"headExpression\":\"cms/1970-01-01-second-title:content/posts/1970-01-01-second-title.md\",\"baseOwner\":\"owner\",\"baseRepoName\":\"repo\",\"baseExpression\":\"master:content/posts/1970-01-01-second-title.md\"},\"query\":\"query unpublishedBranchFile($headOwner: String!, $headRepoName: String!, $headExpression: String!, $baseOwner: String!, $baseRepoName: String!, $baseExpression: String!) {\\n head: repository(owner: $headOwner, name: $headRepoName) {\\n ...RepositoryParts\\n object(expression: $headExpression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n base: repository(owner: $baseOwner, name: $baseRepoName) {\\n ...RepositoryParts\\n object(expression: $baseExpression) {\\n ... on Blob {\\n id\\n oid\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Wed, 11 Sep 2019 06:54:18 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4958", + "X-RateLimit-Reset": "1568188384", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7A54:2B1F:208120B:27CC422:5D789A1A", + "content-length": "500", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"head\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3NDM0NTM=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzc0MzQ1MzoyMTkyOWRjMmIzNWE3MTQxMTk4N2E1ZTk2NjQ1MmRlMjFhNTAwNWFi\",\"text\":\"---\\ntemplate: post\\ntitle: second title\\ndraft: true\\ndate: 1970-01-01T00:00:00.300Z\\ndescription: second description\\ncategory: second category\\ntags:\\n - tag2\\n---\\nsecond body\\n\",\"is_binary\":false,\"__typename\":\"Blob\"}},\"base\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3NDM0NTM=\",\"__typename\":\"Repository\",\"object\":null}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"unpublishedBranchFile\",\"variables\":{\"headOwner\":\"owner\",\"headRepoName\":\"repo\",\"headExpression\":\"cms/1970-01-01-first-title:content/posts/1970-01-01-first-title.md\",\"baseOwner\":\"owner\",\"baseRepoName\":\"repo\",\"baseExpression\":\"master:content/posts/1970-01-01-first-title.md\"},\"query\":\"query unpublishedBranchFile($headOwner: String!, $headRepoName: String!, $headExpression: String!, $baseOwner: String!, $baseRepoName: String!, $baseExpression: String!) {\\n head: repository(owner: $headOwner, name: $headRepoName) {\\n ...RepositoryParts\\n object(expression: $headExpression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n base: repository(owner: $baseOwner, name: $baseRepoName) {\\n ...RepositoryParts\\n object(expression: $baseExpression) {\\n ... on Blob {\\n id\\n oid\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Wed, 11 Sep 2019 06:54:18 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4956", + "X-RateLimit-Reset": "1568188384", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7A52:244E7:1FC10B6:26D7C6D:5D789A1A", + "content-length": "496", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"head\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3NDM0NTM=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzc0MzQ1MzphMDQxMjQ1ODE0ODkyZTNmNzNmNjNjYTU0MzMzZmRhNjQ5YjdmYzBi\",\"text\":\"---\\ntemplate: post\\ntitle: first title\\ndraft: true\\ndate: 1970-01-01T00:00:00.000Z\\ndescription: first description\\ncategory: first category\\ntags:\\n - tag1\\n---\\nfirst body\\n\",\"is_binary\":false,\"__typename\":\"Blob\"}},\"base\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3NDM0NTM=\",\"__typename\":\"Repository\",\"object\":null}}}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=900", + "headers": { + "Date": "Wed, 11 Sep 2019 06:54:20 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4958", + "X-RateLimit-Reset": "1568188349", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"0622133f70f4b392b1070b89e5eafae9\"", + "Last-Modified": "Wed, 11 Sep 2019 06:52:56 GMT", + "X-Poll-Interval": "300", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A58:244E4:135200C:177F35E:5D789A1C", + "content-length": "482", + "connection": "keep-alive" + }, + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NzQzNDUzOnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"4a92b1e3de48379f3e63f0fee082de4bc970c419\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/4a92b1e3de48379f3e63f0fee082de4bc970c419\"\n }\n}\n", + "status": 200 + }, + { + "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjMsImhlYWQiOiI0MWZlMjEwZThiNzhiZjBkYTIzNjBkY2VmMWU2MWQ3YzRjZGRkZmJmIn0sInVzZXIiOiJvd25lciIsInN0YXR1cyI6InBlbmRpbmdfcHVibGlzaCIsImJyYW5jaCI6ImNtcy8xOTcwLTAxLTAxLXRoaXJkLXRpdGxlIiwiY29sbGVjdGlvbiI6InBvc3RzIiwiY29tbWl0TWVzc2FnZSI6IkNyZWF0ZSBQb3N0IOKAnDE5NzAtMDEtMDEtdGhpcmQtdGl0bGXigJ0iLCJ0aXRsZSI6InRoaXJkIHRpdGxlIiwiZGVzY3JpcHRpb24iOiJ0aGlyZCBkZXNjcmlwdGlvbiIsIm9iamVjdHMiOnsiZW50cnkiOnsicGF0aCI6ImNvbnRlbnQvcG9zdHMvMTk3MC0wMS0wMS10aGlyZC10aXRsZS5tZCIsInNoYSI6IjI4ZjE1ZmUxYTRlYTU3NzY2NmRkZDkyYjQxYTI2M2JkMTk0NjMyYTIifSwiZmlsZXMiOltdfSwidGltZVN0YW1wIjoiMTk3MC0wMS0wMVQwMDowMDowMC45MDBaIn0=\",\"encoding\":\"base64\"}", + "method": "POST", + "url": "/repos/owner/repo/git/blobs?ts=900", + "headers": { + "Date": "Wed, 11 Sep 2019 06:54:21 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "206", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4957", + "X-RateLimit-Reset": "1568188349", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"9a076008a7fa96033459cb51c46712e0\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/blobs/6b89764400a6fc946de0dc81e0aec90d2c4fce79", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A5A:15110:2C2A099:35C5C7A:5D789A1C", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"6b89764400a6fc946de0dc81e0aec90d2c4fce79\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/6b89764400a6fc946de0dc81e0aec90d2c4fce79\"\n}\n", + "status": 201 + }, + { + "body": "{\"operationName\":\"tree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"4a92b1e3de48379f3e63f0fee082de4bc970c419\"},\"query\":\"query tree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n tree: object(oid: $sha) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Wed, 11 Sep 2019 06:54:21 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4955", + "X-RateLimit-Reset": "1568188384", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7A5E:244EB:2B10946:34776C3:5D789A1D", + "content-length": "260", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3NDM0NTM=\",\"__typename\":\"Repository\",\"tree\":{\"id\":\"MDY6Q29tbWl0MjA3NzQzNDUzOjRhOTJiMWUzZGU0ODM3OWYzZTYzZjBmZWUwODJkZTRiYzk3MGM0MTk=\",\"sha\":\"4a92b1e3de48379f3e63f0fee082de4bc970c419\",\"__typename\":\"Commit\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"commitTree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"4a92b1e3de48379f3e63f0fee082de4bc970c419\"},\"query\":\"query commitTree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n commit: object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n tree {\\n ...ObjectParts\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Wed, 11 Sep 2019 06:54:21 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4954", + "X-RateLimit-Reset": "1568188384", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7A5C:1510D:7F7AF0:9C5A85:5D789A1D", + "content-length": "979", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3NDM0NTM=\",\"__typename\":\"Repository\",\"commit\":{\"id\":\"MDY6Q29tbWl0MjA3NzQzNDUzOjRhOTJiMWUzZGU0ODM3OWYzZTYzZjBmZWUwODJkZTRiYzk3MGM0MTk=\",\"sha\":\"4a92b1e3de48379f3e63f0fee082de4bc970c419\",\"__typename\":\"Commit\",\"tree\":{\"id\":\"MDQ6VHJlZTIwNzc0MzQ1MzphMDNjMmFiZTgzMDNmNzYyM2E1MTAxOGRmMzY4YmNkMzYyODBkYmQx\",\"sha\":\"a03c2abe8303f7623a51018df368bcd36280dbd1\",\"__typename\":\"Tree\",\"entries\":[{\"path\":\"1970-01-01-first-title.json\",\"sha\":\"7961c566ace1cfaf362fb0171cb6b125f953ca25\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"1970-01-01-second-title.json\",\"sha\":\"c65d99d83e281e3be2aad42ded2606821c88abc4\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"1970-01-01-third-title.json\",\"sha\":\"1f2d13143a2c5dc075d8d12b86955db424ca1004\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"README.md\",\"sha\":\"98787d1bd948850444433e91a43091a76c4eb455\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"}]}}}}}\n", + "status": 200 + }, + { + "body": "{\"base_tree\":\"4a92b1e3de48379f3e63f0fee082de4bc970c419\",\"tree\":[{\"path\":\"1970-01-01-third-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"6b89764400a6fc946de0dc81e0aec90d2c4fce79\"}]}", + "method": "POST", + "url": "/repos/owner/repo/git/trees?ts=900", + "headers": { + "Date": "Wed, 11 Sep 2019 06:54:22 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "1559", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4956", + "X-RateLimit-Reset": "1568188349", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"eededa0506df868aa7fb8763d14db97e\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/trees/9499ace20e5804c37ebdb686a4735b1cfdd16e2a", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A61:15110:2C2A2AE:35C5EEF:5D789A1D", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"9499ace20e5804c37ebdb686a4735b1cfdd16e2a\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/9499ace20e5804c37ebdb686a4735b1cfdd16e2a\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"7961c566ace1cfaf362fb0171cb6b125f953ca25\",\n \"size\": 462,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/7961c566ace1cfaf362fb0171cb6b125f953ca25\"\n },\n {\n \"path\": \"1970-01-01-second-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"c65d99d83e281e3be2aad42ded2606821c88abc4\",\n \"size\": 467,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/c65d99d83e281e3be2aad42ded2606821c88abc4\"\n },\n {\n \"path\": \"1970-01-01-third-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"6b89764400a6fc946de0dc81e0aec90d2c4fce79\",\n \"size\": 472,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/6b89764400a6fc946de0dc81e0aec90d2c4fce79\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"operationName\":\"statues\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"41fe210e8b78bf0da2360dcef1e61d7c4cdddfbf\"},\"query\":\"query statues($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n status {\\n id\\n contexts {\\n id\\n context\\n state\\n target_url: targetUrl\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Wed, 11 Sep 2019 06:54:23 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4953", + "X-RateLimit-Reset": "1568188384", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7A64:1510E:13179A1:175798A:5D789A1F", + "content-length": "276", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3NDM0NTM=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDY6Q29tbWl0MjA3NzQzNDUzOjQxZmUyMTBlOGI3OGJmMGRhMjM2MGRjZWYxZTYxZDdjNGNkZGRmYmY=\",\"sha\":\"41fe210e8b78bf0da2360dcef1e61d7c4cdddfbf\",\"__typename\":\"Commit\",\"status\":null}}}}\n", + "status": 200 + }, + { + "body": "{\"message\":\"Updating “1970-01-01-third-title” metadata\",\"tree\":\"9499ace20e5804c37ebdb686a4735b1cfdd16e2a\",\"parents\":[\"4a92b1e3de48379f3e63f0fee082de4bc970c419\"]}", + "method": "POST", + "url": "/repos/owner/repo/git/commits?ts=900", + "headers": { + "Date": "Wed, 11 Sep 2019 06:54:23 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "1505", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4955", + "X-RateLimit-Reset": "1568188349", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"47d398a8c45e4cd12328d406d96047a4\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/commits/16802458ee825dbb156c9ec29eaa99ade9155650", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A62:244E7:1FC1551:26D8203:5D789A1E", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"16802458ee825dbb156c9ec29eaa99ade9155650\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NzQzNDUzOjE2ODAyNDU4ZWU4MjVkYmIxNTZjOWVjMjllYWE5OWFkZTkxNTU2NTA=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/16802458ee825dbb156c9ec29eaa99ade9155650\",\n \"html_url\": \"https://github.com/owner/repo/commit/16802458ee825dbb156c9ec29eaa99ade9155650\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-11T06:54:23Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-11T06:54:23Z\"\n },\n \"tree\": {\n \"sha\": \"9499ace20e5804c37ebdb686a4735b1cfdd16e2a\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/9499ace20e5804c37ebdb686a4735b1cfdd16e2a\"\n },\n \"message\": \"Updating “1970-01-01-third-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"4a92b1e3de48379f3e63f0fee082de4bc970c419\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/4a92b1e3de48379f3e63f0fee082de4bc970c419\",\n \"html_url\": \"https://github.com/owner/repo/commit/4a92b1e3de48379f3e63f0fee082de4bc970c419\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "status": 201 + }, + { + "body": "{\"sha\":\"16802458ee825dbb156c9ec29eaa99ade9155650\",\"force\":false}", + "method": "PATCH", + "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=900", + "headers": { + "Date": "Wed, 11 Sep 2019 06:54:24 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": "1568188349", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"2f0d31778486fc11c0a0285a18f08f90\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A66:3ED7B:2103FFA:28339AE:5D789A1F", + "content-length": "482", + "connection": "keep-alive" + }, + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NzQzNDUzOnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"16802458ee825dbb156c9ec29eaa99ade9155650\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/16802458ee825dbb156c9ec29eaa99ade9155650\"\n }\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=900", + "headers": { + "Date": "Wed, 11 Sep 2019 06:54:28 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": "1568188349", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"2f0d31778486fc11c0a0285a18f08f90\"", + "Last-Modified": "Wed, 11 Sep 2019 06:52:56 GMT", + "X-Poll-Interval": "300", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A6C:2B19:12E623C:170EDC4:5D789A23", + "content-length": "482", + "connection": "keep-alive" + }, + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NzQzNDUzOnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"16802458ee825dbb156c9ec29eaa99ade9155650\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/16802458ee825dbb156c9ec29eaa99ade9155650\"\n }\n}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"statues\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"41fe210e8b78bf0da2360dcef1e61d7c4cdddfbf\"},\"query\":\"query statues($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n status {\\n id\\n contexts {\\n id\\n context\\n state\\n target_url: targetUrl\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Wed, 11 Sep 2019 06:54:28 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4952", + "X-RateLimit-Reset": "1568188384", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7A71:15110:2C2AD53:35C6BB5:5D789A24", + "content-length": "276", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3NDM0NTM=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDY6Q29tbWl0MjA3NzQzNDUzOjQxZmUyMTBlOGI3OGJmMGRhMjM2MGRjZWYxZTYxZDdjNGNkZGRmYmY=\",\"sha\":\"41fe210e8b78bf0da2360dcef1e61d7c4cdddfbf\",\"__typename\":\"Commit\",\"status\":null}}}}\n", + "status": 200 + }, + { + "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjIsImhlYWQiOiI3YmQ1ZThjMTE4NmFmZDgzMjdjZmFhZTBmNTJhZDU2NDNmNGRkZThhIn0sInVzZXIiOiJvd25lciIsInN0YXR1cyI6InBlbmRpbmdfcHVibGlzaCIsImJyYW5jaCI6ImNtcy8xOTcwLTAxLTAxLXNlY29uZC10aXRsZSIsImNvbGxlY3Rpb24iOiJwb3N0cyIsImNvbW1pdE1lc3NhZ2UiOiJDcmVhdGUgUG9zdCDigJwxOTcwLTAxLTAxLXNlY29uZC10aXRsZeKAnSIsInRpdGxlIjoic2Vjb25kIHRpdGxlIiwiZGVzY3JpcHRpb24iOiJzZWNvbmQgZGVzY3JpcHRpb24iLCJvYmplY3RzIjp7ImVudHJ5Ijp7InBhdGgiOiJjb250ZW50L3Bvc3RzLzE5NzAtMDEtMDEtc2Vjb25kLXRpdGxlLm1kIiwic2hhIjoiMjE5MjlkYzJiMzVhNzE0MTE5ODdhNWU5NjY0NTJkZTIxYTUwMDVhYiJ9LCJmaWxlcyI6W119LCJ0aW1lU3RhbXAiOiIxOTcwLTAxLTAxVDAwOjAwOjAwLjYwMFoifQ==\",\"encoding\":\"base64\"}", + "method": "POST", + "url": "/repos/owner/repo/git/blobs?ts=900", + "headers": { + "Date": "Wed, 11 Sep 2019 06:54:29 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "206", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4952", + "X-RateLimit-Reset": "1568188349", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"ed20c4b7643fd5366a9732334e480eac\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/blobs/734f59bba6cfd11b1fc0e174ba19603f6e0f80ca", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A6E:2B15:893C16:A72EC0:5D789A24", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"734f59bba6cfd11b1fc0e174ba19603f6e0f80ca\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/734f59bba6cfd11b1fc0e174ba19603f6e0f80ca\"\n}\n", + "status": 201 + }, + { + "body": "{\"operationName\":\"commitTree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"16802458ee825dbb156c9ec29eaa99ade9155650\"},\"query\":\"query commitTree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n commit: object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n tree {\\n ...ObjectParts\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Wed, 11 Sep 2019 06:54:29 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4951", + "X-RateLimit-Reset": "1568188384", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7A72:244E4:13525C7:177FA51:5D789A25", + "content-length": "979", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3NDM0NTM=\",\"__typename\":\"Repository\",\"commit\":{\"id\":\"MDY6Q29tbWl0MjA3NzQzNDUzOjE2ODAyNDU4ZWU4MjVkYmIxNTZjOWVjMjllYWE5OWFkZTkxNTU2NTA=\",\"sha\":\"16802458ee825dbb156c9ec29eaa99ade9155650\",\"__typename\":\"Commit\",\"tree\":{\"id\":\"MDQ6VHJlZTIwNzc0MzQ1Mzo5NDk5YWNlMjBlNTgwNGMzN2ViZGI2ODZhNDczNWIxY2ZkZDE2ZTJh\",\"sha\":\"9499ace20e5804c37ebdb686a4735b1cfdd16e2a\",\"__typename\":\"Tree\",\"entries\":[{\"path\":\"1970-01-01-first-title.json\",\"sha\":\"7961c566ace1cfaf362fb0171cb6b125f953ca25\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"1970-01-01-second-title.json\",\"sha\":\"c65d99d83e281e3be2aad42ded2606821c88abc4\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"1970-01-01-third-title.json\",\"sha\":\"6b89764400a6fc946de0dc81e0aec90d2c4fce79\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"README.md\",\"sha\":\"98787d1bd948850444433e91a43091a76c4eb455\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"}]}}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"tree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"16802458ee825dbb156c9ec29eaa99ade9155650\"},\"query\":\"query tree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n tree: object(oid: $sha) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Wed, 11 Sep 2019 06:54:30 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4950", + "X-RateLimit-Reset": "1568188384", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7A74:B4DE:202F2D6:2745EF0:5D789A25", + "content-length": "260", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3NDM0NTM=\",\"__typename\":\"Repository\",\"tree\":{\"id\":\"MDY6Q29tbWl0MjA3NzQzNDUzOjE2ODAyNDU4ZWU4MjVkYmIxNTZjOWVjMjllYWE5OWFkZTkxNTU2NTA=\",\"sha\":\"16802458ee825dbb156c9ec29eaa99ade9155650\",\"__typename\":\"Commit\"}}}}\n", + "status": 200 + }, + { + "body": "{\"base_tree\":\"16802458ee825dbb156c9ec29eaa99ade9155650\",\"tree\":[{\"path\":\"1970-01-01-second-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"734f59bba6cfd11b1fc0e174ba19603f6e0f80ca\"}]}", + "method": "POST", + "url": "/repos/owner/repo/git/trees?ts=900", + "headers": { + "Date": "Wed, 11 Sep 2019 06:54:30 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "1559", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4951", + "X-RateLimit-Reset": "1568188349", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"e5a83a5e07414e6c6ef5afe2e5e461b7\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/trees/25f3b5f5062e12896596e58e4dc5c26add56e18d", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A79:15110:2C2AFE4:35C6ED6:5D789A26", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"25f3b5f5062e12896596e58e4dc5c26add56e18d\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/25f3b5f5062e12896596e58e4dc5c26add56e18d\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"7961c566ace1cfaf362fb0171cb6b125f953ca25\",\n \"size\": 462,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/7961c566ace1cfaf362fb0171cb6b125f953ca25\"\n },\n {\n \"path\": \"1970-01-01-second-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"734f59bba6cfd11b1fc0e174ba19603f6e0f80ca\",\n \"size\": 477,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/734f59bba6cfd11b1fc0e174ba19603f6e0f80ca\"\n },\n {\n \"path\": \"1970-01-01-third-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"6b89764400a6fc946de0dc81e0aec90d2c4fce79\",\n \"size\": 472,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/6b89764400a6fc946de0dc81e0aec90d2c4fce79\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"message\":\"Updating “1970-01-01-second-title” metadata\",\"tree\":\"25f3b5f5062e12896596e58e4dc5c26add56e18d\",\"parents\":[\"16802458ee825dbb156c9ec29eaa99ade9155650\"]}", + "method": "POST", + "url": "/repos/owner/repo/git/commits?ts=900", + "headers": { + "Date": "Wed, 11 Sep 2019 06:54:31 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "1506", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4950", + "X-RateLimit-Reset": "1568188349", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"5034146f871066a905560d5d7fa4baf2\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/commits/ab5028afcd942c2e37b6d2b820b9c93e4b4059f7", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A7A:2B1F:2081ECB:27CD3E9:5D789A26", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"ab5028afcd942c2e37b6d2b820b9c93e4b4059f7\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NzQzNDUzOmFiNTAyOGFmY2Q5NDJjMmUzN2I2ZDJiODIwYjljOTNlNGI0MDU5Zjc=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/ab5028afcd942c2e37b6d2b820b9c93e4b4059f7\",\n \"html_url\": \"https://github.com/owner/repo/commit/ab5028afcd942c2e37b6d2b820b9c93e4b4059f7\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-11T06:54:31Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-11T06:54:31Z\"\n },\n \"tree\": {\n \"sha\": \"25f3b5f5062e12896596e58e4dc5c26add56e18d\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/25f3b5f5062e12896596e58e4dc5c26add56e18d\"\n },\n \"message\": \"Updating “1970-01-01-second-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"16802458ee825dbb156c9ec29eaa99ade9155650\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/16802458ee825dbb156c9ec29eaa99ade9155650\",\n \"html_url\": \"https://github.com/owner/repo/commit/16802458ee825dbb156c9ec29eaa99ade9155650\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "status": 201 + }, + { + "body": "{\"sha\":\"ab5028afcd942c2e37b6d2b820b9c93e4b4059f7\",\"force\":false}", + "method": "PATCH", + "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=900", + "headers": { + "Date": "Wed, 11 Sep 2019 06:54:32 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": "1568188349", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"d2f99acfafe1b6b0690b09196b6a9b3a\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A7C:2B19:12E6414:170F02A:5D789A27", + "content-length": "482", + "connection": "keep-alive" + }, + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NzQzNDUzOnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"ab5028afcd942c2e37b6d2b820b9c93e4b4059f7\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/ab5028afcd942c2e37b6d2b820b9c93e4b4059f7\"\n }\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=900", + "headers": { + "Date": "Wed, 11 Sep 2019 06:54:33 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": "1568188349", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"d2f99acfafe1b6b0690b09196b6a9b3a\"", + "Last-Modified": "Wed, 11 Sep 2019 06:52:56 GMT", + "X-Poll-Interval": "300", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A7E:9D21:299C773:32DBBB1:5D789A29", + "content-length": "482", + "connection": "keep-alive" + }, + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NzQzNDUzOnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"ab5028afcd942c2e37b6d2b820b9c93e4b4059f7\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/ab5028afcd942c2e37b6d2b820b9c93e4b4059f7\"\n }\n}\n", + "status": 200 + }, + { + "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjEsImhlYWQiOiIwMTFmNWNjNjg0N2VlNjUwODhjZWVkZjc5MmQwNGIxZmVmZmRhYzYxIn0sInVzZXIiOiJvd25lciIsInN0YXR1cyI6InBlbmRpbmdfcHVibGlzaCIsImJyYW5jaCI6ImNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxlIiwiY29sbGVjdGlvbiI6InBvc3RzIiwiY29tbWl0TWVzc2FnZSI6IkNyZWF0ZSBQb3N0IOKAnDE5NzAtMDEtMDEtZmlyc3QtdGl0bGXigJ0iLCJ0aXRsZSI6ImZpcnN0IHRpdGxlIiwiZGVzY3JpcHRpb24iOiJmaXJzdCBkZXNjcmlwdGlvbiIsIm9iamVjdHMiOnsiZW50cnkiOnsicGF0aCI6ImNvbnRlbnQvcG9zdHMvMTk3MC0wMS0wMS1maXJzdC10aXRsZS5tZCIsInNoYSI6ImEwNDEyNDU4MTQ4OTJlM2Y3M2Y2M2NhNTQzMzNmZGE2NDliN2ZjMGIifSwiZmlsZXMiOltdfSwidGltZVN0YW1wIjoiMTk3MC0wMS0wMVQwMDowMDowMC4zMDBaIn0=\",\"encoding\":\"base64\"}", + "method": "POST", + "url": "/repos/owner/repo/git/blobs?ts=900", + "headers": { + "Date": "Wed, 11 Sep 2019 06:54:34 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "206", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4947", + "X-RateLimit-Reset": "1568188349", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"3259cb45bbf37ea8aee3237df4dd5b70\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/blobs/68ba6e15da31be76cb66c1ad43e6b750a216abe5", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A82:15110:2C2B570:35C7579:5D789A2A", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"68ba6e15da31be76cb66c1ad43e6b750a216abe5\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/68ba6e15da31be76cb66c1ad43e6b750a216abe5\"\n}\n", + "status": 201 + }, + { + "body": "{\"operationName\":\"tree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"ab5028afcd942c2e37b6d2b820b9c93e4b4059f7\"},\"query\":\"query tree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n tree: object(oid: $sha) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Wed, 11 Sep 2019 06:54:35 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4949", + "X-RateLimit-Reset": "1568188384", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7A86:9D21:299C98D:32DBE3D:5D789A2A", + "content-length": "260", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3NDM0NTM=\",\"__typename\":\"Repository\",\"tree\":{\"id\":\"MDY6Q29tbWl0MjA3NzQzNDUzOmFiNTAyOGFmY2Q5NDJjMmUzN2I2ZDJiODIwYjljOTNlNGI0MDU5Zjc=\",\"sha\":\"ab5028afcd942c2e37b6d2b820b9c93e4b4059f7\",\"__typename\":\"Commit\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"commitTree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"ab5028afcd942c2e37b6d2b820b9c93e4b4059f7\"},\"query\":\"query commitTree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n commit: object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n tree {\\n ...ObjectParts\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Wed, 11 Sep 2019 06:54:35 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4948", + "X-RateLimit-Reset": "1568188384", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7A84:3ED7B:2104A07:2834628:5D789A2A", + "content-length": "979", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3NDM0NTM=\",\"__typename\":\"Repository\",\"commit\":{\"id\":\"MDY6Q29tbWl0MjA3NzQzNDUzOmFiNTAyOGFmY2Q5NDJjMmUzN2I2ZDJiODIwYjljOTNlNGI0MDU5Zjc=\",\"sha\":\"ab5028afcd942c2e37b6d2b820b9c93e4b4059f7\",\"__typename\":\"Commit\",\"tree\":{\"id\":\"MDQ6VHJlZTIwNzc0MzQ1MzoyNWYzYjVmNTA2MmUxMjg5NjU5NmU1OGU0ZGM1YzI2YWRkNTZlMThk\",\"sha\":\"25f3b5f5062e12896596e58e4dc5c26add56e18d\",\"__typename\":\"Tree\",\"entries\":[{\"path\":\"1970-01-01-first-title.json\",\"sha\":\"7961c566ace1cfaf362fb0171cb6b125f953ca25\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"1970-01-01-second-title.json\",\"sha\":\"734f59bba6cfd11b1fc0e174ba19603f6e0f80ca\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"1970-01-01-third-title.json\",\"sha\":\"6b89764400a6fc946de0dc81e0aec90d2c4fce79\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"README.md\",\"sha\":\"98787d1bd948850444433e91a43091a76c4eb455\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"}]}}}}}\n", + "status": 200 + }, + { + "body": "{\"base_tree\":\"ab5028afcd942c2e37b6d2b820b9c93e4b4059f7\",\"tree\":[{\"path\":\"1970-01-01-first-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"68ba6e15da31be76cb66c1ad43e6b750a216abe5\"}]}", + "method": "POST", + "url": "/repos/owner/repo/git/trees?ts=900", + "headers": { + "Date": "Wed, 11 Sep 2019 06:54:35 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "1559", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4946", + "X-RateLimit-Reset": "1568188349", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"f32789e625b16ebcc29b45b830767157\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/trees/211bf71abeca4ddf022eecf1c86b70e728e711d9", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A89:9D21:299CA4E:32DBF3B:5D789A2B", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"211bf71abeca4ddf022eecf1c86b70e728e711d9\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/211bf71abeca4ddf022eecf1c86b70e728e711d9\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"68ba6e15da31be76cb66c1ad43e6b750a216abe5\",\n \"size\": 472,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/68ba6e15da31be76cb66c1ad43e6b750a216abe5\"\n },\n {\n \"path\": \"1970-01-01-second-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"734f59bba6cfd11b1fc0e174ba19603f6e0f80ca\",\n \"size\": 477,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/734f59bba6cfd11b1fc0e174ba19603f6e0f80ca\"\n },\n {\n \"path\": \"1970-01-01-third-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"6b89764400a6fc946de0dc81e0aec90d2c4fce79\",\n \"size\": 472,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/6b89764400a6fc946de0dc81e0aec90d2c4fce79\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"message\":\"Updating “1970-01-01-first-title” metadata\",\"tree\":\"211bf71abeca4ddf022eecf1c86b70e728e711d9\",\"parents\":[\"ab5028afcd942c2e37b6d2b820b9c93e4b4059f7\"]}", + "method": "POST", + "url": "/repos/owner/repo/git/commits?ts=900", + "headers": { + "Date": "Wed, 11 Sep 2019 06:54:36 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "1505", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4945", + "X-RateLimit-Reset": "1568188349", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"77f7bb466210dc1df560886fe0e3a1de\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/commits/222118a8de7bcd307c3c76a60fd1653793188831", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A8A:15110:2C2B86F:35C7918:5D789A2C", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"222118a8de7bcd307c3c76a60fd1653793188831\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NzQzNDUzOjIyMjExOGE4ZGU3YmNkMzA3YzNjNzZhNjBmZDE2NTM3OTMxODg4MzE=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/222118a8de7bcd307c3c76a60fd1653793188831\",\n \"html_url\": \"https://github.com/owner/repo/commit/222118a8de7bcd307c3c76a60fd1653793188831\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-11T06:54:36Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-11T06:54:36Z\"\n },\n \"tree\": {\n \"sha\": \"211bf71abeca4ddf022eecf1c86b70e728e711d9\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/211bf71abeca4ddf022eecf1c86b70e728e711d9\"\n },\n \"message\": \"Updating “1970-01-01-first-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"ab5028afcd942c2e37b6d2b820b9c93e4b4059f7\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/ab5028afcd942c2e37b6d2b820b9c93e4b4059f7\",\n \"html_url\": \"https://github.com/owner/repo/commit/ab5028afcd942c2e37b6d2b820b9c93e4b4059f7\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "status": 201 + }, + { + "body": "{\"sha\":\"222118a8de7bcd307c3c76a60fd1653793188831\",\"force\":false}", + "method": "PATCH", + "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=900", + "headers": { + "Date": "Wed, 11 Sep 2019 06:54:37 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": "1568188349", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"f18db0fb079296416e50138b76a10663\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A8C:244E7:1FC2354:26D9312:5D789A2C", + "content-length": "482", + "connection": "keep-alive" + }, + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NzQzNDUzOnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"222118a8de7bcd307c3c76a60fd1653793188831\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/222118a8de7bcd307c3c76a60fd1653793188831\"\n }\n}\n", + "status": 200 + }, + { + "body": "{\"commit_message\":\"Automatically generated. Merged on Netlify CMS.\",\"sha\":\"41fe210e8b78bf0da2360dcef1e61d7c4cdddfbf\",\"merge_method\":\"merge\"}", + "method": "PUT", + "url": "/repos/owner/repo/pulls/3/merge?ts=900", + "headers": { + "Date": "Wed, 11 Sep 2019 06:54:39 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": "1568188349", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"d4ffa1395991ca304678dc48e1150e5f\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A8F:3ED82:2C3C69E:35E943E:5D789A2E", + "content-length": "123", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"e742b30cf7b26e80fdb02d263e4a113db1bf894a\",\n \"merged\": true,\n \"message\": \"Pull Request successfully merged\"\n}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"deleteRef\",\"variables\":{\"deleteRefInput\":{\"refId\":\"MDM6UmVmMjA3NzQzNDUzOmNtcy8xOTcwLTAxLTAxLXRoaXJkLXRpdGxl\"}},\"query\":\"mutation deleteRef($deleteRefInput: DeleteRefInput!) {\\n deleteRef(input: $deleteRefInput) {\\n clientMutationId\\n __typename\\n }\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Wed, 11 Sep 2019 06:54:40 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4947", + "X-RateLimit-Reset": "1568188384", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7A90:2B24:2AAFDDB:340D813:5D789A30", + "content-length": "81", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"deleteRef\":{\"clientMutationId\":null,\"__typename\":\"DeleteRefPayload\"}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"master:content/posts/1970-01-01-third-title.md\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Wed, 11 Sep 2019 06:54:41 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4946", + "X-RateLimit-Reset": "1568188384", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7A93:9D1F:122292B:162EAAD:5D789A31", + "content-length": "413", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3NDM0NTM=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzc0MzQ1MzoyOGYxNWZlMWE0ZWE1Nzc2NjZkZGQ5MmI0MWEyNjNiZDE5NDYzMmEy\",\"text\":\"---\\ntemplate: post\\ntitle: third title\\ndraft: true\\ndate: 1970-01-01T00:00:00.600Z\\ndescription: third description\\ncategory: third category\\ntags:\\n - tag3\\n---\\nthird body\\n\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "status": 200 + }, + { + "body": "{\"commit_message\":\"Automatically generated. Merged on Netlify CMS.\",\"sha\":\"7bd5e8c1186afd8327cfaae0f52ad5643f4dde8a\",\"merge_method\":\"merge\"}", + "method": "PUT", + "url": "/repos/owner/repo/pulls/2/merge?ts=900", + "headers": { + "Date": "Wed, 11 Sep 2019 06:54:45 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": "1568188349", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"f1723970d05ecb092dff7099c948dd43\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A94:2B24:2AB02C2:340DE04:5D789A33", + "content-length": "123", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"dc9ac895de2390c99198914609843a725e626a94\",\n \"merged\": true,\n \"message\": \"Pull Request successfully merged\"\n}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"deleteRef\",\"variables\":{\"deleteRefInput\":{\"refId\":\"MDM6UmVmMjA3NzQzNDUzOmNtcy8xOTcwLTAxLTAxLXNlY29uZC10aXRsZQ==\"}},\"query\":\"mutation deleteRef($deleteRefInput: DeleteRefInput!) {\\n deleteRef(input: $deleteRefInput) {\\n clientMutationId\\n __typename\\n }\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Wed, 11 Sep 2019 06:54:46 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4945", + "X-RateLimit-Reset": "1568188384", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7A96:244EB:2B12EAA:347A3BD:5D789A36", + "content-length": "81", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"deleteRef\":{\"clientMutationId\":null,\"__typename\":\"DeleteRefPayload\"}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"master:content/posts/1970-01-01-second-title.md\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Wed, 11 Sep 2019 06:54:47 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4944", + "X-RateLimit-Reset": "1568188384", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7A98:3ED82:2C3D359:35EA3C5:5D789A37", + "content-length": "417", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3NDM0NTM=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzc0MzQ1MzoyMTkyOWRjMmIzNWE3MTQxMTk4N2E1ZTk2NjQ1MmRlMjFhNTAwNWFi\",\"text\":\"---\\ntemplate: post\\ntitle: second title\\ndraft: true\\ndate: 1970-01-01T00:00:00.300Z\\ndescription: second description\\ncategory: second category\\ntags:\\n - tag2\\n---\\nsecond body\\n\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "status": 200 + }, + { + "body": "{\"commit_message\":\"Automatically generated. Merged on Netlify CMS.\",\"sha\":\"011f5cc6847ee65088ceedf792d04b1feffdac61\",\"merge_method\":\"merge\"}", + "method": "PUT", + "url": "/repos/owner/repo/pulls/1/merge?ts=900", + "headers": { + "Date": "Wed, 11 Sep 2019 06:54:49 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": "1568188349", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"20bdfeb814f3f9217c333a62d60934f3\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A9A:1510F:2038621:274E3A2:5D789A37", + "content-length": "123", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"781504e61be8d76a2b826e4e2e1b6e5678949bfa\",\n \"merged\": true,\n \"message\": \"Pull Request successfully merged\"\n}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"deleteRef\",\"variables\":{\"deleteRefInput\":{\"refId\":\"MDM6UmVmMjA3NzQzNDUzOmNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxl\"}},\"query\":\"mutation deleteRef($deleteRefInput: DeleteRefInput!) {\\n deleteRef(input: $deleteRefInput) {\\n clientMutationId\\n __typename\\n }\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Wed, 11 Sep 2019 06:54:50 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4943", + "X-RateLimit-Reset": "1568188384", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7A9E:2B1F:2083005:27CE982:5D789A39", + "content-length": "81", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"deleteRef\":{\"clientMutationId\":null,\"__typename\":\"DeleteRefPayload\"}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"master:content/posts/1970-01-01-first-title.md\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Wed, 11 Sep 2019 06:54:51 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4942", + "X-RateLimit-Reset": "1568188384", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7AA0:B4DC:1354BD9:17888AF:5D789A3A", + "content-length": "413", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc3NDM0NTM=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzc0MzQ1MzphMDQxMjQ1ODE0ODkyZTNmNzNmNjNjYTU0MzMzZmRhNjQ5YjdmYzBi\",\"text\":\"---\\ntemplate: post\\ntitle: first title\\ndraft: true\\ndate: 1970-01-01T00:00:00.000Z\\ndescription: first description\\ncategory: first category\\ntags:\\n - tag1\\n---\\nfirst body\\n\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "status": 200 + } +] \ No newline at end of file diff --git a/cypress/fixtures/Github Backend Editorial Workflow - GraphQL API__can change workflow status.json b/cypress/fixtures/Github Backend Editorial Workflow - GraphQL API__can change workflow status.json new file mode 100644 index 00000000..79d15632 --- /dev/null +++ b/cypress/fixtures/Github Backend Editorial Workflow - GraphQL API__can change workflow status.json @@ -0,0 +1,1772 @@ +[ + { + "body": "{\"operationName\":null,\"variables\":{},\"query\":\"{\\n viewer {\\n id\\n avatar_url: avatarUrl\\n name\\n login\\n __typename\\n }\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:47:54 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4888", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7B56:15110:185ECA6:1D9B07D:5D77A98A", + "content-length": "179", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"viewer\":{\"id\":\"MDQ6VXNlcjI2NzYwNTcx\",\"avatar_url\":\"https://avatars1.githubusercontent.com/u/7892489?v=4\",\"name\":\"owner\",\"login\":\"owner\",\"__typename\":\"User\"}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"repoPermission\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\"},\"query\":\"query repoPermission($owner: String!, $name: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n viewerPermission\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:47:55 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4887", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7B58:2B1F:120D959:16073F1:5D77A98B", + "content-length": "119", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"viewerPermission\":\"ADMIN\"}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"files\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"master:content/posts\"},\"query\":\"query files($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...FileEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment FileEntryParts on TreeEntry {\\n name\\n sha: oid\\n type\\n blob: object {\\n ... on Blob {\\n size: byteSize\\n __typename\\n }\\n __typename\\n }\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:47:56 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4886", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7B5A:9D21:171BA5A:1C2610F:5D77A98C", + "content-length": "1218", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6VHJlZTIwNzU3MDg5MDozNDg5MjU3NWUyMTZjMDZlNzU3MDkzZjAzNmJkOGUwNTdjNzhhNTJm\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"__typename\":\"Tree\",\"entries\":[{\"name\":\"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\"sha\":\"6d51a38aed7139d2117724b1e307657b6ff2d043\",\"type\":\"blob\",\"blob\":{\"size\":1707,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\"sha\":\"d0582dd245a3f408fb3fe2333bf01400007476e9\",\"type\":\"blob\",\"blob\":{\"size\":2565,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2016-02-02---A-Brief-History-of-Typography.md\",\"sha\":\"0eea554365f002d0f1572af9a58522d335a794d5\",\"type\":\"blob\",\"blob\":{\"size\":2786,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2017-18-08---The-Birth-of-Movable-Type.md\",\"sha\":\"44f78c474d04273185a95821426f75affc9b0044\",\"type\":\"blob\",\"blob\":{\"size\":16071,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\"sha\":\"a532f0a9445cdf90a19c6812cff89d1674991774\",\"type\":\"blob\",\"blob\":{\"size\":7465,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"}]}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"files\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"master:static/media\"},\"query\":\"query files($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...FileEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment FileEntryParts on TreeEntry {\\n name\\n sha: oid\\n type\\n blob: object {\\n ... on Blob {\\n size: byteSize\\n __typename\\n }\\n __typename\\n }\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:47:56 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4885", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7B5C:B4E0:169630E:1B7D194:5D77A98C", + "content-length": "1837", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6VHJlZTIwNzU3MDg5MDo5Yjc2OTliNTdlMTQzMDkxMGRiODI4MzFkY2Y2YjhhMWQxZGJkYWM5\",\"sha\":\"9b7699b57e1430910db82831dcf6b8a1d1dbdac9\",\"__typename\":\"Tree\",\"entries\":[{\"name\":\"42-line-bible.jpg\",\"sha\":\"41c8d12f9ca5864beb827c381fbeff935209d5fb\",\"type\":\"blob\",\"blob\":{\"size\":671242,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"gutenberg.jpg\",\"sha\":\"04315e355873ea5d358d9c371c39a6845c1ae4ae\",\"type\":\"blob\",\"blob\":{\"size\":155002,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-0.jpg\",\"sha\":\"b70a1b64fd4fa9635823231a0ba92c6dc9393f16\",\"type\":\"blob\",\"blob\":{\"size\":660287,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-1.jpg\",\"sha\":\"05eedae372b829c62501ac751b2d42dcc432541b\",\"type\":\"blob\",\"blob\":{\"size\":392411,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-2.jpg\",\"sha\":\"53845ed35faf8939bea242bb85eda7c324b1be0b\",\"type\":\"blob\",\"blob\":{\"size\":99147,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-3.jpg\",\"sha\":\"8b2339d97069e826fae1f156212e40ae458454e3\",\"type\":\"blob\",\"blob\":{\"size\":358022,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-4.jpg\",\"sha\":\"a8f6f21253a67a4284b5a953b2fe633d44152ecd\",\"type\":\"blob\",\"blob\":{\"size\":114837,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"movable-type.jpg\",\"sha\":\"57b4e925ea00bd8e195cf4418eb6eb2995ea5f10\",\"type\":\"blob\",\"blob\":{\"size\":559028,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"printing-press.jpg\",\"sha\":\"d27f56c9437d9becd2f56cc627c9322c2f1f61f6\",\"type\":\"blob\",\"blob\":{\"size\":279283,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"type-through-time.jpg\",\"sha\":\"3f08366a805c51a60ec5056010f22de4ba08abaa\",\"type\":\"blob\",\"blob\":{\"size\":117689,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"}]}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"6d51a38aed7139d2117724b1e307657b6ff2d043\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:47:57 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4884", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7B5E:244E4:ADDF27:D2AAEB:5D77A98C", + "content-length": "1973", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzU3MDg5MDo2ZDUxYTM4YWVkNzEzOWQyMTE3NzI0YjFlMzA3NjU3YjZmZjJkMDQz\",\"text\":\"---\\ntitle: Perfecting the Art of Perfection\\ndate: \\\"2016-09-01T23:46:37.121Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Design Inspiration\\\"\\ntags:\\n - \\\"Handwriting\\\"\\n - \\\"Learning to write\\\"\\ndescription: \\\"Quisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\\\"\\ncanonical: ''\\n---\\n\\nQuisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\\n\\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-2.jpg)\\n\\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. \\n\\nPraesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"d0582dd245a3f408fb3fe2333bf01400007476e9\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:47:57 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4883", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7B60:15110:185F028:1D9B4C8:5D77A98C", + "content-length": "2866", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzU3MDg5MDpkMDU4MmRkMjQ1YTNmNDA4ZmIzZmUyMzMzYmYwMTQwMDAwNzQ3NmU5\",\"text\":\"---\\ntitle: The Origins of Social Stationery Lettering\\ndate: \\\"2016-12-01T22:40:32.169Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Design Culture\\\"\\ndescription: \\\"Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante.\\\"\\ncanonical: ''\\n---\\n\\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \\n\\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\\n\\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-3.jpg)\\n\\n## Header Level 2\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \\n\\n
\\n\\t
\\n\\t\\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\\n\\t\\t
\\n\\t\\t\\t— Aliquam tincidunt mauris eu risus.\\n\\t\\t
\\n\\t
\\n
\\n\\n### Header Level 3\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\\n\\n```css\\n#header h1 a {\\n display: block;\\n width: 300px;\\n height: 80px;\\n}\\n```\\n\\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"0eea554365f002d0f1572af9a58522d335a794d5\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:47:57 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4882", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7B62:3ED82:185BA67:1DA131A:5D77A98C", + "content-length": "3102", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzU3MDg5MDowZWVhNTU0MzY1ZjAwMmQwZjE1NzJhZjlhNTg1MjJkMzM1YTc5NGQ1\",\"text\":\"---\\ntitle: \\\"A Brief History of Typography\\\"\\ndate: \\\"2016-02-02T22:40:32.169Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Design Inspiration\\\"\\ntags:\\n - \\\"Linotype\\\"\\n - \\\"Monotype\\\"\\n - \\\"History of typography\\\"\\n - \\\"Helvetica\\\"\\ndescription: \\\"Morbi in sem quis dui placerat ornare. Pellentesque odio nisi, euismod in, pharetra a, ultricies in, diam. Sed arcu. Cras consequat.\\\"\\ncanonical: ''\\n---\\n\\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \\n\\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\\n\\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-0.jpg)\\n\\n## Header Level 2\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \\n\\n
\\n\\t
\\n\\t\\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\\n\\t\\t
\\n\\t\\t\\t— Aliquam tincidunt mauris eu risus.\\n\\t\\t
\\n\\t
\\n
\\n\\n### Header Level 3\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\\n\\n```css\\n#header h1 a {\\n display: block;\\n width: 300px;\\n height: 80px;\\n}\\n```\\n\\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"44f78c474d04273185a95821426f75affc9b0044\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:47:57 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4881", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7B66:244E7:118B4B3:15680C6:5D77A98C", + "content-length": "16478", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzU3MDg5MDo0NGY3OGM0NzRkMDQyNzMxODVhOTU4MjE0MjZmNzVhZmZjOWIwMDQ0\",\"text\":\"---\\ntitle: \\\"Johannes Gutenberg: The Birth of Movable Type\\\"\\ndate: \\\"2017-08-18T22:12:03.284Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Typography\\\"\\ntags:\\n - \\\"Open source\\\"\\n - \\\"Gatsby\\\"\\n - \\\"Typography\\\"\\ndescription: \\\"German inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\\\"\\ncanonical: ''\\n---\\n\\nGerman inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\\n\\n**Johannes Gensfleisch zur Laden zum Gutenberg** (c. 1398 – 1468) was a German blacksmith, goldsmith, printer, and publisher who introduced printing to Europe. His invention of mechanical movable type printing started the Printing Revolution and is widely regarded as the most important event of the modern period. It played a key role in the development of the Renaissance, Reformation, the Age of Enlightenment, and the Scientific revolution and laid the material basis for the modern knowledge-based economy and the spread of learning to the masses.\\n\\n
\\n\\t\\\"Gutenberg\\\"\\n\\t
Johannes Gutenberg
\\n
\\n\\nWith his invention of the printing press, Gutenberg was the first European to use movable type printing, in around 1439. Among his many contributions to printing are: the invention of a process for mass-producing movable type; the use of oil-based ink; and the use of a wooden printing press similar to the agricultural screw presses of the period. His truly epochal invention was the combination of these elements into a practical system that allowed the mass production of printed books and was economically viable for printers and readers alike. Gutenberg's method for making type is traditionally considered to have included a type metal alloy and a hand mould for casting type. The alloy was a mixture of lead, tin, and antimony that melted at a relatively low temperature for faster and more economical casting, cast well, and created a durable type.\\n\\nIn Renaissance Europe, the arrival of mechanical movable type printing introduced the era of mass communication which permanently altered the structure of society. The relatively unrestricted circulation of information — including revolutionary ideas — transcended borders, captured the masses in the Reformation and threatened the power of political and religious authorities; the sharp increase in literacy broke the monopoly of the literate elite on education and learning and bolstered the emerging middle class. Across Europe, the increasing cultural self-awareness of its people led to the rise of proto-nationalism, accelerated by the flowering of the European vernacular languages to the detriment of Latin's status as lingua franca. In the 19th century, the replacement of the hand-operated Gutenberg-style press by steam-powered rotary presses allowed printing on an industrial scale, while Western-style printing was adopted all over the world, becoming practically the sole medium for modern bulk printing.\\n\\nThe use of movable type was a marked improvement on the handwritten manuscript, which was the existing method of book production in Europe, and upon woodblock printing, and revolutionized European book-making. Gutenberg's printing technology spread rapidly throughout Europe and later the world.\\n\\nHis major work, the Gutenberg Bible (also known as the 42-line Bible), has been acclaimed for its high aesthetic and technical quality.\\n\\n## Printing Press\\n\\nAround 1439, Gutenberg was involved in a financial misadventure making polished metal mirrors (which were believed to capture holy light from religious relics) for sale to pilgrims to Aachen: in 1439 the city was planning to exhibit its collection of relics from Emperor Charlemagne but the event was delayed by one year due to a severe flood and the capital already spent could not be repaid. When the question of satisfying the investors came up, Gutenberg is said to have promised to share a “secret”. It has been widely speculated that this secret may have been the idea of printing with movable type. Also around 1439–1440, the Dutch Laurens Janszoon Coster came up with the idea of printing. Legend has it that the idea came to him “like a ray of light”.\\n\\n
\\n\\t\\\"Early\\n\\t
Early wooden printing press as depicted in 1568.
\\n
\\n\\nUntil at least 1444 he lived in Strasbourg, most likely in the St. Arbogast parish. It was in Strasbourg in 1440 that Gutenberg is said to have perfected and unveiled the secret of printing based on his research, mysteriously entitled Kunst und Aventur (art and enterprise). It is not clear what work he was engaged in, or whether some early trials with printing from movable type may have been conducted there. After this, there is a gap of four years in the record. In 1448, he was back in Mainz, where he took out a loan from his brother-in-law Arnold Gelthus, quite possibly for a printing press or related paraphernalia. By this date, Gutenberg may have been familiar with intaglio printing; it is claimed that he had worked on copper engravings with an artist known as the Master of Playing Cards.\\n\\nBy 1450, the press was in operation, and a German poem had been printed, possibly the first item to be printed there. Gutenberg was able to convince the wealthy moneylender Johann Fust for a loan of 800 guilders. Peter Schöffer, who became Fust’s son-in-law, also joined the enterprise. Schöffer had worked as a scribe in Paris and is believed to have designed some of the first typefaces.\\n\\n
\\n\\t
\\n\\t\\t

All that has been written to me about that marvelous man seen at Frankfurt is true. I have not seen complete Bibles but only a number of quires of various books of the Bible. The script was very neat and legible, not at all difficult to follow—your grace would be able to read it without effort, and indeed without glasses.

\\n\\t\\t
\\n\\t\\t\\t—Future pope Pius II in a letter to Cardinal Carvajal, March 1455\\n\\t\\t
\\n\\t
\\n
\\n\\nGutenberg's workshop was set up at Hof Humbrecht, a property belonging to a distant relative. It is not clear when Gutenberg conceived the Bible project, but for this he borrowed another 800 guilders from Fust, and work commenced in 1452. At the same time, the press was also printing other, more lucrative texts (possibly Latin grammars). There is also some speculation that there may have been two presses, one for the pedestrian texts, and one for the Bible. One of the profit-making enterprises of the new press was the printing of thousands of indulgences for the church, documented from 1454–55.\\n\\nIn 1455 Gutenberg completed his 42-line Bible, known as the Gutenberg Bible. About 180 copies were printed, most on paper and some on vellum.\\n\\n## Court Case\\n\\nSome time in 1456, there was a dispute between Gutenberg and Fust, and Fust demanded his money back, accusing Gutenberg of misusing the funds. Meanwhile the expenses of the Bible project had proliferated, and Gutenberg's debt now exceeded 20,000 guilders. Fust sued at the archbishop's court. A November 1455 legal document records that there was a partnership for a \\\"project of the books,\\\" the funds for which Gutenberg had used for other purposes, according to Fust. The court decided in favor of Fust, giving him control over the Bible printing workshop and half of all printed Bibles.\\n\\nThus Gutenberg was effectively bankrupt, but it appears he retained (or re-started) a small printing shop, and participated in the printing of a Bible in the town of Bamberg around 1459, for which he seems at least to have supplied the type. But since his printed books never carry his name or a date, it is difficult to be certain, and there is consequently a considerable scholarly debate on this subject. It is also possible that the large Catholicon dictionary, 300 copies of 754 pages, printed in Mainz in 1460, may have been executed in his workshop.\\n\\nMeanwhile, the Fust–Schöffer shop was the first in Europe to bring out a book with the printer's name and date, the Mainz Psalter of August 1457, and while proudly proclaiming the mechanical process by which it had been produced, it made no mention of Gutenberg.\\n\\n## Later Life\\n\\nIn 1462, during a conflict between two archbishops, Mainz was sacked by archbishop Adolph von Nassau, and Gutenberg was exiled. An old man by now, he moved to Eltville where he may have initiated and supervised a new printing press belonging to the brothers Bechtermünze.\\n\\nIn January 1465, Gutenberg's achievements were recognized and he was given the title Hofmann (gentleman of the court) by von Nassau. This honor included a stipend, an annual court outfit, as well as 2,180 litres of grain and 2,000 litres of wine tax-free. It is believed he may have moved back to Mainz around this time, but this is not certain.\\n\\n***\\n\\nGutenberg died in 1468 and was buried in the Franciscan church at Mainz, his contributions largely unknown. This church and the cemetery were later destroyed, and Gutenberg's grave is now lost.\\n\\nIn 1504, he was mentioned as the inventor of typography in a book by Professor Ivo Wittig. It was not until 1567 that the first portrait of Gutenberg, almost certainly an imaginary reconstruction, appeared in Heinrich Pantaleon's biography of famous Germans.\\n\\n## Printing Method With Movable Type\\n\\nGutenberg's early printing process, and what tests he may have made with movable type, are not known in great detail. His later Bibles were printed in such a way as to have required large quantities of type, some estimates suggesting as many as 100,000 individual sorts. Setting each page would take, perhaps, half a day, and considering all the work in loading the press, inking the type, pulling the impressions, hanging up the sheets, distributing the type, etc., it is thought that the Gutenberg–Fust shop might have employed as many as 25 craftsmen.\\n\\n![Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5](/media/movable-type.jpg)\\n\\n*Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5*\\n\\nGutenberg's technique of making movable type remains unclear. In the following decades, punches and copper matrices became standardized in the rapidly disseminating printing presses across Europe. Whether Gutenberg used this sophisticated technique or a somewhat primitive version has been the subject of considerable debate.\\n\\nIn the standard process of making type, a hard metal punch (made by punchcutting, with the letter carved back to front) is hammered into a softer copper bar, creating a matrix. This is then placed into a hand-held mould and a piece of type, or \\\"sort\\\", is cast by filling the mould with molten type-metal; this cools almost at once, and the resulting piece of type can be removed from the mould. The matrix can be reused to create hundreds, or thousands, of identical sorts so that the same character appearing anywhere within the book will appear very uniform, giving rise, over time, to the development of distinct styles of typefaces or fonts. After casting, the sorts are arranged into type-cases, and used to make up pages which are inked and printed, a procedure which can be repeated hundreds, or thousands, of times. The sorts can be reused in any combination, earning the process the name of “movable type”.\\n\\nThe invention of the making of types with punch, matrix and mold has been widely attributed to Gutenberg. However, recent evidence suggests that Gutenberg's process was somewhat different. If he used the punch and matrix approach, all his letters should have been nearly identical, with some variations due to miscasting and inking. However, the type used in Gutenberg's earliest work shows other variations.\\n\\n
\\n\\t
\\n\\t\\t

It is a press, certainly, but a press from which shall flow in inexhaustible streams… Through it, god will spread his word.

\\n\\t\\t
\\n\\t\\t\\t—Johannes Gutenberg\\n\\t\\t
\\n\\t
\\n
\\n\\nIn 2001, the physicist Blaise Agüera y Arcas and Princeton librarian Paul Needham, used digital scans of a Papal bull in the Scheide Library, Princeton, to carefully compare the same letters (types) appearing in different parts of the printed text. The irregularities in Gutenberg's type, particularly in simple characters such as the hyphen, suggested that the variations could not have come from either ink smear or from wear and damage on the pieces of metal on the types themselves. While some identical types are clearly used on other pages, other variations, subjected to detailed image analysis, suggested that they could not have been produced from the same matrix. Transmitted light pictures of the page also appeared to reveal substructures in the type that could not arise from traditional punchcutting techniques. They hypothesized that the method may have involved impressing simple shapes to create alphabets in “cuneiform” style in a matrix made of some soft material, perhaps sand. Casting the type would destroy the mould, and the matrix would need to be recreated to make each additional sort. This could explain the variations in the type, as well as the substructures observed in the printed images.\\n\\nThus, they feel that “the decisive factor for the birth of typography”, the use of reusable moulds for casting type, might have been a more progressive process than was previously thought. They suggest that the additional step of using the punch to create a mould that could be reused many times was not taken until twenty years later, in the 1470s. Others have not accepted some or all of their suggestions, and have interpreted the evidence in other ways, and the truth of the matter remains very uncertain.\\n\\nA 1568 history by Hadrianus Junius of Holland claims that the basic idea of the movable type came to Gutenberg from Laurens Janszoon Coster via Fust, who was apprenticed to Coster in the 1430s and may have brought some of his equipment from Haarlem to Mainz. While Coster appears to have experimented with moulds and castable metal type, there is no evidence that he had actually printed anything with this technology. He was an inventor and a goldsmith. However, there is one indirect supporter of the claim that Coster might be the inventor. The author of the Cologne Chronicle of 1499 quotes Ulrich Zell, the first printer of Cologne, that printing was performed in Mainz in 1450, but that some type of printing of lower quality had previously occurred in the Netherlands. However, the chronicle does not mention the name of Coster, while it actually credits Gutenberg as the \\\"first inventor of printing\\\" in the very same passage (fol. 312). The first securely dated book by Dutch printers is from 1471, and the Coster connection is today regarded as a mere legend.\\n\\nThe 19th century printer and typefounder Fournier Le Jeune suggested that Gutenberg might not have been using type cast with a reusable matrix, but possibly wooden types that were carved individually. A similar suggestion was made by Nash in 2004. This remains possible, albeit entirely unproven.\\n\\nIt has also been questioned whether Gutenberg used movable types at all. In 2004, Italian professor Bruno Fabbiani claimed that examination of the 42-line Bible revealed an overlapping of letters, suggesting that Gutenberg did not in fact use movable type (individual cast characters) but rather used whole plates made from a system somewhat like a modern typewriter, whereby the letters were stamped successively into the plate and then printed. However, most specialists regard the occasional overlapping of type as caused by paper movement over pieces of type of slightly unequal height.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"a532f0a9445cdf90a19c6812cff89d1674991774\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:47:57 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4880", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7B6E:2B24:17A6C0A:1CBFB9E:5D77A98D", + "content-length": "7803", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzU3MDg5MDphNTMyZjBhOTQ0NWNkZjkwYTE5YzY4MTJjZmY4OWQxNjc0OTkxNzc0\",\"text\":\"---\\ntitle: Humane Typography in the Digital Age\\ndate: \\\"2017-08-19T22:40:32.169Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Typography\\\"\\ntags:\\n - \\\"Design\\\"\\n - \\\"Typography\\\"\\n - \\\"Web Development\\\"\\ndescription: \\\"An Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\\\"\\ncanonical: ''\\n---\\n\\n- [The first transition](#the-first-transition)\\n- [The digital age](#the-digital-age)\\n- [Loss of humanity through transitions](#loss-of-humanity-through-transitions)\\n- [Chasing perfection](#chasing-perfection)\\n\\nAn Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\\n\\nThe typography of this industrial age was no longer handcrafted. Mass production and profit became more important. Quantity mattered more than the quality. The books and printed works in general lost a part of its humanity. The typefaces were not produced by craftsmen anymore. It was the machines printing and tying the books together now. The craftsmen had to let go of their craft and became a cog in the process. An extension of the industrial machine.\\n\\nBut the victory of the industrialism didn’t mean that the craftsmen were completely extinct. The two worlds continued to coexist independently. Each recognising the good in the other — the power of industrialism and the humanity of craftsmanship. This was the second transition that would strip typography of a part of its humanity. We have to go 500 years back in time to meet the first one.\\n\\n## The first transition\\n\\nA similar conflict emerged after the invention of the first printing press in Europe. Johannes Gutenberg invented movable type and used it to produce different compositions. His workshop could print up to 240 impressions per hour. Until then, the books were being copied by hand. All the books were handwritten and decorated with hand drawn ornaments and figures. A process of copying a book was long but each book, even a copy, was a work of art.\\n\\nThe first printed books were, at first, perceived as inferior to the handwritten ones. They were smaller and cheaper to produce. Movable type provided the printers with flexibility that allowed them to print books in languages other than Latin. Gill describes the transition to industrialism as something that people needed and wanted. Something similar happened after the first printed books emerged. People wanted books in a language they understood and they wanted books they could take with them. They were hungry for knowledge and printed books satisfied this hunger.\\n\\n![42-line-bible.jpg](/media/42-line-bible.jpg)\\n\\n*The 42–Line Bible, printed by Gutenberg.*\\n\\nBut, through this transition, the book lost a large part of its humanity. The machine took over most of the process but craftsmanship was still a part of it. The typefaces were cut manually by the first punch cutters. The paper was made by hand. The illustrations and ornaments were still being hand drawn. These were the remains of the craftsmanship that went almost extinct in the times of Eric Gill.\\n\\n## The digital age\\n\\nThe first transition took away a large part of humanity from written communication. Industrialisation, the second transition described by Eric Gill, took away most of what was left. But it’s the third transition that stripped it naked. Typefaces are faceless these days. They’re just fonts on our computers. Hardly anyone knows their stories. Hardly anyone cares. Flicking through thousands of typefaces and finding the “right one” is a matter of minutes.\\n\\n> In the new computer age the proliferation of typefaces and type manipulations represents a new level of visual pollution threatening our culture. Out of thousands of typefaces, all we need are a few basic ones, and trash the rest.\\n>\\n— Massimo Vignelli\\n\\nTypography is not about typefaces. It’s not about what looks best, it’s about what feels right. What communicates the message best. Typography, in its essence, is about the message. “Typographical design should perform optically what the speaker creates through voice and gesture of his thoughts.”, as El Lissitzky, a famous Russian typographer, put it.\\n\\n## Loss of humanity through transitions\\n\\nEach transition took away a part of humanity from written language. Handwritten books being the most humane form and the digital typefaces being the least. Overuse of Helvetica is a good example. Messages are being told in a typeface just because it’s a safe option. It’s always there. Everyone knows it but yet, nobody knows it. Stop someone on the street and ask him what Helvetica is? Ask a designer the same question. Ask him where it came from, when, why and who designed it. Most of them will fail to answer these questions. Most of them used it in their precious projects but they still don’t spot it in the street.\\n\\n
\\n\\t
\\n\\t\\t

Knowledge of the quality of a typeface is of the greatest importance for the functional, aesthetic and psychological effect.

\\n\\t\\t
\\n\\t\\t\\t— Josef Mueller-Brockmann\\n\\t\\t
\\n\\t
\\n
\\n\\nTypefaces don’t look handmade these days. And that’s all right. They don’t have to. Industrialism took that away from them and we’re fine with it. We’ve traded that part of humanity for a process that produces more books that are easier to read. That can’t be bad. And it isn’t.\\n\\n> Humane typography will often be comparatively rough and even uncouth; but while a certain uncouthness does not seriously matter in humane works, uncouthness has no excuse whatever in the productions of the machine.\\n>\\n> — Eric Gill\\n\\nWe’ve come close to “perfection” in the last five centuries. The letters are crisp and without rough edges. We print our compositions with high–precision printers on a high quality, machine made paper.\\n\\n![type-through-time.jpg](/media/type-through-time.jpg)\\n\\n*Type through 5 centuries.*\\n\\nWe lost a part of ourselves because of this chase after perfection. We forgot about the craftsmanship along the way. And the worst part is that we don’t care. The transition to the digital age made that clear. We choose typefaces like clueless zombies. There’s no meaning in our work. Type sizes, leading, margins… It’s all just a few clicks or lines of code. The message isn’t important anymore. There’s no more “why” behind the “what”.\\n\\n## Chasing perfection\\n\\nHuman beings aren’t perfect. Perfection is something that will always elude us. There will always be a small part of humanity in everything we do. No matter how small that part, we should make sure that it transcends the limits of the medium. We have to think about the message first. What typeface should we use and why? Does the typeface match the message and what we want to communicate with it? What will be the leading and why? Will there be more typefaces in our design? On what ground will they be combined? What makes our design unique and why? This is the part of humanity that is left in typography. It might be the last part. Are we really going to give it up?\\n\\n*Originally published by [Matej Latin](http://matejlatin.co.uk/) on [Medium](https://medium.com/design-notes/humane-typography-in-the-digital-age-9bd5c16199bd?ref=webdesignernews.com#.lygo82z0x).*\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/1970-01-01-first-title.json?ts=300&ref=refs/meta/_netlify_cms", + "headers": { + "Date": "Tue, 10 Sep 2019 13:48:01 GMT", + "Content-Type": "application/vnd.github.VERSION.raw; charset=utf-8", + "Content-Length": "472", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4769", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"4e6c0273ad9c74cc63713aa87359313da4f382d0\"", + "Last-Modified": "Tue, 10 Sep 2019 13:47:19 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B72:3ED7B:124A6E7:16369D4:5D77A990", + "connection": "keep-alive" + }, + "response": "{\"type\":\"PR\",\"pr\":{\"number\":3,\"head\":\"1173e4e1c8fb5237752d1aa86fb457e29087273d\"},\"user\":\"owner\",\"status\":\"pending_publish\",\"branch\":\"cms/1970-01-01-first-title\",\"collection\":\"posts\",\"commitMessage\":\"Create Post “1970-01-01-first-title”\",\"title\":\"first title\",\"description\":\"first description\",\"objects\":{\"entry\":{\"path\":\"content/posts/1970-01-01-first-title.md\",\"sha\":\"a041245814892e3f73f63ca54333fda649b7fc0b\"},\"files\":[]},\"timeStamp\":\"1970-01-01T00:00:00.300Z\"}", + "status": 200 + }, + { + "body": "{\"operationName\":\"unpublishedBranchFile\",\"variables\":{\"headOwner\":\"owner\",\"headRepoName\":\"repo\",\"headExpression\":\"cms/1970-01-01-first-title:content/posts/1970-01-01-first-title.md\",\"baseOwner\":\"owner\",\"baseRepoName\":\"repo\",\"baseExpression\":\"master:content/posts/1970-01-01-first-title.md\"},\"query\":\"query unpublishedBranchFile($headOwner: String!, $headRepoName: String!, $headExpression: String!, $baseOwner: String!, $baseRepoName: String!, $baseExpression: String!) {\\n head: repository(owner: $headOwner, name: $headRepoName) {\\n ...RepositoryParts\\n object(expression: $headExpression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n base: repository(owner: $baseOwner, name: $baseRepoName) {\\n ...RepositoryParts\\n object(expression: $baseExpression) {\\n ... on Blob {\\n id\\n oid\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:48:02 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4879", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7B74:3ED82:185C250:1DA1CE3:5D77A991", + "content-length": "189", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"head\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"object\":null},\"base\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"object\":null}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"master:content/posts/1970-01-01-first-title.md\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:48:02 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4878", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7B78:9D20:11377E1:150D6A4:5D77A992", + "content-length": "106", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"object\":null}}}\n", + "status": 200 + }, + { + "body": "{\"content\":\"LS0tCnRlbXBsYXRlOiBwb3N0CnRpdGxlOiBmaXJzdCB0aXRsZQpkcmFmdDogdHJ1ZQpkYXRlOiAxOTcwLTAxLTAxVDAwOjAwOjAwLjAwMFoKZGVzY3JpcHRpb246IGZpcnN0IGRlc2NyaXB0aW9uCmNhdGVnb3J5OiBmaXJzdCBjYXRlZ29yeQp0YWdzOgogIC0gdGFnMQotLS0KZmlyc3QgYm9keQo=\",\"encoding\":\"base64\"}", + "method": "POST", + "url": "/repos/owner/repo/git/blobs?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:48:04 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "206", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4768", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"a5ec4a37015a9eeb405300b3095fb5c9\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B7A:2B24:17A7651:1CC089B:5D77A993", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"a041245814892e3f73f63ca54333fda649b7fc0b\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b\"\n}\n", + "status": 201 + }, + { + "body": "{\"operationName\":\"branch\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"qualifiedName\":\"refs/heads/master\"},\"query\":\"query branch($owner: String!, $name: String!, $qualifiedName: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n branch: ref(qualifiedName: $qualifiedName) {\\n ...BranchParts\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BranchParts on Ref {\\n commit: target {\\n ...ObjectParts\\n __typename\\n }\\n id\\n name\\n repository {\\n ...RepositoryParts\\n __typename\\n }\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:48:05 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4877", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7B7C:9D20:1137B45:150DADF:5D77A994", + "content-length": "429", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"branch\":{\"commit\":{\"id\":\"MDY6Q29tbWl0MjA3NTcwODkwOjcyNjE3MmRlYWU5OWM4YTJjZWE0YzcxZTczNGEwMmE3OTNkNGQ5ZTU=\",\"sha\":\"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\"__typename\":\"Commit\"},\"id\":\"MDM6UmVmMjA3NTcwODkwOm1hc3Rlcg==\",\"name\":\"master\",\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\"},\"__typename\":\"Ref\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"commitTree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"726172deae99c8a2cea4c71e734a02a793d4d9e5\"},\"query\":\"query commitTree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n commit: object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n tree {\\n ...ObjectParts\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:48:06 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4876", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7B7E:15110:18600CF:1D9C91E:5D77A995", + "content-length": "5040", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"commit\":{\"id\":\"MDY6Q29tbWl0MjA3NTcwODkwOjcyNjE3MmRlYWU5OWM4YTJjZWE0YzcxZTczNGEwMmE3OTNkNGQ5ZTU=\",\"sha\":\"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\"__typename\":\"Commit\",\"tree\":{\"id\":\"MDQ6VHJlZTIwNzU3MDg5MDpjNWI3ZjZkNjc0YmExOTNiYjdiNGE1ZmNmNDkzMzAzNGUxYjdmMmI3\",\"sha\":\"c5b7f6d674ba193bb7b4a5fcf4933034e1b7f2b7\",\"__typename\":\"Tree\",\"entries\":[{\"path\":\".circleci\",\"sha\":\"e5e9af3301cac61f120b8e4d40b1733c7a45685a\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\".eslintignore\",\"sha\":\"80b4531b026d19f8fa589efd122e76199d23f967\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".eslintrc.js\",\"sha\":\"370684994aaed5b858da3a006f48cfa57e88fd27\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".flowconfig\",\"sha\":\"14aa2ac4cc0e15223ad98630a6f1325fc81f8043\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".gitattributes\",\"sha\":\"10a369ddf4f603337cabc6f21646508323941ce1\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".github\",\"sha\":\"4ebeece548b52b20af59622354530a6d33b50b43\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\".gitignore\",\"sha\":\"c071ba35b0e49899bab6d610a68eef667dbbf157\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".prettierignore\",\"sha\":\"393f050e123d998cf8c8b362ff95cc8ac4d250e5\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".prettierrc\",\"sha\":\"e52ad05bb13b084d7949dd76e1b2517455162150\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".stylelintrc.json\",\"sha\":\"4b4c9698d10d756f5faa025659b86375428ed0a7\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".vscode\",\"sha\":\"286e97ec0113ea8242b41ac222e2c3e8077e6f1e\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"CHANGELOG.md\",\"sha\":\"070a5d4f0eacd2dc0be81ae8996f8982de43046e\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"CODE_OF_CONDUCT.md\",\"sha\":\"92bc7565ff0ee145a0041b5179a820f14f39ab22\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"CONTRIBUTING.md\",\"sha\":\"8552aa241254a61258e1ff9666ab36f32fb1e3b9\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"LICENSE\",\"sha\":\"42d85938357b49977c126ca03b199129082d4fb8\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"README.md\",\"sha\":\"19df50a78654c8d757ca7f38447aa3d09c7abcce\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"backend\",\"sha\":\"b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"config.js\",\"sha\":\"58afd573bbb69fcca000efd0f5d90b93c93a98dd\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"content\",\"sha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"flow-typed\",\"sha\":\"86c32fd6c3118be5e0dbbb231a834447357236c6\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"flow\",\"sha\":\"0af45ad00d155c8d8c7407d913ff85278244c9ce\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"gatsby-browser.js\",\"sha\":\"9bd2c9dce175f04980e91cd9dc295a299e3cdb80\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"gatsby-config.js\",\"sha\":\"353a109dad62e3f25bf9f5e6a2167f21a6c8b459\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"gatsby-node.js\",\"sha\":\"14a207883c2093d2cc071bc5a464e165bcc1fead\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"gatsby\",\"sha\":\"4f23c06cd1740bf78304d2c0b29bf6bfdf427981\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"jest\",\"sha\":\"5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"netlify.toml\",\"sha\":\"599b99cc5700404fde316a7ede829776f23e7d45\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"package.json\",\"sha\":\"9d777616438b90a18f1a4ebfd5f114b4c06c6f17\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"postcss-config.js\",\"sha\":\"d216501e9b351a72e00ba0b7459a6500e27e7da2\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"renovate.json\",\"sha\":\"dcc309398785698b8870545c32051a3d72dd8271\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"serverless-scripts\",\"sha\":\"ee3701f2fbfc7196ba340f6481d1387d20527898\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"serverless-single-page-app-plugin\",\"sha\":\"08763fcfba643a06a452398517019bea4a5850ba\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"serverless.yml\",\"sha\":\"20b22c5fad229f35d029bf6614d333d82fe8a987\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"src\",\"sha\":\"8cdb35a88232c0f32f12f130c92c7cc55f97f471\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"static\",\"sha\":\"53c6380a600a030d3722bff7ecde36f749fb6964\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"utils\",\"sha\":\"a592549c9f74db40b51efefcda2fd76810405f27\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"yarn.lock\",\"sha\":\"475c9c1924ca752a0686303e2fdeb7b13ad75f57\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"}]}}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"tree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"726172deae99c8a2cea4c71e734a02a793d4d9e5\"},\"query\":\"query tree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n tree: object(oid: $sha) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:48:06 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4875", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7B81:2B24:17A7B06:1CC0E63:5D77A995", + "content-length": "260", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"tree\":{\"id\":\"MDY6Q29tbWl0MjA3NTcwODkwOjcyNjE3MmRlYWU5OWM4YTJjZWE0YzcxZTczNGEwMmE3OTNkNGQ5ZTU=\",\"sha\":\"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\"__typename\":\"Commit\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"tree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\"},\"query\":\"query tree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n tree: object(oid: $sha) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:48:07 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4874", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7B85:244E7:118C0D5:1569030:5D77A997", + "content-length": "502", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"tree\":{\"id\":\"MDQ6VHJlZTIwNzU3MDg5MDowMjk0ZWYxMDZjNTg3NDM5MDdhNWM4NTVkYTFlYjBmODdiMGI2ZGZj\",\"sha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\"__typename\":\"Tree\",\"entries\":[{\"path\":\"pages\",\"sha\":\"1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"posts\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"}]}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"commitTree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\"},\"query\":\"query commitTree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n commit: object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n tree {\\n ...ObjectParts\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:48:07 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4873", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7B82:B4E0:169757B:1B7E84F:5D77A997", + "content-length": "256", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"commit\":{\"id\":\"MDQ6VHJlZTIwNzU3MDg5MDowMjk0ZWYxMDZjNTg3NDM5MDdhNWM4NTVkYTFlYjBmODdiMGI2ZGZj\",\"sha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\"__typename\":\"Tree\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"commitTree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\"},\"query\":\"query commitTree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n commit: object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n tree {\\n ...ObjectParts\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:48:08 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4872", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7B86:244E7:118C1D1:1569179:5D77A997", + "content-length": "256", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"commit\":{\"id\":\"MDQ6VHJlZTIwNzU3MDg5MDozNDg5MjU3NWUyMTZjMDZlNzU3MDkzZjAzNmJkOGUwNTdjNzhhNTJm\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"__typename\":\"Tree\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"tree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\"},\"query\":\"query tree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n tree: object(oid: $sha) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:48:08 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4871", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7B88:3ED7B:124B106:1637673:5D77A997", + "content-length": "1075", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"tree\":{\"id\":\"MDQ6VHJlZTIwNzU3MDg5MDozNDg5MjU3NWUyMTZjMDZlNzU3MDkzZjAzNmJkOGUwNTdjNzhhNTJm\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"__typename\":\"Tree\",\"entries\":[{\"path\":\"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\"sha\":\"6d51a38aed7139d2117724b1e307657b6ff2d043\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\"sha\":\"d0582dd245a3f408fb3fe2333bf01400007476e9\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"2016-02-02---A-Brief-History-of-Typography.md\",\"sha\":\"0eea554365f002d0f1572af9a58522d335a794d5\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"2017-18-08---The-Birth-of-Movable-Type.md\",\"sha\":\"44f78c474d04273185a95821426f75affc9b0044\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\"sha\":\"a532f0a9445cdf90a19c6812cff89d1674991774\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"}]}}}}\n", + "status": 200 + }, + { + "body": "{\"base_tree\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"tree\":[{\"path\":\"1970-01-01-first-title.md\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"a041245814892e3f73f63ca54333fda649b7fc0b\"}]}", + "method": "POST", + "url": "/repos/owner/repo/git/trees?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:48:09 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "2355", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4767", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"04d8c1d18d9458006d19b6d3b470f959\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B8A:244EB:17EA00C:1D0B2A4:5D77A998", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a041245814892e3f73f63ca54333fda649b7fc0b\",\n \"size\": 167,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b\"\n },\n {\n \"path\": \"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"size\": 1707,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\"\n },\n {\n \"path\": \"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"size\": 2565,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\"\n },\n {\n \"path\": \"2016-02-02---A-Brief-History-of-Typography.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"0eea554365f002d0f1572af9a58522d335a794d5\",\n \"size\": 2786,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\"\n },\n {\n \"path\": \"2017-18-08---The-Birth-of-Movable-Type.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"44f78c474d04273185a95821426f75affc9b0044\",\n \"size\": 16071,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\"\n },\n {\n \"path\": \"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"size\": 7465,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"base_tree\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\"tree\":[{\"path\":\"posts\",\"mode\":\"040000\",\"type\":\"tree\",\"sha\":\"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\"parentSha\":\"34892575e216c06e757093f036bd8e057c78a52f\"}]}", + "method": "POST", + "url": "/repos/owner/repo/git/trees?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:48:09 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "828", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4766", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"44a8b3dc9f6d05e9ab92c5a4b2a88d1c\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B8C:1510D:46706B:565F25:5D77A999", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"tree\": [\n {\n \"path\": \"pages\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\"\n },\n {\n \"path\": \"posts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"base_tree\":\"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\"tree\":[{\"path\":\"content\",\"mode\":\"040000\",\"type\":\"tree\",\"sha\":\"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\"parentSha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\"}]}", + "method": "POST", + "url": "/repos/owner/repo/git/trees?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:48:10 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "11731", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4765", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"a4b7f86984e19e3dea0bb083fa1dce76\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/trees/daee8d5d15d144e8779955166a2afeccde2770e1", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B8E:2B24:17A82E8:1CC180D:5D77A99A", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"daee8d5d15d144e8779955166a2afeccde2770e1\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/daee8d5d15d144e8779955166a2afeccde2770e1\",\n \"tree\": [\n {\n \"path\": \".circleci\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"e5e9af3301cac61f120b8e4d40b1733c7a45685a\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/e5e9af3301cac61f120b8e4d40b1733c7a45685a\"\n },\n {\n \"path\": \".eslintignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"80b4531b026d19f8fa589efd122e76199d23f967\",\n \"size\": 39,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/80b4531b026d19f8fa589efd122e76199d23f967\"\n },\n {\n \"path\": \".eslintrc.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"370684994aaed5b858da3a006f48cfa57e88fd27\",\n \"size\": 414,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/370684994aaed5b858da3a006f48cfa57e88fd27\"\n },\n {\n \"path\": \".flowconfig\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14aa2ac4cc0e15223ad98630a6f1325fc81f8043\",\n \"size\": 283,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14aa2ac4cc0e15223ad98630a6f1325fc81f8043\"\n },\n {\n \"path\": \".gitattributes\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"10a369ddf4f603337cabc6f21646508323941ce1\",\n \"size\": 135,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/10a369ddf4f603337cabc6f21646508323941ce1\"\n },\n {\n \"path\": \".github\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4ebeece548b52b20af59622354530a6d33b50b43\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4ebeece548b52b20af59622354530a6d33b50b43\"\n },\n {\n \"path\": \".gitignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"c071ba35b0e49899bab6d610a68eef667dbbf157\",\n \"size\": 169,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/c071ba35b0e49899bab6d610a68eef667dbbf157\"\n },\n {\n \"path\": \".prettierignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"393f050e123d998cf8c8b362ff95cc8ac4d250e5\",\n \"size\": 45,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/393f050e123d998cf8c8b362ff95cc8ac4d250e5\"\n },\n {\n \"path\": \".prettierrc\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e52ad05bb13b084d7949dd76e1b2517455162150\",\n \"size\": 223,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/e52ad05bb13b084d7949dd76e1b2517455162150\"\n },\n {\n \"path\": \".stylelintrc.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"4b4c9698d10d756f5faa025659b86375428ed0a7\",\n \"size\": 718,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/4b4c9698d10d756f5faa025659b86375428ed0a7\"\n },\n {\n \"path\": \".vscode\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"286e97ec0113ea8242b41ac222e2c3e8077e6f1e\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/286e97ec0113ea8242b41ac222e2c3e8077e6f1e\"\n },\n {\n \"path\": \"CHANGELOG.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"070a5d4f0eacd2dc0be81ae8996f8982de43046e\",\n \"size\": 2113,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/070a5d4f0eacd2dc0be81ae8996f8982de43046e\"\n },\n {\n \"path\": \"CODE_OF_CONDUCT.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"92bc7565ff0ee145a0041b5179a820f14f39ab22\",\n \"size\": 3355,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/92bc7565ff0ee145a0041b5179a820f14f39ab22\"\n },\n {\n \"path\": \"CONTRIBUTING.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"8552aa241254a61258e1ff9666ab36f32fb1e3b9\",\n \"size\": 3548,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/8552aa241254a61258e1ff9666ab36f32fb1e3b9\"\n },\n {\n \"path\": \"LICENSE\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"42d85938357b49977c126ca03b199129082d4fb8\",\n \"size\": 1091,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/42d85938357b49977c126ca03b199129082d4fb8\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"19df50a78654c8d757ca7f38447aa3d09c7abcce\",\n \"size\": 3698,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/19df50a78654c8d757ca7f38447aa3d09c7abcce\"\n },\n {\n \"path\": \"backend\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\"\n },\n {\n \"path\": \"config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"58afd573bbb69fcca000efd0f5d90b93c93a98dd\",\n \"size\": 853,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/58afd573bbb69fcca000efd0f5d90b93c93a98dd\"\n },\n {\n \"path\": \"content\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639\"\n },\n {\n \"path\": \"flow-typed\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"86c32fd6c3118be5e0dbbb231a834447357236c6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/86c32fd6c3118be5e0dbbb231a834447357236c6\"\n },\n {\n \"path\": \"flow\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"0af45ad00d155c8d8c7407d913ff85278244c9ce\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/0af45ad00d155c8d8c7407d913ff85278244c9ce\"\n },\n {\n \"path\": \"gatsby-browser.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9bd2c9dce175f04980e91cd9dc295a299e3cdb80\",\n \"size\": 90,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9bd2c9dce175f04980e91cd9dc295a299e3cdb80\"\n },\n {\n \"path\": \"gatsby-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"353a109dad62e3f25bf9f5e6a2167f21a6c8b459\",\n \"size\": 7228,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/353a109dad62e3f25bf9f5e6a2167f21a6c8b459\"\n },\n {\n \"path\": \"gatsby-node.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14a207883c2093d2cc071bc5a464e165bcc1fead\",\n \"size\": 409,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14a207883c2093d2cc071bc5a464e165bcc1fead\"\n },\n {\n \"path\": \"gatsby\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4f23c06cd1740bf78304d2c0b29bf6bfdf427981\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4f23c06cd1740bf78304d2c0b29bf6bfdf427981\"\n },\n {\n \"path\": \"jest\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\"\n },\n {\n \"path\": \"netlify.toml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"599b99cc5700404fde316a7ede829776f23e7d45\",\n \"size\": 137,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/599b99cc5700404fde316a7ede829776f23e7d45\"\n },\n {\n \"path\": \"package.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9d777616438b90a18f1a4ebfd5f114b4c06c6f17\",\n \"size\": 6855,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9d777616438b90a18f1a4ebfd5f114b4c06c6f17\"\n },\n {\n \"path\": \"postcss-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d216501e9b351a72e00ba0b7459a6500e27e7da2\",\n \"size\": 703,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d216501e9b351a72e00ba0b7459a6500e27e7da2\"\n },\n {\n \"path\": \"renovate.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"dcc309398785698b8870545c32051a3d72dd8271\",\n \"size\": 460,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/dcc309398785698b8870545c32051a3d72dd8271\"\n },\n {\n \"path\": \"serverless-scripts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ee3701f2fbfc7196ba340f6481d1387d20527898\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ee3701f2fbfc7196ba340f6481d1387d20527898\"\n },\n {\n \"path\": \"serverless-single-page-app-plugin\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"08763fcfba643a06a452398517019bea4a5850ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/08763fcfba643a06a452398517019bea4a5850ba\"\n },\n {\n \"path\": \"serverless.yml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"20b22c5fad229f35d029bf6614d333d82fe8a987\",\n \"size\": 7803,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/20b22c5fad229f35d029bf6614d333d82fe8a987\"\n },\n {\n \"path\": \"src\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"8cdb35a88232c0f32f12f130c92c7cc55f97f471\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/8cdb35a88232c0f32f12f130c92c7cc55f97f471\"\n },\n {\n \"path\": \"static\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"53c6380a600a030d3722bff7ecde36f749fb6964\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/53c6380a600a030d3722bff7ecde36f749fb6964\"\n },\n {\n \"path\": \"utils\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"a592549c9f74db40b51efefcda2fd76810405f27\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/a592549c9f74db40b51efefcda2fd76810405f27\"\n },\n {\n \"path\": \"yarn.lock\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"475c9c1924ca752a0686303e2fdeb7b13ad75f57\",\n \"size\": 793903,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/475c9c1924ca752a0686303e2fdeb7b13ad75f57\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"message\":\"Create Post “1970-01-01-first-title”\",\"tree\":\"daee8d5d15d144e8779955166a2afeccde2770e1\",\"parents\":[\"726172deae99c8a2cea4c71e734a02a793d4d9e5\"]}", + "method": "POST", + "url": "/repos/owner/repo/git/commits?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:48:11 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "1499", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4764", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"effd16755792335f8d88f2507d5d394d\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/commits/b527faae14e4894e20180b8ecd8118f4841b7a2e", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B94:244E4:ADEC6B:D2BB13:5D77A99A", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"b527faae14e4894e20180b8ecd8118f4841b7a2e\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NTcwODkwOmI1MjdmYWFlMTRlNDg5NGUyMDE4MGI4ZWNkODExOGY0ODQxYjdhMmU=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/b527faae14e4894e20180b8ecd8118f4841b7a2e\",\n \"html_url\": \"https://github.com/owner/repo/commit/b527faae14e4894e20180b8ecd8118f4841b7a2e\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T13:48:11Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T13:48:11Z\"\n },\n \"tree\": {\n \"sha\": \"daee8d5d15d144e8779955166a2afeccde2770e1\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/daee8d5d15d144e8779955166a2afeccde2770e1\"\n },\n \"message\": \"Create Post “1970-01-01-first-title”\",\n \"parents\": [\n {\n \"sha\": \"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"html_url\": \"https://github.com/owner/repo/commit/726172deae99c8a2cea4c71e734a02a793d4d9e5\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "status": 201 + }, + { + "body": "{\"operationName\":\"createBranchAndPullRequest\",\"variables\":{\"createRefInput\":{\"name\":\"refs/heads/cms/1970-01-01-first-title\",\"oid\":\"b527faae14e4894e20180b8ecd8118f4841b7a2e\",\"repositoryId\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\"},\"createPullRequestInput\":{\"baseRefName\":\"master\",\"body\":\"Automatically generated by Netlify CMS\",\"title\":\"Create Post “1970-01-01-first-title”\",\"headRefName\":\"cms/1970-01-01-first-title\",\"repositoryId\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\"}},\"query\":\"mutation createBranchAndPullRequest($createRefInput: CreateRefInput!, $createPullRequestInput: CreatePullRequestInput!) {\\n createRef(input: $createRefInput) {\\n branch: ref {\\n ...BranchParts\\n __typename\\n }\\n __typename\\n }\\n createPullRequest(input: $createPullRequestInput) {\\n clientMutationId\\n pullRequest {\\n ...PullRequestParts\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment BranchParts on Ref {\\n commit: target {\\n ...ObjectParts\\n __typename\\n }\\n id\\n name\\n repository {\\n ...RepositoryParts\\n __typename\\n }\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment PullRequestParts on PullRequest {\\n id\\n baseRefName\\n body\\n headRefName\\n headRefOid\\n number\\n state\\n title\\n merged_at: mergedAt\\n repository {\\n ...RepositoryParts\\n __typename\\n }\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:48:13 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4870", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7B9F:2B1F:120EFDF:1608FF7:5D77A99B", + "content-length": "952", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"createRef\":{\"branch\":{\"commit\":{\"id\":\"MDY6Q29tbWl0MjA3NTcwODkwOmI1MjdmYWFlMTRlNDg5NGUyMDE4MGI4ZWNkODExOGY0ODQxYjdhMmU=\",\"sha\":\"b527faae14e4894e20180b8ecd8118f4841b7a2e\",\"__typename\":\"Commit\"},\"id\":\"MDM6UmVmMjA3NTcwODkwOmNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxl\",\"name\":\"cms/1970-01-01-first-title\",\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\"},\"__typename\":\"Ref\"},\"__typename\":\"CreateRefPayload\"},\"createPullRequest\":{\"clientMutationId\":null,\"pullRequest\":{\"id\":\"MDExOlB1bGxSZXF1ZXN0MzE2MDA0MDI4\",\"baseRefName\":\"master\",\"body\":\"Automatically generated by Netlify CMS\",\"headRefName\":\"cms/1970-01-01-first-title\",\"headRefOid\":\"b527faae14e4894e20180b8ecd8118f4841b7a2e\",\"number\":4,\"state\":\"OPEN\",\"title\":\"Create Post “1970-01-01-first-title”\",\"merged_at\":null,\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\"},\"__typename\":\"PullRequest\"},\"__typename\":\"CreatePullRequestPayload\"}}}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:48:14 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4763", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"441108b11baeb5c2e205215bcacc1f2a\"", + "Last-Modified": "Tue, 10 Sep 2019 13:47:48 GMT", + "X-Poll-Interval": "300", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BA0:244E7:118C87E:15699C2:5D77A99D", + "content-length": "482", + "connection": "keep-alive" + }, + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NTcwODkwOnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"9cf1bc8d2ae287af95d444e7087ee5aaa0a9864f\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/9cf1bc8d2ae287af95d444e7087ee5aaa0a9864f\"\n }\n}\n", + "status": 200 + }, + { + "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjQsImhlYWQiOiJiNTI3ZmFhZTE0ZTQ4OTRlMjAxODBiOGVjZDgxMThmNDg0MWI3YTJlIn0sInVzZXIiOiJvd25lciIsInN0YXR1cyI6ImRyYWZ0IiwiYnJhbmNoIjoiY21zLzE5NzAtMDEtMDEtZmlyc3QtdGl0bGUiLCJjb2xsZWN0aW9uIjoicG9zdHMiLCJjb21taXRNZXNzYWdlIjoiQ3JlYXRlIFBvc3Qg4oCcMTk3MC0wMS0wMS1maXJzdC10aXRsZeKAnSIsInRpdGxlIjoiZmlyc3QgdGl0bGUiLCJkZXNjcmlwdGlvbiI6ImZpcnN0IGRlc2NyaXB0aW9uIiwib2JqZWN0cyI6eyJlbnRyeSI6eyJwYXRoIjoiY29udGVudC9wb3N0cy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxlLm1kIiwic2hhIjoiYTA0MTI0NTgxNDg5MmUzZjczZjYzY2E1NDMzM2ZkYTY0OWI3ZmMwYiJ9LCJmaWxlcyI6W119LCJ0aW1lU3RhbXAiOiIxOTcwLTAxLTAxVDAwOjAwOjAwLjMwMFoifQ==\",\"encoding\":\"base64\"}", + "method": "POST", + "url": "/repos/owner/repo/git/blobs?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:48:14 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "206", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4762", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"2c76bacf22027ca97439cefdf4919623\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/blobs/1c0f7f9aadf4491888fb01f5a86b55c3ec9c5ba8", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BA2:15110:1861072:1D9DC3E:5D77A99E", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"1c0f7f9aadf4491888fb01f5a86b55c3ec9c5ba8\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/1c0f7f9aadf4491888fb01f5a86b55c3ec9c5ba8\"\n}\n", + "status": 201 + }, + { + "body": "{\"operationName\":\"tree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"9cf1bc8d2ae287af95d444e7087ee5aaa0a9864f\"},\"query\":\"query tree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n tree: object(oid: $sha) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:48:15 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4869", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7BAA:2B1F:120F4C9:1609607:5D77A99F", + "content-length": "260", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"tree\":{\"id\":\"MDY6Q29tbWl0MjA3NTcwODkwOjljZjFiYzhkMmFlMjg3YWY5NWQ0NDRlNzA4N2VlNWFhYTBhOTg2NGY=\",\"sha\":\"9cf1bc8d2ae287af95d444e7087ee5aaa0a9864f\",\"__typename\":\"Commit\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"commitTree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"9cf1bc8d2ae287af95d444e7087ee5aaa0a9864f\"},\"query\":\"query commitTree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n commit: object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n tree {\\n ...ObjectParts\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:48:16 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4868", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7BA8:2B1F:120F4C9:1609606:5D77A99F", + "content-length": "698", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"commit\":{\"id\":\"MDY6Q29tbWl0MjA3NTcwODkwOjljZjFiYzhkMmFlMjg3YWY5NWQ0NDRlNzA4N2VlNWFhYTBhOTg2NGY=\",\"sha\":\"9cf1bc8d2ae287af95d444e7087ee5aaa0a9864f\",\"__typename\":\"Commit\",\"tree\":{\"id\":\"MDQ6VHJlZTIwNzU3MDg5MDo2MjExNzI0YjdiYTA5Yzk2MjBkZTUzMGZlOTM2ODc4NTQ5MmQ0OGM4\",\"sha\":\"6211724b7ba09c9620de530fe9368785492d48c8\",\"__typename\":\"Tree\",\"entries\":[{\"path\":\"1970-01-01-first-title.json\",\"sha\":\"4e6c0273ad9c74cc63713aa87359313da4f382d0\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"README.md\",\"sha\":\"98787d1bd948850444433e91a43091a76c4eb455\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"}]}}}}}\n", + "status": 200 + }, + { + "body": "{\"base_tree\":\"9cf1bc8d2ae287af95d444e7087ee5aaa0a9864f\",\"tree\":[{\"path\":\"1970-01-01-first-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"1c0f7f9aadf4491888fb01f5a86b55c3ec9c5ba8\"}]}", + "method": "POST", + "url": "/repos/owner/repo/git/trees?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:48:16 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "892", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4761", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"2ef22ab0a8dae82db604033cc2e59d1d\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/trees/6dcb9e40fedbf88f375a3c037719ee8cd8fd42ba", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BAC:2B24:17A8CD4:1CC2432:5D77A9A0", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"6dcb9e40fedbf88f375a3c037719ee8cd8fd42ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/6dcb9e40fedbf88f375a3c037719ee8cd8fd42ba\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"1c0f7f9aadf4491888fb01f5a86b55c3ec9c5ba8\",\n \"size\": 462,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/1c0f7f9aadf4491888fb01f5a86b55c3ec9c5ba8\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"message\":\"Updating “1970-01-01-first-title” metadata\",\"tree\":\"6dcb9e40fedbf88f375a3c037719ee8cd8fd42ba\",\"parents\":[\"9cf1bc8d2ae287af95d444e7087ee5aaa0a9864f\"]}", + "method": "POST", + "url": "/repos/owner/repo/git/commits?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:48:17 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "1505", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4760", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"f702eaf612a43d5bef1a2d55d55b4a82\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/commits/dbf538fa34f63e4f21e912a40ed06e8a35599503", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BAF:1510F:1219D25:15F6FC5:5D77A9A1", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"dbf538fa34f63e4f21e912a40ed06e8a35599503\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NTcwODkwOmRiZjUzOGZhMzRmNjNlNGYyMWU5MTJhNDBlZDA2ZThhMzU1OTk1MDM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/dbf538fa34f63e4f21e912a40ed06e8a35599503\",\n \"html_url\": \"https://github.com/owner/repo/commit/dbf538fa34f63e4f21e912a40ed06e8a35599503\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T13:48:17Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T13:48:17Z\"\n },\n \"tree\": {\n \"sha\": \"6dcb9e40fedbf88f375a3c037719ee8cd8fd42ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/6dcb9e40fedbf88f375a3c037719ee8cd8fd42ba\"\n },\n \"message\": \"Updating “1970-01-01-first-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"9cf1bc8d2ae287af95d444e7087ee5aaa0a9864f\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/9cf1bc8d2ae287af95d444e7087ee5aaa0a9864f\",\n \"html_url\": \"https://github.com/owner/repo/commit/9cf1bc8d2ae287af95d444e7087ee5aaa0a9864f\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "status": 201 + }, + { + "body": "{\"sha\":\"dbf538fa34f63e4f21e912a40ed06e8a35599503\",\"force\":false}", + "method": "PATCH", + "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:48:18 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4759", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"c59e0185460e24b38ec45063d44a3c23\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BB0:1510F:1219E46:15F7121:5D77A9A1", + "content-length": "482", + "connection": "keep-alive" + }, + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NTcwODkwOnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"dbf538fa34f63e4f21e912a40ed06e8a35599503\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/dbf538fa34f63e4f21e912a40ed06e8a35599503\"\n }\n}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"unpublishedBranchFile\",\"variables\":{\"headOwner\":\"owner\",\"headRepoName\":\"repo\",\"headExpression\":\"cms/1970-01-01-first-title:content/posts/1970-01-01-first-title.md\",\"baseOwner\":\"owner\",\"baseRepoName\":\"repo\",\"baseExpression\":\"master:content/posts/1970-01-01-first-title.md\"},\"query\":\"query unpublishedBranchFile($headOwner: String!, $headRepoName: String!, $headExpression: String!, $baseOwner: String!, $baseRepoName: String!, $baseExpression: String!) {\\n head: repository(owner: $headOwner, name: $headRepoName) {\\n ...RepositoryParts\\n object(expression: $headExpression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n base: repository(owner: $baseOwner, name: $baseRepoName) {\\n ...RepositoryParts\\n object(expression: $baseExpression) {\\n ... on Blob {\\n id\\n oid\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:48:19 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4867", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7BB6:244E7:118CF14:156A202:5D77A9A3", + "content-length": "496", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"head\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzU3MDg5MDphMDQxMjQ1ODE0ODkyZTNmNzNmNjNjYTU0MzMzZmRhNjQ5YjdmYzBi\",\"text\":\"---\\ntemplate: post\\ntitle: first title\\ndraft: true\\ndate: 1970-01-01T00:00:00.000Z\\ndescription: first description\\ncategory: first category\\ntags:\\n - tag1\\n---\\nfirst body\\n\",\"is_binary\":false,\"__typename\":\"Blob\"}},\"base\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"object\":null}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"statues\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"b527faae14e4894e20180b8ecd8118f4841b7a2e\"},\"query\":\"query statues($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n status {\\n id\\n contexts {\\n id\\n context\\n state\\n target_url: targetUrl\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:48:20 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4866", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7BBA:B4E0:1698B66:1B8031E:5D77A9A4", + "content-length": "276", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDY6Q29tbWl0MjA3NTcwODkwOmI1MjdmYWFlMTRlNDg5NGUyMDE4MGI4ZWNkODExOGY0ODQxYjdhMmU=\",\"sha\":\"b527faae14e4894e20180b8ecd8118f4841b7a2e\",\"__typename\":\"Commit\",\"status\":null}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"unpublishedPrBranches\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\"},\"query\":\"query unpublishedPrBranches($owner: String!, $name: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n refs(refPrefix: \\\"refs/heads/cms/\\\", last: 50) {\\n nodes {\\n id\\n associatedPullRequests(last: 50, states: OPEN) {\\n nodes {\\n id\\n headRef {\\n id\\n name\\n prefix\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:48:21 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4865", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7BBC:2B24:17A9418:1CC2D0E:5D77A9A4", + "content-length": "518", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"refs\":{\"nodes\":[{\"id\":\"MDM6UmVmMjA3NTcwODkwOjE5NzAtMDEtMDEtZmlyc3QtdGl0bGU=\",\"associatedPullRequests\":{\"nodes\":[{\"id\":\"MDExOlB1bGxSZXF1ZXN0MzE2MDA0MDI4\",\"headRef\":{\"id\":\"MDM6UmVmMjA3NTcwODkwOmNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxl\",\"name\":\"cms/1970-01-01-first-title\",\"prefix\":\"refs/heads/\",\"__typename\":\"Ref\"},\"__typename\":\"PullRequest\"}],\"__typename\":\"PullRequestConnection\"},\"__typename\":\"Ref\"}],\"__typename\":\"RefConnection\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"unpublishedBranchFile\",\"variables\":{\"headOwner\":\"owner\",\"headRepoName\":\"repo\",\"headExpression\":\"cms/1970-01-01-first-title:content/posts/1970-01-01-first-title.md\",\"baseOwner\":\"owner\",\"baseRepoName\":\"repo\",\"baseExpression\":\"master:content/posts/1970-01-01-first-title.md\"},\"query\":\"query unpublishedBranchFile($headOwner: String!, $headRepoName: String!, $headExpression: String!, $baseOwner: String!, $baseRepoName: String!, $baseExpression: String!) {\\n head: repository(owner: $headOwner, name: $headRepoName) {\\n ...RepositoryParts\\n object(expression: $headExpression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n base: repository(owner: $baseOwner, name: $baseRepoName) {\\n ...RepositoryParts\\n object(expression: $baseExpression) {\\n ... on Blob {\\n id\\n oid\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:48:21 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4864", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7BBE:1510D:46755A:56652B:5D77A9A5", + "content-length": "496", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"head\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzU3MDg5MDphMDQxMjQ1ODE0ODkyZTNmNzNmNjNjYTU0MzMzZmRhNjQ5YjdmYzBi\",\"text\":\"---\\ntemplate: post\\ntitle: first title\\ndraft: true\\ndate: 1970-01-01T00:00:00.000Z\\ndescription: first description\\ncategory: first category\\ntags:\\n - tag1\\n---\\nfirst body\\n\",\"is_binary\":false,\"__typename\":\"Blob\"}},\"base\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"object\":null}}}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:48:23 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4758", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"c59e0185460e24b38ec45063d44a3c23\"", + "Last-Modified": "Tue, 10 Sep 2019 13:47:48 GMT", + "X-Poll-Interval": "300", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BC0:1510F:121A470:15F78A8:5D77A9A6", + "content-length": "482", + "connection": "keep-alive" + }, + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NTcwODkwOnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"dbf538fa34f63e4f21e912a40ed06e8a35599503\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/dbf538fa34f63e4f21e912a40ed06e8a35599503\"\n }\n}\n", + "status": 200 + }, + { + "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjQsImhlYWQiOiJiNTI3ZmFhZTE0ZTQ4OTRlMjAxODBiOGVjZDgxMThmNDg0MWI3YTJlIn0sInVzZXIiOiJvd25lciIsInN0YXR1cyI6InBlbmRpbmdfcmV2aWV3IiwiYnJhbmNoIjoiY21zLzE5NzAtMDEtMDEtZmlyc3QtdGl0bGUiLCJjb2xsZWN0aW9uIjoicG9zdHMiLCJjb21taXRNZXNzYWdlIjoiQ3JlYXRlIFBvc3Qg4oCcMTk3MC0wMS0wMS1maXJzdC10aXRsZeKAnSIsInRpdGxlIjoiZmlyc3QgdGl0bGUiLCJkZXNjcmlwdGlvbiI6ImZpcnN0IGRlc2NyaXB0aW9uIiwib2JqZWN0cyI6eyJlbnRyeSI6eyJwYXRoIjoiY29udGVudC9wb3N0cy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxlLm1kIiwic2hhIjoiYTA0MTI0NTgxNDg5MmUzZjczZjYzY2E1NDMzM2ZkYTY0OWI3ZmMwYiJ9LCJmaWxlcyI6W119LCJ0aW1lU3RhbXAiOiIxOTcwLTAxLTAxVDAwOjAwOjAwLjMwMFoifQ==\",\"encoding\":\"base64\"}", + "method": "POST", + "url": "/repos/owner/repo/git/blobs?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:48:23 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "206", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4757", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"194310649272970427a14315a3ec672e\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/blobs/5df9cbd1489585c00df22345bd4302e3df7028e9", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BC2:B4DC:AAC621:CFB426:5D77A9A7", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"5df9cbd1489585c00df22345bd4302e3df7028e9\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/5df9cbd1489585c00df22345bd4302e3df7028e9\"\n}\n", + "status": 201 + }, + { + "body": "{\"operationName\":\"commitTree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"dbf538fa34f63e4f21e912a40ed06e8a35599503\"},\"query\":\"query commitTree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n commit: object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n tree {\\n ...ObjectParts\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:48:24 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4863", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7BC4:9D21:171E60D:1C2978D:5D77A9A7", + "content-length": "698", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"commit\":{\"id\":\"MDY6Q29tbWl0MjA3NTcwODkwOmRiZjUzOGZhMzRmNjNlNGYyMWU5MTJhNDBlZDA2ZThhMzU1OTk1MDM=\",\"sha\":\"dbf538fa34f63e4f21e912a40ed06e8a35599503\",\"__typename\":\"Commit\",\"tree\":{\"id\":\"MDQ6VHJlZTIwNzU3MDg5MDo2ZGNiOWU0MGZlZGJmODhmMzc1YTNjMDM3NzE5ZWU4Y2Q4ZmQ0MmJh\",\"sha\":\"6dcb9e40fedbf88f375a3c037719ee8cd8fd42ba\",\"__typename\":\"Tree\",\"entries\":[{\"path\":\"1970-01-01-first-title.json\",\"sha\":\"1c0f7f9aadf4491888fb01f5a86b55c3ec9c5ba8\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"README.md\",\"sha\":\"98787d1bd948850444433e91a43091a76c4eb455\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"}]}}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"tree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"dbf538fa34f63e4f21e912a40ed06e8a35599503\"},\"query\":\"query tree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n tree: object(oid: $sha) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:48:24 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4862", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7BC6:3ED82:185EB00:1DA4EAD:5D77A9A7", + "content-length": "260", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"tree\":{\"id\":\"MDY6Q29tbWl0MjA3NTcwODkwOmRiZjUzOGZhMzRmNjNlNGYyMWU5MTJhNDBlZDA2ZThhMzU1OTk1MDM=\",\"sha\":\"dbf538fa34f63e4f21e912a40ed06e8a35599503\",\"__typename\":\"Commit\"}}}}\n", + "status": 200 + }, + { + "body": "{\"base_tree\":\"dbf538fa34f63e4f21e912a40ed06e8a35599503\",\"tree\":[{\"path\":\"1970-01-01-first-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"5df9cbd1489585c00df22345bd4302e3df7028e9\"}]}", + "method": "POST", + "url": "/repos/owner/repo/git/trees?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:48:25 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "892", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4756", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"4511868013cf107a3ccecfc24008b689\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/trees/8ad5afdce49a530481a8eac31d14137d7444564a", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BC8:2B1F:120FFD0:160A3C4:5D77A9A8", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"8ad5afdce49a530481a8eac31d14137d7444564a\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/8ad5afdce49a530481a8eac31d14137d7444564a\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"5df9cbd1489585c00df22345bd4302e3df7028e9\",\n \"size\": 471,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/5df9cbd1489585c00df22345bd4302e3df7028e9\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"message\":\"Updating “1970-01-01-first-title” metadata\",\"tree\":\"8ad5afdce49a530481a8eac31d14137d7444564a\",\"parents\":[\"dbf538fa34f63e4f21e912a40ed06e8a35599503\"]}", + "method": "POST", + "url": "/repos/owner/repo/git/commits?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:48:25 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "1505", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4755", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"2dee7d4dd92b581bcb3ff64545a3e1f6\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/commits/e2e1205d9fea06318455d49611f762a4a00ddca9", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BCA:2B1F:12100AA:160A4CA:5D77A9A9", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"e2e1205d9fea06318455d49611f762a4a00ddca9\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NTcwODkwOmUyZTEyMDVkOWZlYTA2MzE4NDU1ZDQ5NjExZjc2MmE0YTAwZGRjYTk=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/e2e1205d9fea06318455d49611f762a4a00ddca9\",\n \"html_url\": \"https://github.com/owner/repo/commit/e2e1205d9fea06318455d49611f762a4a00ddca9\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T13:48:25Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T13:48:25Z\"\n },\n \"tree\": {\n \"sha\": \"8ad5afdce49a530481a8eac31d14137d7444564a\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/8ad5afdce49a530481a8eac31d14137d7444564a\"\n },\n \"message\": \"Updating “1970-01-01-first-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"dbf538fa34f63e4f21e912a40ed06e8a35599503\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/dbf538fa34f63e4f21e912a40ed06e8a35599503\",\n \"html_url\": \"https://github.com/owner/repo/commit/dbf538fa34f63e4f21e912a40ed06e8a35599503\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "status": 201 + }, + { + "body": "{\"operationName\":\"statues\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"b527faae14e4894e20180b8ecd8118f4841b7a2e\"},\"query\":\"query statues($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n status {\\n id\\n contexts {\\n id\\n context\\n state\\n target_url: targetUrl\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:48:26 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4861", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7BCD:B4DE:11DB577:15BC1EB:5D77A9AA", + "content-length": "276", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDY6Q29tbWl0MjA3NTcwODkwOmI1MjdmYWFlMTRlNDg5NGUyMDE4MGI4ZWNkODExOGY0ODQxYjdhMmU=\",\"sha\":\"b527faae14e4894e20180b8ecd8118f4841b7a2e\",\"__typename\":\"Commit\",\"status\":null}}}}\n", + "status": 200 + }, + { + "body": "{\"sha\":\"e2e1205d9fea06318455d49611f762a4a00ddca9\",\"force\":false}", + "method": "PATCH", + "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:48:27 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4754", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"2fed246c8210509e07677fb976437a61\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BCF:9D1F:A1C7BD:C56AF3:5D77A9AA", + "content-length": "482", + "connection": "keep-alive" + }, + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NTcwODkwOnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"e2e1205d9fea06318455d49611f762a4a00ddca9\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/e2e1205d9fea06318455d49611f762a4a00ddca9\"\n }\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:48:31 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4753", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"2fed246c8210509e07677fb976437a61\"", + "Last-Modified": "Tue, 10 Sep 2019 13:47:48 GMT", + "X-Poll-Interval": "300", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BD8:244EB:17EC67A:1D0E192:5D77A9AE", + "content-length": "482", + "connection": "keep-alive" + }, + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NTcwODkwOnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"e2e1205d9fea06318455d49611f762a4a00ddca9\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/e2e1205d9fea06318455d49611f762a4a00ddca9\"\n }\n}\n", + "status": 200 + }, + { + "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjQsImhlYWQiOiJiNTI3ZmFhZTE0ZTQ4OTRlMjAxODBiOGVjZDgxMThmNDg0MWI3YTJlIn0sInVzZXIiOiJvd25lciIsInN0YXR1cyI6InBlbmRpbmdfcHVibGlzaCIsImJyYW5jaCI6ImNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxlIiwiY29sbGVjdGlvbiI6InBvc3RzIiwiY29tbWl0TWVzc2FnZSI6IkNyZWF0ZSBQb3N0IOKAnDE5NzAtMDEtMDEtZmlyc3QtdGl0bGXigJ0iLCJ0aXRsZSI6ImZpcnN0IHRpdGxlIiwiZGVzY3JpcHRpb24iOiJmaXJzdCBkZXNjcmlwdGlvbiIsIm9iamVjdHMiOnsiZW50cnkiOnsicGF0aCI6ImNvbnRlbnQvcG9zdHMvMTk3MC0wMS0wMS1maXJzdC10aXRsZS5tZCIsInNoYSI6ImEwNDEyNDU4MTQ4OTJlM2Y3M2Y2M2NhNTQzMzNmZGE2NDliN2ZjMGIifSwiZmlsZXMiOltdfSwidGltZVN0YW1wIjoiMTk3MC0wMS0wMVQwMDowMDowMC4zMDBaIn0=\",\"encoding\":\"base64\"}", + "method": "POST", + "url": "/repos/owner/repo/git/blobs?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:48:31 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "206", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4751", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"593016dc187ad124f8d7336e9cbef2a9\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/blobs/eb6475d76258f7d633b972813e85dadc193a9a7e", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BDC:15110:1862C30:1D9FE55:5D77A9AF", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"eb6475d76258f7d633b972813e85dadc193a9a7e\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/eb6475d76258f7d633b972813e85dadc193a9a7e\"\n}\n", + "status": 201 + }, + { + "body": "{\"operationName\":\"tree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"e2e1205d9fea06318455d49611f762a4a00ddca9\"},\"query\":\"query tree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n tree: object(oid: $sha) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:48:32 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4859", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7BE3:3ED82:185F88C:1DA5F5A:5D77A9B0", + "content-length": "260", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"tree\":{\"id\":\"MDY6Q29tbWl0MjA3NTcwODkwOmUyZTEyMDVkOWZlYTA2MzE4NDU1ZDQ5NjExZjc2MmE0YTAwZGRjYTk=\",\"sha\":\"e2e1205d9fea06318455d49611f762a4a00ddca9\",\"__typename\":\"Commit\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"statues\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"b527faae14e4894e20180b8ecd8118f4841b7a2e\"},\"query\":\"query statues($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n status {\\n id\\n contexts {\\n id\\n context\\n state\\n target_url: targetUrl\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:48:32 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4860", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7BE5:244E7:118DD77:156B3FF:5D77A9B0", + "content-length": "276", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDY6Q29tbWl0MjA3NTcwODkwOmI1MjdmYWFlMTRlNDg5NGUyMDE4MGI4ZWNkODExOGY0ODQxYjdhMmU=\",\"sha\":\"b527faae14e4894e20180b8ecd8118f4841b7a2e\",\"__typename\":\"Commit\",\"status\":null}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"commitTree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"e2e1205d9fea06318455d49611f762a4a00ddca9\"},\"query\":\"query commitTree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n commit: object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n tree {\\n ...ObjectParts\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:48:32 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4858", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7BE0:B4E0:1699F27:1B81B3E:5D77A9B0", + "content-length": "698", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"commit\":{\"id\":\"MDY6Q29tbWl0MjA3NTcwODkwOmUyZTEyMDVkOWZlYTA2MzE4NDU1ZDQ5NjExZjc2MmE0YTAwZGRjYTk=\",\"sha\":\"e2e1205d9fea06318455d49611f762a4a00ddca9\",\"__typename\":\"Commit\",\"tree\":{\"id\":\"MDQ6VHJlZTIwNzU3MDg5MDo4YWQ1YWZkY2U0OWE1MzA0ODFhOGVhYzMxZDE0MTM3ZDc0NDQ1NjRh\",\"sha\":\"8ad5afdce49a530481a8eac31d14137d7444564a\",\"__typename\":\"Tree\",\"entries\":[{\"path\":\"1970-01-01-first-title.json\",\"sha\":\"5df9cbd1489585c00df22345bd4302e3df7028e9\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"README.md\",\"sha\":\"98787d1bd948850444433e91a43091a76c4eb455\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"}]}}}}}\n", + "status": 200 + }, + { + "body": "{\"base_tree\":\"e2e1205d9fea06318455d49611f762a4a00ddca9\",\"tree\":[{\"path\":\"1970-01-01-first-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"eb6475d76258f7d633b972813e85dadc193a9a7e\"}]}", + "method": "POST", + "url": "/repos/owner/repo/git/trees?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:48:33 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "892", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4748", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"aa3b2ff5b97963457a9dc419756447c4\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/trees/ff024037868b678eb6c6761f62cd2a9daacbd59b", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BE9:1510E:AB42FE:D0AA1A:5D77A9B0", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"ff024037868b678eb6c6761f62cd2a9daacbd59b\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ff024037868b678eb6c6761f62cd2a9daacbd59b\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"eb6475d76258f7d633b972813e85dadc193a9a7e\",\n \"size\": 472,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/eb6475d76258f7d633b972813e85dadc193a9a7e\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"message\":\"Updating “1970-01-01-first-title” metadata\",\"tree\":\"ff024037868b678eb6c6761f62cd2a9daacbd59b\",\"parents\":[\"e2e1205d9fea06318455d49611f762a4a00ddca9\"]}", + "method": "POST", + "url": "/repos/owner/repo/git/commits?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:48:33 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "1505", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4746", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"ae7d25f37e223e8b92abde3202af9792\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/commits/6b40399fe606483a0b93225c4c61feb285f40e95", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BEC:9D1F:A1CD9F:C57223:5D77A9B1", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"6b40399fe606483a0b93225c4c61feb285f40e95\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NTcwODkwOjZiNDAzOTlmZTYwNjQ4M2EwYjkzMjI1YzRjNjFmZWIyODVmNDBlOTU=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/6b40399fe606483a0b93225c4c61feb285f40e95\",\n \"html_url\": \"https://github.com/owner/repo/commit/6b40399fe606483a0b93225c4c61feb285f40e95\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T13:48:33Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T13:48:33Z\"\n },\n \"tree\": {\n \"sha\": \"ff024037868b678eb6c6761f62cd2a9daacbd59b\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ff024037868b678eb6c6761f62cd2a9daacbd59b\"\n },\n \"message\": \"Updating “1970-01-01-first-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"e2e1205d9fea06318455d49611f762a4a00ddca9\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/e2e1205d9fea06318455d49611f762a4a00ddca9\",\n \"html_url\": \"https://github.com/owner/repo/commit/e2e1205d9fea06318455d49611f762a4a00ddca9\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "status": 201 + }, + { + "body": "{\"sha\":\"6b40399fe606483a0b93225c4c61feb285f40e95\",\"force\":false}", + "method": "PATCH", + "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:48:35 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4745", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"7a7d7a9aa041423ef7d63912514ab5af\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BEF:9D21:171F4DD:1C2A9F5:5D77A9B2", + "content-length": "482", + "connection": "keep-alive" + }, + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NTcwODkwOnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"6b40399fe606483a0b93225c4c61feb285f40e95\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/6b40399fe606483a0b93225c4c61feb285f40e95\"\n }\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:48:35 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4744", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"7a7d7a9aa041423ef7d63912514ab5af\"", + "Last-Modified": "Tue, 10 Sep 2019 13:47:48 GMT", + "X-Poll-Interval": "300", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BF7:B4DC:AACF22:CFBF3A:5D77A9B3", + "content-length": "482", + "connection": "keep-alive" + }, + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NTcwODkwOnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"6b40399fe606483a0b93225c4c61feb285f40e95\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/6b40399fe606483a0b93225c4c61feb285f40e95\"\n }\n}\n", + "status": 200 + }, + { + "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjQsImhlYWQiOiJiNTI3ZmFhZTE0ZTQ4OTRlMjAxODBiOGVjZDgxMThmNDg0MWI3YTJlIn0sInVzZXIiOiJvd25lciIsInN0YXR1cyI6InBlbmRpbmdfcmV2aWV3IiwiYnJhbmNoIjoiY21zLzE5NzAtMDEtMDEtZmlyc3QtdGl0bGUiLCJjb2xsZWN0aW9uIjoicG9zdHMiLCJjb21taXRNZXNzYWdlIjoiQ3JlYXRlIFBvc3Qg4oCcMTk3MC0wMS0wMS1maXJzdC10aXRsZeKAnSIsInRpdGxlIjoiZmlyc3QgdGl0bGUiLCJkZXNjcmlwdGlvbiI6ImZpcnN0IGRlc2NyaXB0aW9uIiwib2JqZWN0cyI6eyJlbnRyeSI6eyJwYXRoIjoiY29udGVudC9wb3N0cy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxlLm1kIiwic2hhIjoiYTA0MTI0NTgxNDg5MmUzZjczZjYzY2E1NDMzM2ZkYTY0OWI3ZmMwYiJ9LCJmaWxlcyI6W119LCJ0aW1lU3RhbXAiOiIxOTcwLTAxLTAxVDAwOjAwOjAwLjMwMFoifQ==\",\"encoding\":\"base64\"}", + "method": "POST", + "url": "/repos/owner/repo/git/blobs?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:48:36 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "206", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4743", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"194310649272970427a14315a3ec672e\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/blobs/5df9cbd1489585c00df22345bd4302e3df7028e9", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BFB:1510F:121B53A:15F8D46:5D77A9B3", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"5df9cbd1489585c00df22345bd4302e3df7028e9\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/5df9cbd1489585c00df22345bd4302e3df7028e9\"\n}\n", + "status": 201 + } +] \ No newline at end of file diff --git a/cypress/fixtures/Github Backend Editorial Workflow - GraphQL API__can create an entry.json b/cypress/fixtures/Github Backend Editorial Workflow - GraphQL API__can create an entry.json new file mode 100644 index 00000000..6f9aaca1 --- /dev/null +++ b/cypress/fixtures/Github Backend Editorial Workflow - GraphQL API__can create an entry.json @@ -0,0 +1,1238 @@ +[ + { + "body": "{\"operationName\":null,\"variables\":{},\"query\":\"{\\n viewer {\\n id\\n avatar_url: avatarUrl\\n name\\n login\\n __typename\\n }\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:44:37 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4990", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7B72:3ED7B:123979E:1621D84:5D77A8C4", + "content-length": "179", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"viewer\":{\"id\":\"MDQ6VXNlcjI2NzYwNTcx\",\"avatar_url\":\"https://avatars1.githubusercontent.com/u/7892489?v=4\",\"name\":\"owner\",\"login\":\"owner\",\"__typename\":\"User\"}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"repoPermission\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\"},\"query\":\"query repoPermission($owner: String!, $name: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n viewerPermission\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:44:38 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4989", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7B74:3ED77:A9CC1B:CDC707:5D77A8C5", + "content-length": "119", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"viewerPermission\":\"ADMIN\"}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"files\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"master:content/posts\"},\"query\":\"query files($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...FileEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment FileEntryParts on TreeEntry {\\n name\\n sha: oid\\n type\\n blob: object {\\n ... on Blob {\\n size: byteSize\\n __typename\\n }\\n __typename\\n }\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:44:39 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4988", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7B76:15110:184A1B3:1D818F0:5D77A8C6", + "content-length": "1218", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6VHJlZTIwNzU3MDg5MDozNDg5MjU3NWUyMTZjMDZlNzU3MDkzZjAzNmJkOGUwNTdjNzhhNTJm\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"__typename\":\"Tree\",\"entries\":[{\"name\":\"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\"sha\":\"6d51a38aed7139d2117724b1e307657b6ff2d043\",\"type\":\"blob\",\"blob\":{\"size\":1707,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\"sha\":\"d0582dd245a3f408fb3fe2333bf01400007476e9\",\"type\":\"blob\",\"blob\":{\"size\":2565,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2016-02-02---A-Brief-History-of-Typography.md\",\"sha\":\"0eea554365f002d0f1572af9a58522d335a794d5\",\"type\":\"blob\",\"blob\":{\"size\":2786,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2017-18-08---The-Birth-of-Movable-Type.md\",\"sha\":\"44f78c474d04273185a95821426f75affc9b0044\",\"type\":\"blob\",\"blob\":{\"size\":16071,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\"sha\":\"a532f0a9445cdf90a19c6812cff89d1674991774\",\"type\":\"blob\",\"blob\":{\"size\":7465,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"}]}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"files\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"master:static/media\"},\"query\":\"query files($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...FileEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment FileEntryParts on TreeEntry {\\n name\\n sha: oid\\n type\\n blob: object {\\n ... on Blob {\\n size: byteSize\\n __typename\\n }\\n __typename\\n }\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:44:39 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4987", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7B78:9D1D:18F348:1E7A2E:5D77A8C6", + "content-length": "1837", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6VHJlZTIwNzU3MDg5MDo5Yjc2OTliNTdlMTQzMDkxMGRiODI4MzFkY2Y2YjhhMWQxZGJkYWM5\",\"sha\":\"9b7699b57e1430910db82831dcf6b8a1d1dbdac9\",\"__typename\":\"Tree\",\"entries\":[{\"name\":\"42-line-bible.jpg\",\"sha\":\"41c8d12f9ca5864beb827c381fbeff935209d5fb\",\"type\":\"blob\",\"blob\":{\"size\":671242,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"gutenberg.jpg\",\"sha\":\"04315e355873ea5d358d9c371c39a6845c1ae4ae\",\"type\":\"blob\",\"blob\":{\"size\":155002,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-0.jpg\",\"sha\":\"b70a1b64fd4fa9635823231a0ba92c6dc9393f16\",\"type\":\"blob\",\"blob\":{\"size\":660287,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-1.jpg\",\"sha\":\"05eedae372b829c62501ac751b2d42dcc432541b\",\"type\":\"blob\",\"blob\":{\"size\":392411,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-2.jpg\",\"sha\":\"53845ed35faf8939bea242bb85eda7c324b1be0b\",\"type\":\"blob\",\"blob\":{\"size\":99147,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-3.jpg\",\"sha\":\"8b2339d97069e826fae1f156212e40ae458454e3\",\"type\":\"blob\",\"blob\":{\"size\":358022,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-4.jpg\",\"sha\":\"a8f6f21253a67a4284b5a953b2fe633d44152ecd\",\"type\":\"blob\",\"blob\":{\"size\":114837,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"movable-type.jpg\",\"sha\":\"57b4e925ea00bd8e195cf4418eb6eb2995ea5f10\",\"type\":\"blob\",\"blob\":{\"size\":559028,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"printing-press.jpg\",\"sha\":\"d27f56c9437d9becd2f56cc627c9322c2f1f61f6\",\"type\":\"blob\",\"blob\":{\"size\":279283,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"type-through-time.jpg\",\"sha\":\"3f08366a805c51a60ec5056010f22de4ba08abaa\",\"type\":\"blob\",\"blob\":{\"size\":117689,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"}]}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"6d51a38aed7139d2117724b1e307657b6ff2d043\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:44:40 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4986", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7B7C:9D21:1707CBB:1C0D8B9:5D77A8C7", + "content-length": "1973", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzU3MDg5MDo2ZDUxYTM4YWVkNzEzOWQyMTE3NzI0YjFlMzA3NjU3YjZmZjJkMDQz\",\"text\":\"---\\ntitle: Perfecting the Art of Perfection\\ndate: \\\"2016-09-01T23:46:37.121Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Design Inspiration\\\"\\ntags:\\n - \\\"Handwriting\\\"\\n - \\\"Learning to write\\\"\\ndescription: \\\"Quisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\\\"\\ncanonical: ''\\n---\\n\\nQuisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\\n\\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-2.jpg)\\n\\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. \\n\\nPraesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"44f78c474d04273185a95821426f75affc9b0044\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:44:40 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4985", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7B82:B4E0:1682428:1B64866:5D77A8C7", + "content-length": "16478", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzU3MDg5MDo0NGY3OGM0NzRkMDQyNzMxODVhOTU4MjE0MjZmNzVhZmZjOWIwMDQ0\",\"text\":\"---\\ntitle: \\\"Johannes Gutenberg: The Birth of Movable Type\\\"\\ndate: \\\"2017-08-18T22:12:03.284Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Typography\\\"\\ntags:\\n - \\\"Open source\\\"\\n - \\\"Gatsby\\\"\\n - \\\"Typography\\\"\\ndescription: \\\"German inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\\\"\\ncanonical: ''\\n---\\n\\nGerman inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\\n\\n**Johannes Gensfleisch zur Laden zum Gutenberg** (c. 1398 – 1468) was a German blacksmith, goldsmith, printer, and publisher who introduced printing to Europe. His invention of mechanical movable type printing started the Printing Revolution and is widely regarded as the most important event of the modern period. It played a key role in the development of the Renaissance, Reformation, the Age of Enlightenment, and the Scientific revolution and laid the material basis for the modern knowledge-based economy and the spread of learning to the masses.\\n\\n
\\n\\t\\\"Gutenberg\\\"\\n\\t
Johannes Gutenberg
\\n
\\n\\nWith his invention of the printing press, Gutenberg was the first European to use movable type printing, in around 1439. Among his many contributions to printing are: the invention of a process for mass-producing movable type; the use of oil-based ink; and the use of a wooden printing press similar to the agricultural screw presses of the period. His truly epochal invention was the combination of these elements into a practical system that allowed the mass production of printed books and was economically viable for printers and readers alike. Gutenberg's method for making type is traditionally considered to have included a type metal alloy and a hand mould for casting type. The alloy was a mixture of lead, tin, and antimony that melted at a relatively low temperature for faster and more economical casting, cast well, and created a durable type.\\n\\nIn Renaissance Europe, the arrival of mechanical movable type printing introduced the era of mass communication which permanently altered the structure of society. The relatively unrestricted circulation of information — including revolutionary ideas — transcended borders, captured the masses in the Reformation and threatened the power of political and religious authorities; the sharp increase in literacy broke the monopoly of the literate elite on education and learning and bolstered the emerging middle class. Across Europe, the increasing cultural self-awareness of its people led to the rise of proto-nationalism, accelerated by the flowering of the European vernacular languages to the detriment of Latin's status as lingua franca. In the 19th century, the replacement of the hand-operated Gutenberg-style press by steam-powered rotary presses allowed printing on an industrial scale, while Western-style printing was adopted all over the world, becoming practically the sole medium for modern bulk printing.\\n\\nThe use of movable type was a marked improvement on the handwritten manuscript, which was the existing method of book production in Europe, and upon woodblock printing, and revolutionized European book-making. Gutenberg's printing technology spread rapidly throughout Europe and later the world.\\n\\nHis major work, the Gutenberg Bible (also known as the 42-line Bible), has been acclaimed for its high aesthetic and technical quality.\\n\\n## Printing Press\\n\\nAround 1439, Gutenberg was involved in a financial misadventure making polished metal mirrors (which were believed to capture holy light from religious relics) for sale to pilgrims to Aachen: in 1439 the city was planning to exhibit its collection of relics from Emperor Charlemagne but the event was delayed by one year due to a severe flood and the capital already spent could not be repaid. When the question of satisfying the investors came up, Gutenberg is said to have promised to share a “secret”. It has been widely speculated that this secret may have been the idea of printing with movable type. Also around 1439–1440, the Dutch Laurens Janszoon Coster came up with the idea of printing. Legend has it that the idea came to him “like a ray of light”.\\n\\n
\\n\\t\\\"Early\\n\\t
Early wooden printing press as depicted in 1568.
\\n
\\n\\nUntil at least 1444 he lived in Strasbourg, most likely in the St. Arbogast parish. It was in Strasbourg in 1440 that Gutenberg is said to have perfected and unveiled the secret of printing based on his research, mysteriously entitled Kunst und Aventur (art and enterprise). It is not clear what work he was engaged in, or whether some early trials with printing from movable type may have been conducted there. After this, there is a gap of four years in the record. In 1448, he was back in Mainz, where he took out a loan from his brother-in-law Arnold Gelthus, quite possibly for a printing press or related paraphernalia. By this date, Gutenberg may have been familiar with intaglio printing; it is claimed that he had worked on copper engravings with an artist known as the Master of Playing Cards.\\n\\nBy 1450, the press was in operation, and a German poem had been printed, possibly the first item to be printed there. Gutenberg was able to convince the wealthy moneylender Johann Fust for a loan of 800 guilders. Peter Schöffer, who became Fust’s son-in-law, also joined the enterprise. Schöffer had worked as a scribe in Paris and is believed to have designed some of the first typefaces.\\n\\n
\\n\\t
\\n\\t\\t

All that has been written to me about that marvelous man seen at Frankfurt is true. I have not seen complete Bibles but only a number of quires of various books of the Bible. The script was very neat and legible, not at all difficult to follow—your grace would be able to read it without effort, and indeed without glasses.

\\n\\t\\t
\\n\\t\\t\\t—Future pope Pius II in a letter to Cardinal Carvajal, March 1455\\n\\t\\t
\\n\\t
\\n
\\n\\nGutenberg's workshop was set up at Hof Humbrecht, a property belonging to a distant relative. It is not clear when Gutenberg conceived the Bible project, but for this he borrowed another 800 guilders from Fust, and work commenced in 1452. At the same time, the press was also printing other, more lucrative texts (possibly Latin grammars). There is also some speculation that there may have been two presses, one for the pedestrian texts, and one for the Bible. One of the profit-making enterprises of the new press was the printing of thousands of indulgences for the church, documented from 1454–55.\\n\\nIn 1455 Gutenberg completed his 42-line Bible, known as the Gutenberg Bible. About 180 copies were printed, most on paper and some on vellum.\\n\\n## Court Case\\n\\nSome time in 1456, there was a dispute between Gutenberg and Fust, and Fust demanded his money back, accusing Gutenberg of misusing the funds. Meanwhile the expenses of the Bible project had proliferated, and Gutenberg's debt now exceeded 20,000 guilders. Fust sued at the archbishop's court. A November 1455 legal document records that there was a partnership for a \\\"project of the books,\\\" the funds for which Gutenberg had used for other purposes, according to Fust. The court decided in favor of Fust, giving him control over the Bible printing workshop and half of all printed Bibles.\\n\\nThus Gutenberg was effectively bankrupt, but it appears he retained (or re-started) a small printing shop, and participated in the printing of a Bible in the town of Bamberg around 1459, for which he seems at least to have supplied the type. But since his printed books never carry his name or a date, it is difficult to be certain, and there is consequently a considerable scholarly debate on this subject. It is also possible that the large Catholicon dictionary, 300 copies of 754 pages, printed in Mainz in 1460, may have been executed in his workshop.\\n\\nMeanwhile, the Fust–Schöffer shop was the first in Europe to bring out a book with the printer's name and date, the Mainz Psalter of August 1457, and while proudly proclaiming the mechanical process by which it had been produced, it made no mention of Gutenberg.\\n\\n## Later Life\\n\\nIn 1462, during a conflict between two archbishops, Mainz was sacked by archbishop Adolph von Nassau, and Gutenberg was exiled. An old man by now, he moved to Eltville where he may have initiated and supervised a new printing press belonging to the brothers Bechtermünze.\\n\\nIn January 1465, Gutenberg's achievements were recognized and he was given the title Hofmann (gentleman of the court) by von Nassau. This honor included a stipend, an annual court outfit, as well as 2,180 litres of grain and 2,000 litres of wine tax-free. It is believed he may have moved back to Mainz around this time, but this is not certain.\\n\\n***\\n\\nGutenberg died in 1468 and was buried in the Franciscan church at Mainz, his contributions largely unknown. This church and the cemetery were later destroyed, and Gutenberg's grave is now lost.\\n\\nIn 1504, he was mentioned as the inventor of typography in a book by Professor Ivo Wittig. It was not until 1567 that the first portrait of Gutenberg, almost certainly an imaginary reconstruction, appeared in Heinrich Pantaleon's biography of famous Germans.\\n\\n## Printing Method With Movable Type\\n\\nGutenberg's early printing process, and what tests he may have made with movable type, are not known in great detail. His later Bibles were printed in such a way as to have required large quantities of type, some estimates suggesting as many as 100,000 individual sorts. Setting each page would take, perhaps, half a day, and considering all the work in loading the press, inking the type, pulling the impressions, hanging up the sheets, distributing the type, etc., it is thought that the Gutenberg–Fust shop might have employed as many as 25 craftsmen.\\n\\n![Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5](/media/movable-type.jpg)\\n\\n*Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5*\\n\\nGutenberg's technique of making movable type remains unclear. In the following decades, punches and copper matrices became standardized in the rapidly disseminating printing presses across Europe. Whether Gutenberg used this sophisticated technique or a somewhat primitive version has been the subject of considerable debate.\\n\\nIn the standard process of making type, a hard metal punch (made by punchcutting, with the letter carved back to front) is hammered into a softer copper bar, creating a matrix. This is then placed into a hand-held mould and a piece of type, or \\\"sort\\\", is cast by filling the mould with molten type-metal; this cools almost at once, and the resulting piece of type can be removed from the mould. The matrix can be reused to create hundreds, or thousands, of identical sorts so that the same character appearing anywhere within the book will appear very uniform, giving rise, over time, to the development of distinct styles of typefaces or fonts. After casting, the sorts are arranged into type-cases, and used to make up pages which are inked and printed, a procedure which can be repeated hundreds, or thousands, of times. The sorts can be reused in any combination, earning the process the name of “movable type”.\\n\\nThe invention of the making of types with punch, matrix and mold has been widely attributed to Gutenberg. However, recent evidence suggests that Gutenberg's process was somewhat different. If he used the punch and matrix approach, all his letters should have been nearly identical, with some variations due to miscasting and inking. However, the type used in Gutenberg's earliest work shows other variations.\\n\\n
\\n\\t
\\n\\t\\t

It is a press, certainly, but a press from which shall flow in inexhaustible streams… Through it, god will spread his word.

\\n\\t\\t
\\n\\t\\t\\t—Johannes Gutenberg\\n\\t\\t
\\n\\t
\\n
\\n\\nIn 2001, the physicist Blaise Agüera y Arcas and Princeton librarian Paul Needham, used digital scans of a Papal bull in the Scheide Library, Princeton, to carefully compare the same letters (types) appearing in different parts of the printed text. The irregularities in Gutenberg's type, particularly in simple characters such as the hyphen, suggested that the variations could not have come from either ink smear or from wear and damage on the pieces of metal on the types themselves. While some identical types are clearly used on other pages, other variations, subjected to detailed image analysis, suggested that they could not have been produced from the same matrix. Transmitted light pictures of the page also appeared to reveal substructures in the type that could not arise from traditional punchcutting techniques. They hypothesized that the method may have involved impressing simple shapes to create alphabets in “cuneiform” style in a matrix made of some soft material, perhaps sand. Casting the type would destroy the mould, and the matrix would need to be recreated to make each additional sort. This could explain the variations in the type, as well as the substructures observed in the printed images.\\n\\nThus, they feel that “the decisive factor for the birth of typography”, the use of reusable moulds for casting type, might have been a more progressive process than was previously thought. They suggest that the additional step of using the punch to create a mould that could be reused many times was not taken until twenty years later, in the 1470s. Others have not accepted some or all of their suggestions, and have interpreted the evidence in other ways, and the truth of the matter remains very uncertain.\\n\\nA 1568 history by Hadrianus Junius of Holland claims that the basic idea of the movable type came to Gutenberg from Laurens Janszoon Coster via Fust, who was apprenticed to Coster in the 1430s and may have brought some of his equipment from Haarlem to Mainz. While Coster appears to have experimented with moulds and castable metal type, there is no evidence that he had actually printed anything with this technology. He was an inventor and a goldsmith. However, there is one indirect supporter of the claim that Coster might be the inventor. The author of the Cologne Chronicle of 1499 quotes Ulrich Zell, the first printer of Cologne, that printing was performed in Mainz in 1450, but that some type of printing of lower quality had previously occurred in the Netherlands. However, the chronicle does not mention the name of Coster, while it actually credits Gutenberg as the \\\"first inventor of printing\\\" in the very same passage (fol. 312). The first securely dated book by Dutch printers is from 1471, and the Coster connection is today regarded as a mere legend.\\n\\nThe 19th century printer and typefounder Fournier Le Jeune suggested that Gutenberg might not have been using type cast with a reusable matrix, but possibly wooden types that were carved individually. A similar suggestion was made by Nash in 2004. This remains possible, albeit entirely unproven.\\n\\nIt has also been questioned whether Gutenberg used movable types at all. In 2004, Italian professor Bruno Fabbiani claimed that examination of the 42-line Bible revealed an overlapping of letters, suggesting that Gutenberg did not in fact use movable type (individual cast characters) but rather used whole plates made from a system somewhat like a modern typewriter, whereby the letters were stamped successively into the plate and then printed. However, most specialists regard the occasional overlapping of type as caused by paper movement over pieces of type of slightly unequal height.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"d0582dd245a3f408fb3fe2333bf01400007476e9\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:44:40 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4984", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7B7E:1510F:120885A:15E1977:5D77A8C7", + "content-length": "2866", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzU3MDg5MDpkMDU4MmRkMjQ1YTNmNDA4ZmIzZmUyMzMzYmYwMTQwMDAwNzQ3NmU5\",\"text\":\"---\\ntitle: The Origins of Social Stationery Lettering\\ndate: \\\"2016-12-01T22:40:32.169Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Design Culture\\\"\\ndescription: \\\"Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante.\\\"\\ncanonical: ''\\n---\\n\\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \\n\\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\\n\\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-3.jpg)\\n\\n## Header Level 2\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \\n\\n
\\n\\t
\\n\\t\\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\\n\\t\\t
\\n\\t\\t\\t— Aliquam tincidunt mauris eu risus.\\n\\t\\t
\\n\\t
\\n
\\n\\n### Header Level 3\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\\n\\n```css\\n#header h1 a {\\n display: block;\\n width: 300px;\\n height: 80px;\\n}\\n```\\n\\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"0eea554365f002d0f1572af9a58522d335a794d5\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:44:40 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4983", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7B81:2B24:1790EFA:1CA50FF:5D77A8C7", + "content-length": "3102", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzU3MDg5MDowZWVhNTU0MzY1ZjAwMmQwZjE1NzJhZjlhNTg1MjJkMzM1YTc5NGQ1\",\"text\":\"---\\ntitle: \\\"A Brief History of Typography\\\"\\ndate: \\\"2016-02-02T22:40:32.169Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Design Inspiration\\\"\\ntags:\\n - \\\"Linotype\\\"\\n - \\\"Monotype\\\"\\n - \\\"History of typography\\\"\\n - \\\"Helvetica\\\"\\ndescription: \\\"Morbi in sem quis dui placerat ornare. Pellentesque odio nisi, euismod in, pharetra a, ultricies in, diam. Sed arcu. Cras consequat.\\\"\\ncanonical: ''\\n---\\n\\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \\n\\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\\n\\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-0.jpg)\\n\\n## Header Level 2\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \\n\\n
\\n\\t
\\n\\t\\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\\n\\t\\t
\\n\\t\\t\\t— Aliquam tincidunt mauris eu risus.\\n\\t\\t
\\n\\t
\\n
\\n\\n### Header Level 3\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\\n\\n```css\\n#header h1 a {\\n display: block;\\n width: 300px;\\n height: 80px;\\n}\\n```\\n\\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"a532f0a9445cdf90a19c6812cff89d1674991774\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:44:41 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4982", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7B96:1510E:AA833A:CFBC4D:5D77A8C9", + "content-length": "7803", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzU3MDg5MDphNTMyZjBhOTQ0NWNkZjkwYTE5YzY4MTJjZmY4OWQxNjc0OTkxNzc0\",\"text\":\"---\\ntitle: Humane Typography in the Digital Age\\ndate: \\\"2017-08-19T22:40:32.169Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Typography\\\"\\ntags:\\n - \\\"Design\\\"\\n - \\\"Typography\\\"\\n - \\\"Web Development\\\"\\ndescription: \\\"An Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\\\"\\ncanonical: ''\\n---\\n\\n- [The first transition](#the-first-transition)\\n- [The digital age](#the-digital-age)\\n- [Loss of humanity through transitions](#loss-of-humanity-through-transitions)\\n- [Chasing perfection](#chasing-perfection)\\n\\nAn Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\\n\\nThe typography of this industrial age was no longer handcrafted. Mass production and profit became more important. Quantity mattered more than the quality. The books and printed works in general lost a part of its humanity. The typefaces were not produced by craftsmen anymore. It was the machines printing and tying the books together now. The craftsmen had to let go of their craft and became a cog in the process. An extension of the industrial machine.\\n\\nBut the victory of the industrialism didn’t mean that the craftsmen were completely extinct. The two worlds continued to coexist independently. Each recognising the good in the other — the power of industrialism and the humanity of craftsmanship. This was the second transition that would strip typography of a part of its humanity. We have to go 500 years back in time to meet the first one.\\n\\n## The first transition\\n\\nA similar conflict emerged after the invention of the first printing press in Europe. Johannes Gutenberg invented movable type and used it to produce different compositions. His workshop could print up to 240 impressions per hour. Until then, the books were being copied by hand. All the books were handwritten and decorated with hand drawn ornaments and figures. A process of copying a book was long but each book, even a copy, was a work of art.\\n\\nThe first printed books were, at first, perceived as inferior to the handwritten ones. They were smaller and cheaper to produce. Movable type provided the printers with flexibility that allowed them to print books in languages other than Latin. Gill describes the transition to industrialism as something that people needed and wanted. Something similar happened after the first printed books emerged. People wanted books in a language they understood and they wanted books they could take with them. They were hungry for knowledge and printed books satisfied this hunger.\\n\\n![42-line-bible.jpg](/media/42-line-bible.jpg)\\n\\n*The 42–Line Bible, printed by Gutenberg.*\\n\\nBut, through this transition, the book lost a large part of its humanity. The machine took over most of the process but craftsmanship was still a part of it. The typefaces were cut manually by the first punch cutters. The paper was made by hand. The illustrations and ornaments were still being hand drawn. These were the remains of the craftsmanship that went almost extinct in the times of Eric Gill.\\n\\n## The digital age\\n\\nThe first transition took away a large part of humanity from written communication. Industrialisation, the second transition described by Eric Gill, took away most of what was left. But it’s the third transition that stripped it naked. Typefaces are faceless these days. They’re just fonts on our computers. Hardly anyone knows their stories. Hardly anyone cares. Flicking through thousands of typefaces and finding the “right one” is a matter of minutes.\\n\\n> In the new computer age the proliferation of typefaces and type manipulations represents a new level of visual pollution threatening our culture. Out of thousands of typefaces, all we need are a few basic ones, and trash the rest.\\n>\\n— Massimo Vignelli\\n\\nTypography is not about typefaces. It’s not about what looks best, it’s about what feels right. What communicates the message best. Typography, in its essence, is about the message. “Typographical design should perform optically what the speaker creates through voice and gesture of his thoughts.”, as El Lissitzky, a famous Russian typographer, put it.\\n\\n## Loss of humanity through transitions\\n\\nEach transition took away a part of humanity from written language. Handwritten books being the most humane form and the digital typefaces being the least. Overuse of Helvetica is a good example. Messages are being told in a typeface just because it’s a safe option. It’s always there. Everyone knows it but yet, nobody knows it. Stop someone on the street and ask him what Helvetica is? Ask a designer the same question. Ask him where it came from, when, why and who designed it. Most of them will fail to answer these questions. Most of them used it in their precious projects but they still don’t spot it in the street.\\n\\n
\\n\\t
\\n\\t\\t

Knowledge of the quality of a typeface is of the greatest importance for the functional, aesthetic and psychological effect.

\\n\\t\\t
\\n\\t\\t\\t— Josef Mueller-Brockmann\\n\\t\\t
\\n\\t
\\n
\\n\\nTypefaces don’t look handmade these days. And that’s all right. They don’t have to. Industrialism took that away from them and we’re fine with it. We’ve traded that part of humanity for a process that produces more books that are easier to read. That can’t be bad. And it isn’t.\\n\\n> Humane typography will often be comparatively rough and even uncouth; but while a certain uncouthness does not seriously matter in humane works, uncouthness has no excuse whatever in the productions of the machine.\\n>\\n> — Eric Gill\\n\\nWe’ve come close to “perfection” in the last five centuries. The letters are crisp and without rough edges. We print our compositions with high–precision printers on a high quality, machine made paper.\\n\\n![type-through-time.jpg](/media/type-through-time.jpg)\\n\\n*Type through 5 centuries.*\\n\\nWe lost a part of ourselves because of this chase after perfection. We forgot about the craftsmanship along the way. And the worst part is that we don’t care. The transition to the digital age made that clear. We choose typefaces like clueless zombies. There’s no meaning in our work. Type sizes, leading, margins… It’s all just a few clicks or lines of code. The message isn’t important anymore. There’s no more “why” behind the “what”.\\n\\n## Chasing perfection\\n\\nHuman beings aren’t perfect. Perfection is something that will always elude us. There will always be a small part of humanity in everything we do. No matter how small that part, we should make sure that it transcends the limits of the medium. We have to think about the message first. What typeface should we use and why? Does the typeface match the message and what we want to communicate with it? What will be the leading and why? Will there be more typefaces in our design? On what ground will they be combined? What makes our design unique and why? This is the part of humanity that is left in typography. It might be the last part. Are we really going to give it up?\\n\\n*Originally published by [Matej Latin](http://matejlatin.co.uk/) on [Medium](https://medium.com/design-notes/humane-typography-in-the-digital-age-9bd5c16199bd?ref=webdesignernews.com#.lygo82z0x).*\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/1970-01-01-first-title.json?ts=300&ref=refs/meta/_netlify_cms", + "headers": { + "Date": "Tue, 10 Sep 2019 13:44:44 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "404 Not Found", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4840", + "X-RateLimit-Reset": "1568126651", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B98:1510E:AA84F5:CFBE7C:5D77A8CB", + "content-length": "144", + "connection": "keep-alive" + }, + "response": "{\n \"message\": \"No commit found for the ref refs/meta/_netlify_cms\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/\"\n}\n", + "status": 404 + }, + { + "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"master:content/posts/1970-01-01-first-title.md\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:44:45 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4981", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7B9D:9D20:1127C07:14F9FCF:5D77A8CC", + "content-length": "106", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"object\":null}}}\n", + "status": 200 + }, + { + "body": "{\"content\":\"LS0tCnRlbXBsYXRlOiBwb3N0CnRpdGxlOiBmaXJzdCB0aXRsZQpkcmFmdDogdHJ1ZQpkYXRlOiAxOTcwLTAxLTAxVDAwOjAwOjAwLjAwMFoKZGVzY3JpcHRpb246IGZpcnN0IGRlc2NyaXB0aW9uCmNhdGVnb3J5OiBmaXJzdCBjYXRlZ29yeQp0YWdzOgogIC0gdGFnMQotLS0KZmlyc3QgYm9keQo=\",\"encoding\":\"base64\"}", + "method": "POST", + "url": "/repos/owner/repo/git/blobs?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:44:46 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "206", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4839", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"a5ec4a37015a9eeb405300b3095fb5c9\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B9F:2B1F:11FE478:15F44D8:5D77A8CD", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"a041245814892e3f73f63ca54333fda649b7fc0b\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b\"\n}\n", + "status": 201 + }, + { + "body": "{\"operationName\":\"branch\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"qualifiedName\":\"refs/heads/master\"},\"query\":\"query branch($owner: String!, $name: String!, $qualifiedName: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n branch: ref(qualifiedName: $qualifiedName) {\\n ...BranchParts\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BranchParts on Ref {\\n commit: target {\\n ...ObjectParts\\n __typename\\n }\\n id\\n name\\n repository {\\n ...RepositoryParts\\n __typename\\n }\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:44:47 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4980", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7BA0:244E1:50C061:616C35:5D77A8CE", + "content-length": "429", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"branch\":{\"commit\":{\"id\":\"MDY6Q29tbWl0MjA3NTcwODkwOjcyNjE3MmRlYWU5OWM4YTJjZWE0YzcxZTczNGEwMmE3OTNkNGQ5ZTU=\",\"sha\":\"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\"__typename\":\"Commit\"},\"id\":\"MDM6UmVmMjA3NTcwODkwOm1hc3Rlcg==\",\"name\":\"master\",\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\"},\"__typename\":\"Ref\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"tree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"726172deae99c8a2cea4c71e734a02a793d4d9e5\"},\"query\":\"query tree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n tree: object(oid: $sha) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:44:48 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4979", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7BA4:9D21:17088C3:1C0E785:5D77A8CF", + "content-length": "260", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"tree\":{\"id\":\"MDY6Q29tbWl0MjA3NTcwODkwOjcyNjE3MmRlYWU5OWM4YTJjZWE0YzcxZTczNGEwMmE3OTNkNGQ5ZTU=\",\"sha\":\"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\"__typename\":\"Commit\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"commitTree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"726172deae99c8a2cea4c71e734a02a793d4d9e5\"},\"query\":\"query commitTree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n commit: object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n tree {\\n ...ObjectParts\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:44:48 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4978", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7BA2:1510D:461615:55EFE5:5D77A8CF", + "content-length": "5040", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"commit\":{\"id\":\"MDY6Q29tbWl0MjA3NTcwODkwOjcyNjE3MmRlYWU5OWM4YTJjZWE0YzcxZTczNGEwMmE3OTNkNGQ5ZTU=\",\"sha\":\"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\"__typename\":\"Commit\",\"tree\":{\"id\":\"MDQ6VHJlZTIwNzU3MDg5MDpjNWI3ZjZkNjc0YmExOTNiYjdiNGE1ZmNmNDkzMzAzNGUxYjdmMmI3\",\"sha\":\"c5b7f6d674ba193bb7b4a5fcf4933034e1b7f2b7\",\"__typename\":\"Tree\",\"entries\":[{\"path\":\".circleci\",\"sha\":\"e5e9af3301cac61f120b8e4d40b1733c7a45685a\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\".eslintignore\",\"sha\":\"80b4531b026d19f8fa589efd122e76199d23f967\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".eslintrc.js\",\"sha\":\"370684994aaed5b858da3a006f48cfa57e88fd27\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".flowconfig\",\"sha\":\"14aa2ac4cc0e15223ad98630a6f1325fc81f8043\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".gitattributes\",\"sha\":\"10a369ddf4f603337cabc6f21646508323941ce1\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".github\",\"sha\":\"4ebeece548b52b20af59622354530a6d33b50b43\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\".gitignore\",\"sha\":\"c071ba35b0e49899bab6d610a68eef667dbbf157\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".prettierignore\",\"sha\":\"393f050e123d998cf8c8b362ff95cc8ac4d250e5\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".prettierrc\",\"sha\":\"e52ad05bb13b084d7949dd76e1b2517455162150\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".stylelintrc.json\",\"sha\":\"4b4c9698d10d756f5faa025659b86375428ed0a7\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".vscode\",\"sha\":\"286e97ec0113ea8242b41ac222e2c3e8077e6f1e\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"CHANGELOG.md\",\"sha\":\"070a5d4f0eacd2dc0be81ae8996f8982de43046e\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"CODE_OF_CONDUCT.md\",\"sha\":\"92bc7565ff0ee145a0041b5179a820f14f39ab22\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"CONTRIBUTING.md\",\"sha\":\"8552aa241254a61258e1ff9666ab36f32fb1e3b9\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"LICENSE\",\"sha\":\"42d85938357b49977c126ca03b199129082d4fb8\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"README.md\",\"sha\":\"19df50a78654c8d757ca7f38447aa3d09c7abcce\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"backend\",\"sha\":\"b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"config.js\",\"sha\":\"58afd573bbb69fcca000efd0f5d90b93c93a98dd\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"content\",\"sha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"flow-typed\",\"sha\":\"86c32fd6c3118be5e0dbbb231a834447357236c6\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"flow\",\"sha\":\"0af45ad00d155c8d8c7407d913ff85278244c9ce\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"gatsby-browser.js\",\"sha\":\"9bd2c9dce175f04980e91cd9dc295a299e3cdb80\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"gatsby-config.js\",\"sha\":\"353a109dad62e3f25bf9f5e6a2167f21a6c8b459\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"gatsby-node.js\",\"sha\":\"14a207883c2093d2cc071bc5a464e165bcc1fead\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"gatsby\",\"sha\":\"4f23c06cd1740bf78304d2c0b29bf6bfdf427981\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"jest\",\"sha\":\"5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"netlify.toml\",\"sha\":\"599b99cc5700404fde316a7ede829776f23e7d45\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"package.json\",\"sha\":\"9d777616438b90a18f1a4ebfd5f114b4c06c6f17\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"postcss-config.js\",\"sha\":\"d216501e9b351a72e00ba0b7459a6500e27e7da2\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"renovate.json\",\"sha\":\"dcc309398785698b8870545c32051a3d72dd8271\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"serverless-scripts\",\"sha\":\"ee3701f2fbfc7196ba340f6481d1387d20527898\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"serverless-single-page-app-plugin\",\"sha\":\"08763fcfba643a06a452398517019bea4a5850ba\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"serverless.yml\",\"sha\":\"20b22c5fad229f35d029bf6614d333d82fe8a987\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"src\",\"sha\":\"8cdb35a88232c0f32f12f130c92c7cc55f97f471\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"static\",\"sha\":\"53c6380a600a030d3722bff7ecde36f749fb6964\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"utils\",\"sha\":\"a592549c9f74db40b51efefcda2fd76810405f27\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"yarn.lock\",\"sha\":\"475c9c1924ca752a0686303e2fdeb7b13ad75f57\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"}]}}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"tree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\"},\"query\":\"query tree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n tree: object(oid: $sha) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:44:49 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4977", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7BA8:2B19:A78A69:CBE68D:5D77A8D0", + "content-length": "502", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"tree\":{\"id\":\"MDQ6VHJlZTIwNzU3MDg5MDowMjk0ZWYxMDZjNTg3NDM5MDdhNWM4NTVkYTFlYjBmODdiMGI2ZGZj\",\"sha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\"__typename\":\"Tree\",\"entries\":[{\"path\":\"pages\",\"sha\":\"1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"posts\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"}]}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"commitTree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\"},\"query\":\"query commitTree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n commit: object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n tree {\\n ...ObjectParts\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:44:49 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4976", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7BA6:B4DA:516E2E:635707:5D77A8D0", + "content-length": "256", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"commit\":{\"id\":\"MDQ6VHJlZTIwNzU3MDg5MDowMjk0ZWYxMDZjNTg3NDM5MDdhNWM4NTVkYTFlYjBmODdiMGI2ZGZj\",\"sha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\"__typename\":\"Tree\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"tree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\"},\"query\":\"query tree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n tree: object(oid: $sha) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:44:50 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4975", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7B60:1510C:179906:1CE0C8:5D77A8D1", + "content-length": "1075", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"tree\":{\"id\":\"MDQ6VHJlZTIwNzU3MDg5MDozNDg5MjU3NWUyMTZjMDZlNzU3MDkzZjAzNmJkOGUwNTdjNzhhNTJm\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"__typename\":\"Tree\",\"entries\":[{\"path\":\"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\"sha\":\"6d51a38aed7139d2117724b1e307657b6ff2d043\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\"sha\":\"d0582dd245a3f408fb3fe2333bf01400007476e9\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"2016-02-02---A-Brief-History-of-Typography.md\",\"sha\":\"0eea554365f002d0f1572af9a58522d335a794d5\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"2017-18-08---The-Birth-of-Movable-Type.md\",\"sha\":\"44f78c474d04273185a95821426f75affc9b0044\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\"sha\":\"a532f0a9445cdf90a19c6812cff89d1674991774\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"}]}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"commitTree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\"},\"query\":\"query commitTree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n commit: object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n tree {\\n ...ObjectParts\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:44:50 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4974", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7B5E:244E7:117D1C2:1556646:5D77A8D1", + "content-length": "256", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"commit\":{\"id\":\"MDQ6VHJlZTIwNzU3MDg5MDozNDg5MjU3NWUyMTZjMDZlNzU3MDkzZjAzNmJkOGUwNTdjNzhhNTJm\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"__typename\":\"Tree\"}}}}\n", + "status": 200 + }, + { + "body": "{\"base_tree\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"tree\":[{\"path\":\"1970-01-01-first-title.md\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"a041245814892e3f73f63ca54333fda649b7fc0b\"}]}", + "method": "POST", + "url": "/repos/owner/repo/git/trees?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:44:51 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "2355", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4838", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"04d8c1d18d9458006d19b6d3b470f959\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B62:3ED82:1847356:1D8820D:5D77A8D2", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a041245814892e3f73f63ca54333fda649b7fc0b\",\n \"size\": 167,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b\"\n },\n {\n \"path\": \"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"size\": 1707,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\"\n },\n {\n \"path\": \"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"size\": 2565,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\"\n },\n {\n \"path\": \"2016-02-02---A-Brief-History-of-Typography.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"0eea554365f002d0f1572af9a58522d335a794d5\",\n \"size\": 2786,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\"\n },\n {\n \"path\": \"2017-18-08---The-Birth-of-Movable-Type.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"44f78c474d04273185a95821426f75affc9b0044\",\n \"size\": 16071,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\"\n },\n {\n \"path\": \"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"size\": 7465,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"base_tree\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\"tree\":[{\"path\":\"posts\",\"mode\":\"040000\",\"type\":\"tree\",\"sha\":\"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\"parentSha\":\"34892575e216c06e757093f036bd8e057c78a52f\"}]}", + "method": "POST", + "url": "/repos/owner/repo/git/trees?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:44:52 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "828", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4837", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"44a8b3dc9f6d05e9ab92c5a4b2a88d1c\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B64:244E1:50C240:616E96:5D77A8D4", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"tree\": [\n {\n \"path\": \"pages\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\"\n },\n {\n \"path\": \"posts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"base_tree\":\"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\"tree\":[{\"path\":\"content\",\"mode\":\"040000\",\"type\":\"tree\",\"sha\":\"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\"parentSha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\"}]}", + "method": "POST", + "url": "/repos/owner/repo/git/trees?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:44:53 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "11731", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4836", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"a4b7f86984e19e3dea0bb083fa1dce76\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/trees/daee8d5d15d144e8779955166a2afeccde2770e1", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B66:244EB:17D55DC:1CF1CC5:5D77A8D5", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"daee8d5d15d144e8779955166a2afeccde2770e1\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/daee8d5d15d144e8779955166a2afeccde2770e1\",\n \"tree\": [\n {\n \"path\": \".circleci\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"e5e9af3301cac61f120b8e4d40b1733c7a45685a\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/e5e9af3301cac61f120b8e4d40b1733c7a45685a\"\n },\n {\n \"path\": \".eslintignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"80b4531b026d19f8fa589efd122e76199d23f967\",\n \"size\": 39,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/80b4531b026d19f8fa589efd122e76199d23f967\"\n },\n {\n \"path\": \".eslintrc.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"370684994aaed5b858da3a006f48cfa57e88fd27\",\n \"size\": 414,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/370684994aaed5b858da3a006f48cfa57e88fd27\"\n },\n {\n \"path\": \".flowconfig\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14aa2ac4cc0e15223ad98630a6f1325fc81f8043\",\n \"size\": 283,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14aa2ac4cc0e15223ad98630a6f1325fc81f8043\"\n },\n {\n \"path\": \".gitattributes\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"10a369ddf4f603337cabc6f21646508323941ce1\",\n \"size\": 135,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/10a369ddf4f603337cabc6f21646508323941ce1\"\n },\n {\n \"path\": \".github\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4ebeece548b52b20af59622354530a6d33b50b43\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4ebeece548b52b20af59622354530a6d33b50b43\"\n },\n {\n \"path\": \".gitignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"c071ba35b0e49899bab6d610a68eef667dbbf157\",\n \"size\": 169,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/c071ba35b0e49899bab6d610a68eef667dbbf157\"\n },\n {\n \"path\": \".prettierignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"393f050e123d998cf8c8b362ff95cc8ac4d250e5\",\n \"size\": 45,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/393f050e123d998cf8c8b362ff95cc8ac4d250e5\"\n },\n {\n \"path\": \".prettierrc\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e52ad05bb13b084d7949dd76e1b2517455162150\",\n \"size\": 223,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/e52ad05bb13b084d7949dd76e1b2517455162150\"\n },\n {\n \"path\": \".stylelintrc.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"4b4c9698d10d756f5faa025659b86375428ed0a7\",\n \"size\": 718,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/4b4c9698d10d756f5faa025659b86375428ed0a7\"\n },\n {\n \"path\": \".vscode\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"286e97ec0113ea8242b41ac222e2c3e8077e6f1e\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/286e97ec0113ea8242b41ac222e2c3e8077e6f1e\"\n },\n {\n \"path\": \"CHANGELOG.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"070a5d4f0eacd2dc0be81ae8996f8982de43046e\",\n \"size\": 2113,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/070a5d4f0eacd2dc0be81ae8996f8982de43046e\"\n },\n {\n \"path\": \"CODE_OF_CONDUCT.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"92bc7565ff0ee145a0041b5179a820f14f39ab22\",\n \"size\": 3355,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/92bc7565ff0ee145a0041b5179a820f14f39ab22\"\n },\n {\n \"path\": \"CONTRIBUTING.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"8552aa241254a61258e1ff9666ab36f32fb1e3b9\",\n \"size\": 3548,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/8552aa241254a61258e1ff9666ab36f32fb1e3b9\"\n },\n {\n \"path\": \"LICENSE\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"42d85938357b49977c126ca03b199129082d4fb8\",\n \"size\": 1091,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/42d85938357b49977c126ca03b199129082d4fb8\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"19df50a78654c8d757ca7f38447aa3d09c7abcce\",\n \"size\": 3698,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/19df50a78654c8d757ca7f38447aa3d09c7abcce\"\n },\n {\n \"path\": \"backend\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\"\n },\n {\n \"path\": \"config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"58afd573bbb69fcca000efd0f5d90b93c93a98dd\",\n \"size\": 853,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/58afd573bbb69fcca000efd0f5d90b93c93a98dd\"\n },\n {\n \"path\": \"content\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639\"\n },\n {\n \"path\": \"flow-typed\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"86c32fd6c3118be5e0dbbb231a834447357236c6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/86c32fd6c3118be5e0dbbb231a834447357236c6\"\n },\n {\n \"path\": \"flow\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"0af45ad00d155c8d8c7407d913ff85278244c9ce\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/0af45ad00d155c8d8c7407d913ff85278244c9ce\"\n },\n {\n \"path\": \"gatsby-browser.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9bd2c9dce175f04980e91cd9dc295a299e3cdb80\",\n \"size\": 90,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9bd2c9dce175f04980e91cd9dc295a299e3cdb80\"\n },\n {\n \"path\": \"gatsby-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"353a109dad62e3f25bf9f5e6a2167f21a6c8b459\",\n \"size\": 7228,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/353a109dad62e3f25bf9f5e6a2167f21a6c8b459\"\n },\n {\n \"path\": \"gatsby-node.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14a207883c2093d2cc071bc5a464e165bcc1fead\",\n \"size\": 409,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14a207883c2093d2cc071bc5a464e165bcc1fead\"\n },\n {\n \"path\": \"gatsby\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4f23c06cd1740bf78304d2c0b29bf6bfdf427981\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4f23c06cd1740bf78304d2c0b29bf6bfdf427981\"\n },\n {\n \"path\": \"jest\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\"\n },\n {\n \"path\": \"netlify.toml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"599b99cc5700404fde316a7ede829776f23e7d45\",\n \"size\": 137,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/599b99cc5700404fde316a7ede829776f23e7d45\"\n },\n {\n \"path\": \"package.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9d777616438b90a18f1a4ebfd5f114b4c06c6f17\",\n \"size\": 6855,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9d777616438b90a18f1a4ebfd5f114b4c06c6f17\"\n },\n {\n \"path\": \"postcss-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d216501e9b351a72e00ba0b7459a6500e27e7da2\",\n \"size\": 703,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d216501e9b351a72e00ba0b7459a6500e27e7da2\"\n },\n {\n \"path\": \"renovate.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"dcc309398785698b8870545c32051a3d72dd8271\",\n \"size\": 460,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/dcc309398785698b8870545c32051a3d72dd8271\"\n },\n {\n \"path\": \"serverless-scripts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ee3701f2fbfc7196ba340f6481d1387d20527898\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ee3701f2fbfc7196ba340f6481d1387d20527898\"\n },\n {\n \"path\": \"serverless-single-page-app-plugin\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"08763fcfba643a06a452398517019bea4a5850ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/08763fcfba643a06a452398517019bea4a5850ba\"\n },\n {\n \"path\": \"serverless.yml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"20b22c5fad229f35d029bf6614d333d82fe8a987\",\n \"size\": 7803,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/20b22c5fad229f35d029bf6614d333d82fe8a987\"\n },\n {\n \"path\": \"src\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"8cdb35a88232c0f32f12f130c92c7cc55f97f471\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/8cdb35a88232c0f32f12f130c92c7cc55f97f471\"\n },\n {\n \"path\": \"static\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"53c6380a600a030d3722bff7ecde36f749fb6964\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/53c6380a600a030d3722bff7ecde36f749fb6964\"\n },\n {\n \"path\": \"utils\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"a592549c9f74db40b51efefcda2fd76810405f27\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/a592549c9f74db40b51efefcda2fd76810405f27\"\n },\n {\n \"path\": \"yarn.lock\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"475c9c1924ca752a0686303e2fdeb7b13ad75f57\",\n \"size\": 793903,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/475c9c1924ca752a0686303e2fdeb7b13ad75f57\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"message\":\"Create Post “1970-01-01-first-title”\",\"tree\":\"daee8d5d15d144e8779955166a2afeccde2770e1\",\"parents\":[\"726172deae99c8a2cea4c71e734a02a793d4d9e5\"]}", + "method": "POST", + "url": "/repos/owner/repo/git/commits?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:44:55 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "1499", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4835", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"641bd7447f43c87d150b28799082a5ec\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/commits/e44955f384457e8d83755edefd79c68a2635a91b", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B69:15110:184BA8A:1D837C6:5D77A8D6", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"e44955f384457e8d83755edefd79c68a2635a91b\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NTcwODkwOmU0NDk1NWYzODQ0NTdlOGQ4Mzc1NWVkZWZkNzljNjhhMjYzNWE5MWI=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/e44955f384457e8d83755edefd79c68a2635a91b\",\n \"html_url\": \"https://github.com/owner/repo/commit/e44955f384457e8d83755edefd79c68a2635a91b\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T13:44:54Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T13:44:54Z\"\n },\n \"tree\": {\n \"sha\": \"daee8d5d15d144e8779955166a2afeccde2770e1\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/daee8d5d15d144e8779955166a2afeccde2770e1\"\n },\n \"message\": \"Create Post “1970-01-01-first-title”\",\n \"parents\": [\n {\n \"sha\": \"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"html_url\": \"https://github.com/owner/repo/commit/726172deae99c8a2cea4c71e734a02a793d4d9e5\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "status": 201 + }, + { + "body": "{\"operationName\":\"createBranchAndPullRequest\",\"variables\":{\"createRefInput\":{\"name\":\"refs/heads/cms/1970-01-01-first-title\",\"oid\":\"e44955f384457e8d83755edefd79c68a2635a91b\",\"repositoryId\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\"},\"createPullRequestInput\":{\"baseRefName\":\"master\",\"body\":\"Automatically generated by Netlify CMS\",\"title\":\"Create Post “1970-01-01-first-title”\",\"headRefName\":\"cms/1970-01-01-first-title\",\"repositoryId\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\"}},\"query\":\"mutation createBranchAndPullRequest($createRefInput: CreateRefInput!, $createPullRequestInput: CreatePullRequestInput!) {\\n createRef(input: $createRefInput) {\\n branch: ref {\\n ...BranchParts\\n __typename\\n }\\n __typename\\n }\\n createPullRequest(input: $createPullRequestInput) {\\n clientMutationId\\n pullRequest {\\n ...PullRequestParts\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment BranchParts on Ref {\\n commit: target {\\n ...ObjectParts\\n __typename\\n }\\n id\\n name\\n repository {\\n ...RepositoryParts\\n __typename\\n }\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment PullRequestParts on PullRequest {\\n id\\n baseRefName\\n body\\n headRefName\\n headRefOid\\n number\\n state\\n title\\n merged_at: mergedAt\\n repository {\\n ...RepositoryParts\\n __typename\\n }\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:44:57 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4973", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7B6B:B4E0:1683C6C:1B6665C:5D77A8D7", + "content-length": "952", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"createRef\":{\"branch\":{\"commit\":{\"id\":\"MDY6Q29tbWl0MjA3NTcwODkwOmU0NDk1NWYzODQ0NTdlOGQ4Mzc1NWVkZWZkNzljNjhhMjYzNWE5MWI=\",\"sha\":\"e44955f384457e8d83755edefd79c68a2635a91b\",\"__typename\":\"Commit\"},\"id\":\"MDM6UmVmMjA3NTcwODkwOmNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxl\",\"name\":\"cms/1970-01-01-first-title\",\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\"},\"__typename\":\"Ref\"},\"__typename\":\"CreateRefPayload\"},\"createPullRequest\":{\"clientMutationId\":null,\"pullRequest\":{\"id\":\"MDExOlB1bGxSZXF1ZXN0MzE2MDAyNDk3\",\"baseRefName\":\"master\",\"body\":\"Automatically generated by Netlify CMS\",\"headRefName\":\"cms/1970-01-01-first-title\",\"headRefOid\":\"e44955f384457e8d83755edefd79c68a2635a91b\",\"number\":1,\"state\":\"OPEN\",\"title\":\"Create Post “1970-01-01-first-title”\",\"merged_at\":null,\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\"},\"__typename\":\"PullRequest\"},\"__typename\":\"CreatePullRequestPayload\"}}}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:44:58 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "404 Not Found", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4834", + "X-RateLimit-Reset": "1568126651", + "X-Poll-Interval": "300", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B6C:3ED82:1847F5E:1D890D9:5D77A8D9", + "content-length": "113", + "connection": "keep-alive" + }, + "response": "{\n \"message\": \"Not Found\",\n \"documentation_url\": \"https://developer.github.com/v3/git/refs/#get-a-reference\"\n}\n", + "status": 404 + }, + { + "body": "{\"content\":\"IyBOZXRsaWZ5IENNUwoKVGhpcyB0cmVlIGlzIHVzZWQgYnkgdGhlIE5ldGxpZnkgQ01TIHRvIHN0b3JlIG1ldGFkYXRhIGluZm9ybWF0aW9uIGZvciBzcGVjaWZpYyBmaWxlcyBhbmQgYnJhbmNoZXMu\",\"encoding\":\"base64\"}", + "method": "POST", + "url": "/repos/owner/repo/git/blobs?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:44:59 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "206", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4833", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"8d00b96e6d961e885c4330355b1c6bf9\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B6E:2B1F:11FF51E:15F596F:5D77A8DA", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n}\n", + "status": 201 + }, + { + "body": "{\"tree\":[{\"path\":\"README.md\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"98787d1bd948850444433e91a43091a76c4eb455\"}]}", + "method": "POST", + "url": "/repos/owner/repo/git/trees?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:45:01 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "559", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4832", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"89438b983d065b0be3f5f57b7481bfbe\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/trees/77d01c8bf1e79f9fb17c60fe405ce741bb4eb0a6", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B71:B4E0:16843B1:1B66F74:5D77A8DC", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"77d01c8bf1e79f9fb17c60fe405ce741bb4eb0a6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/77d01c8bf1e79f9fb17c60fe405ce741bb4eb0a6\",\n \"tree\": [\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"message\":\"First Commit\",\"tree\":\"77d01c8bf1e79f9fb17c60fe405ce741bb4eb0a6\",\"parents\":[]}", + "method": "POST", + "url": "/repos/owner/repo/git/commits?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:45:02 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "1102", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4831", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"8b6e1a0b177b132620e6eebd74a2b84a\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/commits/4167755aabd4e2be9e05fc7f39fd2818edc10850", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B72:3ED76:4775A3:5791B6:5D77A8DD", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"4167755aabd4e2be9e05fc7f39fd2818edc10850\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NTcwODkwOjQxNjc3NTVhYWJkNGUyYmU5ZTA1ZmM3ZjM5ZmQyODE4ZWRjMTA4NTA=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/4167755aabd4e2be9e05fc7f39fd2818edc10850\",\n \"html_url\": \"https://github.com/owner/repo/commit/4167755aabd4e2be9e05fc7f39fd2818edc10850\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T13:45:02Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T13:45:02Z\"\n },\n \"tree\": {\n \"sha\": \"77d01c8bf1e79f9fb17c60fe405ce741bb4eb0a6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/77d01c8bf1e79f9fb17c60fe405ce741bb4eb0a6\"\n },\n \"message\": \"First Commit\",\n \"parents\": [\n\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "status": 201 + }, + { + "body": "{\"ref\":\"refs/meta/_netlify_cms\",\"sha\":\"4167755aabd4e2be9e05fc7f39fd2818edc10850\"}", + "method": "POST", + "url": "/repos/owner/repo/git/refs?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:45:04 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "482", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4830", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"8d5cfeda70af21693644da7befe6f170\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "Location": "https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B74:3ED7B:123B9BB:16247AC:5D77A8DE", + "connection": "keep-alive" + }, + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NTcwODkwOnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"4167755aabd4e2be9e05fc7f39fd2818edc10850\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/4167755aabd4e2be9e05fc7f39fd2818edc10850\"\n }\n}\n", + "status": 201 + }, + { + "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjEsImhlYWQiOiJlNDQ5NTVmMzg0NDU3ZThkODM3NTVlZGVmZDc5YzY4YTI2MzVhOTFiIn0sInVzZXIiOiJvd25lciIsInN0YXR1cyI6ImRyYWZ0IiwiYnJhbmNoIjoiY21zLzE5NzAtMDEtMDEtZmlyc3QtdGl0bGUiLCJjb2xsZWN0aW9uIjoicG9zdHMiLCJjb21taXRNZXNzYWdlIjoiQ3JlYXRlIFBvc3Qg4oCcMTk3MC0wMS0wMS1maXJzdC10aXRsZeKAnSIsInRpdGxlIjoiZmlyc3QgdGl0bGUiLCJkZXNjcmlwdGlvbiI6ImZpcnN0IGRlc2NyaXB0aW9uIiwib2JqZWN0cyI6eyJlbnRyeSI6eyJwYXRoIjoiY29udGVudC9wb3N0cy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxlLm1kIiwic2hhIjoiYTA0MTI0NTgxNDg5MmUzZjczZjYzY2E1NDMzM2ZkYTY0OWI3ZmMwYiJ9LCJmaWxlcyI6W119LCJ0aW1lU3RhbXAiOiIxOTcwLTAxLTAxVDAwOjAwOjAwLjMwMFoifQ==\",\"encoding\":\"base64\"}", + "method": "POST", + "url": "/repos/owner/repo/git/blobs?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:45:05 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "206", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4829", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"ec8f37aca0101d84cf19569f01e98030\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/blobs/6b6cd2caffbba193d9a8a9269d8a4c7b588a0686", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B76:1510F:120A870:15E418B:5D77A8E0", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"6b6cd2caffbba193d9a8a9269d8a4c7b588a0686\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/6b6cd2caffbba193d9a8a9269d8a4c7b588a0686\"\n}\n", + "status": 201 + }, + { + "body": "{\"operationName\":\"commitTree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"4167755aabd4e2be9e05fc7f39fd2818edc10850\"},\"query\":\"query commitTree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n commit: object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n tree {\\n ...ObjectParts\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:45:06 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4972", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7B78:9D1E:4A7822:5B219D:5D77A8E1", + "content-length": "558", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"commit\":{\"id\":\"MDY6Q29tbWl0MjA3NTcwODkwOjQxNjc3NTVhYWJkNGUyYmU5ZTA1ZmM3ZjM5ZmQyODE4ZWRjMTA4NTA=\",\"sha\":\"4167755aabd4e2be9e05fc7f39fd2818edc10850\",\"__typename\":\"Commit\",\"tree\":{\"id\":\"MDQ6VHJlZTIwNzU3MDg5MDo3N2QwMWM4YmYxZTc5ZjlmYjE3YzYwZmU0MDVjZTc0MWJiNGViMGE2\",\"sha\":\"77d01c8bf1e79f9fb17c60fe405ce741bb4eb0a6\",\"__typename\":\"Tree\",\"entries\":[{\"path\":\"README.md\",\"sha\":\"98787d1bd948850444433e91a43091a76c4eb455\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"}]}}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"tree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"4167755aabd4e2be9e05fc7f39fd2818edc10850\"},\"query\":\"query tree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n tree: object(oid: $sha) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:45:06 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4971", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7B7A:2B24:1793D0F:1CA89A3:5D77A8E1", + "content-length": "260", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"tree\":{\"id\":\"MDY6Q29tbWl0MjA3NTcwODkwOjQxNjc3NTVhYWJkNGUyYmU5ZTA1ZmM3ZjM5ZmQyODE4ZWRjMTA4NTA=\",\"sha\":\"4167755aabd4e2be9e05fc7f39fd2818edc10850\",\"__typename\":\"Commit\"}}}}\n", + "status": 200 + }, + { + "body": "{\"base_tree\":\"4167755aabd4e2be9e05fc7f39fd2818edc10850\",\"tree\":[{\"path\":\"1970-01-01-first-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"6b6cd2caffbba193d9a8a9269d8a4c7b588a0686\"}]}", + "method": "POST", + "url": "/repos/owner/repo/git/trees?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:45:07 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "892", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4828", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"d3ddb6bcadc99ada2d807a0800896a87\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/trees/919aeaa5c29dcd153687d72599ea640a05e2d8fc", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B7C:9D21:170A6E8:1C10D33:5D77A8E2", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"919aeaa5c29dcd153687d72599ea640a05e2d8fc\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/919aeaa5c29dcd153687d72599ea640a05e2d8fc\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"6b6cd2caffbba193d9a8a9269d8a4c7b588a0686\",\n \"size\": 462,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/6b6cd2caffbba193d9a8a9269d8a4c7b588a0686\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"message\":\"Updating “1970-01-01-first-title” metadata\",\"tree\":\"919aeaa5c29dcd153687d72599ea640a05e2d8fc\",\"parents\":[\"4167755aabd4e2be9e05fc7f39fd2818edc10850\"]}", + "method": "POST", + "url": "/repos/owner/repo/git/commits?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:45:08 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "1505", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4827", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"66fe65f6ce7eaa531b203279febc7b33\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/commits/51b3cf5b9d77882180719379f58f4ca16d8ef87e", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B7E:15110:184D1B4:1D854B5:5D77A8E3", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"51b3cf5b9d77882180719379f58f4ca16d8ef87e\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NTcwODkwOjUxYjNjZjViOWQ3Nzg4MjE4MDcxOTM3OWY1OGY0Y2ExNmQ4ZWY4N2U=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/51b3cf5b9d77882180719379f58f4ca16d8ef87e\",\n \"html_url\": \"https://github.com/owner/repo/commit/51b3cf5b9d77882180719379f58f4ca16d8ef87e\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T13:45:08Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T13:45:08Z\"\n },\n \"tree\": {\n \"sha\": \"919aeaa5c29dcd153687d72599ea640a05e2d8fc\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/919aeaa5c29dcd153687d72599ea640a05e2d8fc\"\n },\n \"message\": \"Updating “1970-01-01-first-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"4167755aabd4e2be9e05fc7f39fd2818edc10850\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/4167755aabd4e2be9e05fc7f39fd2818edc10850\",\n \"html_url\": \"https://github.com/owner/repo/commit/4167755aabd4e2be9e05fc7f39fd2818edc10850\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "status": 201 + }, + { + "body": "{\"sha\":\"51b3cf5b9d77882180719379f58f4ca16d8ef87e\",\"force\":false}", + "method": "PATCH", + "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:45:09 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4826", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"c87c9e67ce39009a5e2741c07049b56b\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B81:2B15:4D3F56:5DBC89:5D77A8E4", + "content-length": "482", + "connection": "keep-alive" + }, + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NTcwODkwOnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"51b3cf5b9d77882180719379f58f4ca16d8ef87e\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/51b3cf5b9d77882180719379f58f4ca16d8ef87e\"\n }\n}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"unpublishedBranchFile\",\"variables\":{\"headOwner\":\"owner\",\"headRepoName\":\"repo\",\"headExpression\":\"cms/1970-01-01-first-title:content/posts/1970-01-01-first-title.md\",\"baseOwner\":\"owner\",\"baseRepoName\":\"repo\",\"baseExpression\":\"master:content/posts/1970-01-01-first-title.md\"},\"query\":\"query unpublishedBranchFile($headOwner: String!, $headRepoName: String!, $headExpression: String!, $baseOwner: String!, $baseRepoName: String!, $baseExpression: String!) {\\n head: repository(owner: $headOwner, name: $headRepoName) {\\n ...RepositoryParts\\n object(expression: $headExpression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n base: repository(owner: $baseOwner, name: $baseRepoName) {\\n ...RepositoryParts\\n object(expression: $baseExpression) {\\n ... on Blob {\\n id\\n oid\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:45:11 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4970", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7B82:B4E0:168567C:1B6868C:5D77A8E6", + "content-length": "496", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"head\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzU3MDg5MDphMDQxMjQ1ODE0ODkyZTNmNzNmNjNjYTU0MzMzZmRhNjQ5YjdmYzBi\",\"text\":\"---\\ntemplate: post\\ntitle: first title\\ndraft: true\\ndate: 1970-01-01T00:00:00.000Z\\ndescription: first description\\ncategory: first category\\ntags:\\n - tag1\\n---\\nfirst body\\n\",\"is_binary\":false,\"__typename\":\"Blob\"}},\"base\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"object\":null}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"statues\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"e44955f384457e8d83755edefd79c68a2635a91b\"},\"query\":\"query statues($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n status {\\n id\\n contexts {\\n id\\n context\\n state\\n target_url: targetUrl\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:45:13 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4969", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7B85:244E7:117EEC3:1558A59:5D77A8E8", + "content-length": "276", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDY6Q29tbWl0MjA3NTcwODkwOmU0NDk1NWYzODQ0NTdlOGQ4Mzc1NWVkZWZkNzljNjhhMjYzNWE5MWI=\",\"sha\":\"e44955f384457e8d83755edefd79c68a2635a91b\",\"__typename\":\"Commit\",\"status\":null}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"statues\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"e44955f384457e8d83755edefd79c68a2635a91b\"},\"query\":\"query statues($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n status {\\n id\\n contexts {\\n id\\n context\\n state\\n target_url: targetUrl\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:45:19 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4968", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7B96:1510E:AAA0E4:CFE175:5D77A8EE", + "content-length": "276", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDY6Q29tbWl0MjA3NTcwODkwOmU0NDk1NWYzODQ0NTdlOGQ4Mzc1NWVkZWZkNzljNjhhMjYzNWE5MWI=\",\"sha\":\"e44955f384457e8d83755edefd79c68a2635a91b\",\"__typename\":\"Commit\",\"status\":null}}}}\n", + "status": 200 + } +] \ No newline at end of file diff --git a/cypress/fixtures/Github Backend Editorial Workflow - GraphQL API__can delete an entry.json b/cypress/fixtures/Github Backend Editorial Workflow - GraphQL API__can delete an entry.json new file mode 100644 index 00000000..0d5551b3 --- /dev/null +++ b/cypress/fixtures/Github Backend Editorial Workflow - GraphQL API__can delete an entry.json @@ -0,0 +1,1142 @@ +[ + { + "body": "{\"operationName\":null,\"variables\":{},\"query\":\"{\\n viewer {\\n id\\n avatar_url: avatarUrl\\n name\\n login\\n __typename\\n }\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:50:43 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4796", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7B71:B4DE:11E64E0:15C9CDD:5D77AA33", + "content-length": "179", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"viewer\":{\"id\":\"MDQ6VXNlcjI2NzYwNTcx\",\"avatar_url\":\"https://avatars1.githubusercontent.com/u/7892489?v=4\",\"name\":\"owner\",\"login\":\"owner\",\"__typename\":\"User\"}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"repoPermission\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\"},\"query\":\"query repoPermission($owner: String!, $name: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n viewerPermission\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:50:44 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4795", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7B72:3ED7B:1257323:164671D:5D77AA34", + "content-length": "119", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"viewerPermission\":\"ADMIN\"}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"files\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"master:static/media\"},\"query\":\"query files($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...FileEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment FileEntryParts on TreeEntry {\\n name\\n sha: oid\\n type\\n blob: object {\\n ... on Blob {\\n size: byteSize\\n __typename\\n }\\n __typename\\n }\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:50:45 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4794", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7B7E:15110:18709C9:1DB10D6:5D77AA35", + "content-length": "1837", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6VHJlZTIwNzU3MDg5MDo5Yjc2OTliNTdlMTQzMDkxMGRiODI4MzFkY2Y2YjhhMWQxZGJkYWM5\",\"sha\":\"9b7699b57e1430910db82831dcf6b8a1d1dbdac9\",\"__typename\":\"Tree\",\"entries\":[{\"name\":\"42-line-bible.jpg\",\"sha\":\"41c8d12f9ca5864beb827c381fbeff935209d5fb\",\"type\":\"blob\",\"blob\":{\"size\":671242,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"gutenberg.jpg\",\"sha\":\"04315e355873ea5d358d9c371c39a6845c1ae4ae\",\"type\":\"blob\",\"blob\":{\"size\":155002,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-0.jpg\",\"sha\":\"b70a1b64fd4fa9635823231a0ba92c6dc9393f16\",\"type\":\"blob\",\"blob\":{\"size\":660287,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-1.jpg\",\"sha\":\"05eedae372b829c62501ac751b2d42dcc432541b\",\"type\":\"blob\",\"blob\":{\"size\":392411,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-2.jpg\",\"sha\":\"53845ed35faf8939bea242bb85eda7c324b1be0b\",\"type\":\"blob\",\"blob\":{\"size\":99147,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-3.jpg\",\"sha\":\"8b2339d97069e826fae1f156212e40ae458454e3\",\"type\":\"blob\",\"blob\":{\"size\":358022,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-4.jpg\",\"sha\":\"a8f6f21253a67a4284b5a953b2fe633d44152ecd\",\"type\":\"blob\",\"blob\":{\"size\":114837,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"movable-type.jpg\",\"sha\":\"57b4e925ea00bd8e195cf4418eb6eb2995ea5f10\",\"type\":\"blob\",\"blob\":{\"size\":559028,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"printing-press.jpg\",\"sha\":\"d27f56c9437d9becd2f56cc627c9322c2f1f61f6\",\"type\":\"blob\",\"blob\":{\"size\":279283,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"type-through-time.jpg\",\"sha\":\"3f08366a805c51a60ec5056010f22de4ba08abaa\",\"type\":\"blob\",\"blob\":{\"size\":117689,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"}]}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"files\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"master:content/posts\"},\"query\":\"query files($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...FileEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment FileEntryParts on TreeEntry {\\n name\\n sha: oid\\n type\\n blob: object {\\n ... on Blob {\\n size: byteSize\\n __typename\\n }\\n __typename\\n }\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:50:45 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4793", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7B81:2B1F:121B2CF:1618165:5D77AA35", + "content-length": "1218", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6VHJlZTIwNzU3MDg5MDozNDg5MjU3NWUyMTZjMDZlNzU3MDkzZjAzNmJkOGUwNTdjNzhhNTJm\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"__typename\":\"Tree\",\"entries\":[{\"name\":\"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\"sha\":\"6d51a38aed7139d2117724b1e307657b6ff2d043\",\"type\":\"blob\",\"blob\":{\"size\":1707,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\"sha\":\"d0582dd245a3f408fb3fe2333bf01400007476e9\",\"type\":\"blob\",\"blob\":{\"size\":2565,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2016-02-02---A-Brief-History-of-Typography.md\",\"sha\":\"0eea554365f002d0f1572af9a58522d335a794d5\",\"type\":\"blob\",\"blob\":{\"size\":2786,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2017-18-08---The-Birth-of-Movable-Type.md\",\"sha\":\"44f78c474d04273185a95821426f75affc9b0044\",\"type\":\"blob\",\"blob\":{\"size\":16071,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\"sha\":\"a532f0a9445cdf90a19c6812cff89d1674991774\",\"type\":\"blob\",\"blob\":{\"size\":7465,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"}]}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"0eea554365f002d0f1572af9a58522d335a794d5\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:50:46 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4791", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7B88:3ED7B:12575AA:1646A33:5D77AA35", + "content-length": "3102", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzU3MDg5MDowZWVhNTU0MzY1ZjAwMmQwZjE1NzJhZjlhNTg1MjJkMzM1YTc5NGQ1\",\"text\":\"---\\ntitle: \\\"A Brief History of Typography\\\"\\ndate: \\\"2016-02-02T22:40:32.169Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Design Inspiration\\\"\\ntags:\\n - \\\"Linotype\\\"\\n - \\\"Monotype\\\"\\n - \\\"History of typography\\\"\\n - \\\"Helvetica\\\"\\ndescription: \\\"Morbi in sem quis dui placerat ornare. Pellentesque odio nisi, euismod in, pharetra a, ultricies in, diam. Sed arcu. Cras consequat.\\\"\\ncanonical: ''\\n---\\n\\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \\n\\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\\n\\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-0.jpg)\\n\\n## Header Level 2\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \\n\\n
\\n\\t
\\n\\t\\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\\n\\t\\t
\\n\\t\\t\\t— Aliquam tincidunt mauris eu risus.\\n\\t\\t
\\n\\t
\\n
\\n\\n### Header Level 3\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\\n\\n```css\\n#header h1 a {\\n display: block;\\n width: 300px;\\n height: 80px;\\n}\\n```\\n\\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"6d51a38aed7139d2117724b1e307657b6ff2d043\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:50:46 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4792", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7B85:244EB:17FACFD:1D1FC32:5D77AA35", + "content-length": "1973", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzU3MDg5MDo2ZDUxYTM4YWVkNzEzOWQyMTE3NzI0YjFlMzA3NjU3YjZmZjJkMDQz\",\"text\":\"---\\ntitle: Perfecting the Art of Perfection\\ndate: \\\"2016-09-01T23:46:37.121Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Design Inspiration\\\"\\ntags:\\n - \\\"Handwriting\\\"\\n - \\\"Learning to write\\\"\\ndescription: \\\"Quisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\\\"\\ncanonical: ''\\n---\\n\\nQuisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\\n\\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-2.jpg)\\n\\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. \\n\\nPraesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"d0582dd245a3f408fb3fe2333bf01400007476e9\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:50:46 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4790", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7B86:244E4:AE6FF3:D35C31:5D77AA36", + "content-length": "2866", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzU3MDg5MDpkMDU4MmRkMjQ1YTNmNDA4ZmIzZmUyMzMzYmYwMTQwMDAwNzQ3NmU5\",\"text\":\"---\\ntitle: The Origins of Social Stationery Lettering\\ndate: \\\"2016-12-01T22:40:32.169Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Design Culture\\\"\\ndescription: \\\"Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante.\\\"\\ncanonical: ''\\n---\\n\\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \\n\\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\\n\\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-3.jpg)\\n\\n## Header Level 2\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \\n\\n
\\n\\t
\\n\\t\\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\\n\\t\\t
\\n\\t\\t\\t— Aliquam tincidunt mauris eu risus.\\n\\t\\t
\\n\\t
\\n
\\n\\n### Header Level 3\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\\n\\n```css\\n#header h1 a {\\n display: block;\\n width: 300px;\\n height: 80px;\\n}\\n```\\n\\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"44f78c474d04273185a95821426f75affc9b0044\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:50:46 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4789", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7B98:15110:1870C28:1DB13C8:5D77AA36", + "content-length": "16478", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzU3MDg5MDo0NGY3OGM0NzRkMDQyNzMxODVhOTU4MjE0MjZmNzVhZmZjOWIwMDQ0\",\"text\":\"---\\ntitle: \\\"Johannes Gutenberg: The Birth of Movable Type\\\"\\ndate: \\\"2017-08-18T22:12:03.284Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Typography\\\"\\ntags:\\n - \\\"Open source\\\"\\n - \\\"Gatsby\\\"\\n - \\\"Typography\\\"\\ndescription: \\\"German inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\\\"\\ncanonical: ''\\n---\\n\\nGerman inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\\n\\n**Johannes Gensfleisch zur Laden zum Gutenberg** (c. 1398 – 1468) was a German blacksmith, goldsmith, printer, and publisher who introduced printing to Europe. His invention of mechanical movable type printing started the Printing Revolution and is widely regarded as the most important event of the modern period. It played a key role in the development of the Renaissance, Reformation, the Age of Enlightenment, and the Scientific revolution and laid the material basis for the modern knowledge-based economy and the spread of learning to the masses.\\n\\n
\\n\\t\\\"Gutenberg\\\"\\n\\t
Johannes Gutenberg
\\n
\\n\\nWith his invention of the printing press, Gutenberg was the first European to use movable type printing, in around 1439. Among his many contributions to printing are: the invention of a process for mass-producing movable type; the use of oil-based ink; and the use of a wooden printing press similar to the agricultural screw presses of the period. His truly epochal invention was the combination of these elements into a practical system that allowed the mass production of printed books and was economically viable for printers and readers alike. Gutenberg's method for making type is traditionally considered to have included a type metal alloy and a hand mould for casting type. The alloy was a mixture of lead, tin, and antimony that melted at a relatively low temperature for faster and more economical casting, cast well, and created a durable type.\\n\\nIn Renaissance Europe, the arrival of mechanical movable type printing introduced the era of mass communication which permanently altered the structure of society. The relatively unrestricted circulation of information — including revolutionary ideas — transcended borders, captured the masses in the Reformation and threatened the power of political and religious authorities; the sharp increase in literacy broke the monopoly of the literate elite on education and learning and bolstered the emerging middle class. Across Europe, the increasing cultural self-awareness of its people led to the rise of proto-nationalism, accelerated by the flowering of the European vernacular languages to the detriment of Latin's status as lingua franca. In the 19th century, the replacement of the hand-operated Gutenberg-style press by steam-powered rotary presses allowed printing on an industrial scale, while Western-style printing was adopted all over the world, becoming practically the sole medium for modern bulk printing.\\n\\nThe use of movable type was a marked improvement on the handwritten manuscript, which was the existing method of book production in Europe, and upon woodblock printing, and revolutionized European book-making. Gutenberg's printing technology spread rapidly throughout Europe and later the world.\\n\\nHis major work, the Gutenberg Bible (also known as the 42-line Bible), has been acclaimed for its high aesthetic and technical quality.\\n\\n## Printing Press\\n\\nAround 1439, Gutenberg was involved in a financial misadventure making polished metal mirrors (which were believed to capture holy light from religious relics) for sale to pilgrims to Aachen: in 1439 the city was planning to exhibit its collection of relics from Emperor Charlemagne but the event was delayed by one year due to a severe flood and the capital already spent could not be repaid. When the question of satisfying the investors came up, Gutenberg is said to have promised to share a “secret”. It has been widely speculated that this secret may have been the idea of printing with movable type. Also around 1439–1440, the Dutch Laurens Janszoon Coster came up with the idea of printing. Legend has it that the idea came to him “like a ray of light”.\\n\\n
\\n\\t\\\"Early\\n\\t
Early wooden printing press as depicted in 1568.
\\n
\\n\\nUntil at least 1444 he lived in Strasbourg, most likely in the St. Arbogast parish. It was in Strasbourg in 1440 that Gutenberg is said to have perfected and unveiled the secret of printing based on his research, mysteriously entitled Kunst und Aventur (art and enterprise). It is not clear what work he was engaged in, or whether some early trials with printing from movable type may have been conducted there. After this, there is a gap of four years in the record. In 1448, he was back in Mainz, where he took out a loan from his brother-in-law Arnold Gelthus, quite possibly for a printing press or related paraphernalia. By this date, Gutenberg may have been familiar with intaglio printing; it is claimed that he had worked on copper engravings with an artist known as the Master of Playing Cards.\\n\\nBy 1450, the press was in operation, and a German poem had been printed, possibly the first item to be printed there. Gutenberg was able to convince the wealthy moneylender Johann Fust for a loan of 800 guilders. Peter Schöffer, who became Fust’s son-in-law, also joined the enterprise. Schöffer had worked as a scribe in Paris and is believed to have designed some of the first typefaces.\\n\\n
\\n\\t
\\n\\t\\t

All that has been written to me about that marvelous man seen at Frankfurt is true. I have not seen complete Bibles but only a number of quires of various books of the Bible. The script was very neat and legible, not at all difficult to follow—your grace would be able to read it without effort, and indeed without glasses.

\\n\\t\\t
\\n\\t\\t\\t—Future pope Pius II in a letter to Cardinal Carvajal, March 1455\\n\\t\\t
\\n\\t
\\n
\\n\\nGutenberg's workshop was set up at Hof Humbrecht, a property belonging to a distant relative. It is not clear when Gutenberg conceived the Bible project, but for this he borrowed another 800 guilders from Fust, and work commenced in 1452. At the same time, the press was also printing other, more lucrative texts (possibly Latin grammars). There is also some speculation that there may have been two presses, one for the pedestrian texts, and one for the Bible. One of the profit-making enterprises of the new press was the printing of thousands of indulgences for the church, documented from 1454–55.\\n\\nIn 1455 Gutenberg completed his 42-line Bible, known as the Gutenberg Bible. About 180 copies were printed, most on paper and some on vellum.\\n\\n## Court Case\\n\\nSome time in 1456, there was a dispute between Gutenberg and Fust, and Fust demanded his money back, accusing Gutenberg of misusing the funds. Meanwhile the expenses of the Bible project had proliferated, and Gutenberg's debt now exceeded 20,000 guilders. Fust sued at the archbishop's court. A November 1455 legal document records that there was a partnership for a \\\"project of the books,\\\" the funds for which Gutenberg had used for other purposes, according to Fust. The court decided in favor of Fust, giving him control over the Bible printing workshop and half of all printed Bibles.\\n\\nThus Gutenberg was effectively bankrupt, but it appears he retained (or re-started) a small printing shop, and participated in the printing of a Bible in the town of Bamberg around 1459, for which he seems at least to have supplied the type. But since his printed books never carry his name or a date, it is difficult to be certain, and there is consequently a considerable scholarly debate on this subject. It is also possible that the large Catholicon dictionary, 300 copies of 754 pages, printed in Mainz in 1460, may have been executed in his workshop.\\n\\nMeanwhile, the Fust–Schöffer shop was the first in Europe to bring out a book with the printer's name and date, the Mainz Psalter of August 1457, and while proudly proclaiming the mechanical process by which it had been produced, it made no mention of Gutenberg.\\n\\n## Later Life\\n\\nIn 1462, during a conflict between two archbishops, Mainz was sacked by archbishop Adolph von Nassau, and Gutenberg was exiled. An old man by now, he moved to Eltville where he may have initiated and supervised a new printing press belonging to the brothers Bechtermünze.\\n\\nIn January 1465, Gutenberg's achievements were recognized and he was given the title Hofmann (gentleman of the court) by von Nassau. This honor included a stipend, an annual court outfit, as well as 2,180 litres of grain and 2,000 litres of wine tax-free. It is believed he may have moved back to Mainz around this time, but this is not certain.\\n\\n***\\n\\nGutenberg died in 1468 and was buried in the Franciscan church at Mainz, his contributions largely unknown. This church and the cemetery were later destroyed, and Gutenberg's grave is now lost.\\n\\nIn 1504, he was mentioned as the inventor of typography in a book by Professor Ivo Wittig. It was not until 1567 that the first portrait of Gutenberg, almost certainly an imaginary reconstruction, appeared in Heinrich Pantaleon's biography of famous Germans.\\n\\n## Printing Method With Movable Type\\n\\nGutenberg's early printing process, and what tests he may have made with movable type, are not known in great detail. His later Bibles were printed in such a way as to have required large quantities of type, some estimates suggesting as many as 100,000 individual sorts. Setting each page would take, perhaps, half a day, and considering all the work in loading the press, inking the type, pulling the impressions, hanging up the sheets, distributing the type, etc., it is thought that the Gutenberg–Fust shop might have employed as many as 25 craftsmen.\\n\\n![Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5](/media/movable-type.jpg)\\n\\n*Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5*\\n\\nGutenberg's technique of making movable type remains unclear. In the following decades, punches and copper matrices became standardized in the rapidly disseminating printing presses across Europe. Whether Gutenberg used this sophisticated technique or a somewhat primitive version has been the subject of considerable debate.\\n\\nIn the standard process of making type, a hard metal punch (made by punchcutting, with the letter carved back to front) is hammered into a softer copper bar, creating a matrix. This is then placed into a hand-held mould and a piece of type, or \\\"sort\\\", is cast by filling the mould with molten type-metal; this cools almost at once, and the resulting piece of type can be removed from the mould. The matrix can be reused to create hundreds, or thousands, of identical sorts so that the same character appearing anywhere within the book will appear very uniform, giving rise, over time, to the development of distinct styles of typefaces or fonts. After casting, the sorts are arranged into type-cases, and used to make up pages which are inked and printed, a procedure which can be repeated hundreds, or thousands, of times. The sorts can be reused in any combination, earning the process the name of “movable type”.\\n\\nThe invention of the making of types with punch, matrix and mold has been widely attributed to Gutenberg. However, recent evidence suggests that Gutenberg's process was somewhat different. If he used the punch and matrix approach, all his letters should have been nearly identical, with some variations due to miscasting and inking. However, the type used in Gutenberg's earliest work shows other variations.\\n\\n
\\n\\t
\\n\\t\\t

It is a press, certainly, but a press from which shall flow in inexhaustible streams… Through it, god will spread his word.

\\n\\t\\t
\\n\\t\\t\\t—Johannes Gutenberg\\n\\t\\t
\\n\\t
\\n
\\n\\nIn 2001, the physicist Blaise Agüera y Arcas and Princeton librarian Paul Needham, used digital scans of a Papal bull in the Scheide Library, Princeton, to carefully compare the same letters (types) appearing in different parts of the printed text. The irregularities in Gutenberg's type, particularly in simple characters such as the hyphen, suggested that the variations could not have come from either ink smear or from wear and damage on the pieces of metal on the types themselves. While some identical types are clearly used on other pages, other variations, subjected to detailed image analysis, suggested that they could not have been produced from the same matrix. Transmitted light pictures of the page also appeared to reveal substructures in the type that could not arise from traditional punchcutting techniques. They hypothesized that the method may have involved impressing simple shapes to create alphabets in “cuneiform” style in a matrix made of some soft material, perhaps sand. Casting the type would destroy the mould, and the matrix would need to be recreated to make each additional sort. This could explain the variations in the type, as well as the substructures observed in the printed images.\\n\\nThus, they feel that “the decisive factor for the birth of typography”, the use of reusable moulds for casting type, might have been a more progressive process than was previously thought. They suggest that the additional step of using the punch to create a mould that could be reused many times was not taken until twenty years later, in the 1470s. Others have not accepted some or all of their suggestions, and have interpreted the evidence in other ways, and the truth of the matter remains very uncertain.\\n\\nA 1568 history by Hadrianus Junius of Holland claims that the basic idea of the movable type came to Gutenberg from Laurens Janszoon Coster via Fust, who was apprenticed to Coster in the 1430s and may have brought some of his equipment from Haarlem to Mainz. While Coster appears to have experimented with moulds and castable metal type, there is no evidence that he had actually printed anything with this technology. He was an inventor and a goldsmith. However, there is one indirect supporter of the claim that Coster might be the inventor. The author of the Cologne Chronicle of 1499 quotes Ulrich Zell, the first printer of Cologne, that printing was performed in Mainz in 1450, but that some type of printing of lower quality had previously occurred in the Netherlands. However, the chronicle does not mention the name of Coster, while it actually credits Gutenberg as the \\\"first inventor of printing\\\" in the very same passage (fol. 312). The first securely dated book by Dutch printers is from 1471, and the Coster connection is today regarded as a mere legend.\\n\\nThe 19th century printer and typefounder Fournier Le Jeune suggested that Gutenberg might not have been using type cast with a reusable matrix, but possibly wooden types that were carved individually. A similar suggestion was made by Nash in 2004. This remains possible, albeit entirely unproven.\\n\\nIt has also been questioned whether Gutenberg used movable types at all. In 2004, Italian professor Bruno Fabbiani claimed that examination of the 42-line Bible revealed an overlapping of letters, suggesting that Gutenberg did not in fact use movable type (individual cast characters) but rather used whole plates made from a system somewhat like a modern typewriter, whereby the letters were stamped successively into the plate and then printed. However, most specialists regard the occasional overlapping of type as caused by paper movement over pieces of type of slightly unequal height.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"a532f0a9445cdf90a19c6812cff89d1674991774\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:50:46 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4788", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7B9A:B4DC:AB3654:D03F43:5D77AA36", + "content-length": "7803", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzU3MDg5MDphNTMyZjBhOTQ0NWNkZjkwYTE5YzY4MTJjZmY4OWQxNjc0OTkxNzc0\",\"text\":\"---\\ntitle: Humane Typography in the Digital Age\\ndate: \\\"2017-08-19T22:40:32.169Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Typography\\\"\\ntags:\\n - \\\"Design\\\"\\n - \\\"Typography\\\"\\n - \\\"Web Development\\\"\\ndescription: \\\"An Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\\\"\\ncanonical: ''\\n---\\n\\n- [The first transition](#the-first-transition)\\n- [The digital age](#the-digital-age)\\n- [Loss of humanity through transitions](#loss-of-humanity-through-transitions)\\n- [Chasing perfection](#chasing-perfection)\\n\\nAn Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\\n\\nThe typography of this industrial age was no longer handcrafted. Mass production and profit became more important. Quantity mattered more than the quality. The books and printed works in general lost a part of its humanity. The typefaces were not produced by craftsmen anymore. It was the machines printing and tying the books together now. The craftsmen had to let go of their craft and became a cog in the process. An extension of the industrial machine.\\n\\nBut the victory of the industrialism didn’t mean that the craftsmen were completely extinct. The two worlds continued to coexist independently. Each recognising the good in the other — the power of industrialism and the humanity of craftsmanship. This was the second transition that would strip typography of a part of its humanity. We have to go 500 years back in time to meet the first one.\\n\\n## The first transition\\n\\nA similar conflict emerged after the invention of the first printing press in Europe. Johannes Gutenberg invented movable type and used it to produce different compositions. His workshop could print up to 240 impressions per hour. Until then, the books were being copied by hand. All the books were handwritten and decorated with hand drawn ornaments and figures. A process of copying a book was long but each book, even a copy, was a work of art.\\n\\nThe first printed books were, at first, perceived as inferior to the handwritten ones. They were smaller and cheaper to produce. Movable type provided the printers with flexibility that allowed them to print books in languages other than Latin. Gill describes the transition to industrialism as something that people needed and wanted. Something similar happened after the first printed books emerged. People wanted books in a language they understood and they wanted books they could take with them. They were hungry for knowledge and printed books satisfied this hunger.\\n\\n![42-line-bible.jpg](/media/42-line-bible.jpg)\\n\\n*The 42–Line Bible, printed by Gutenberg.*\\n\\nBut, through this transition, the book lost a large part of its humanity. The machine took over most of the process but craftsmanship was still a part of it. The typefaces were cut manually by the first punch cutters. The paper was made by hand. The illustrations and ornaments were still being hand drawn. These were the remains of the craftsmanship that went almost extinct in the times of Eric Gill.\\n\\n## The digital age\\n\\nThe first transition took away a large part of humanity from written communication. Industrialisation, the second transition described by Eric Gill, took away most of what was left. But it’s the third transition that stripped it naked. Typefaces are faceless these days. They’re just fonts on our computers. Hardly anyone knows their stories. Hardly anyone cares. Flicking through thousands of typefaces and finding the “right one” is a matter of minutes.\\n\\n> In the new computer age the proliferation of typefaces and type manipulations represents a new level of visual pollution threatening our culture. Out of thousands of typefaces, all we need are a few basic ones, and trash the rest.\\n>\\n— Massimo Vignelli\\n\\nTypography is not about typefaces. It’s not about what looks best, it’s about what feels right. What communicates the message best. Typography, in its essence, is about the message. “Typographical design should perform optically what the speaker creates through voice and gesture of his thoughts.”, as El Lissitzky, a famous Russian typographer, put it.\\n\\n## Loss of humanity through transitions\\n\\nEach transition took away a part of humanity from written language. Handwritten books being the most humane form and the digital typefaces being the least. Overuse of Helvetica is a good example. Messages are being told in a typeface just because it’s a safe option. It’s always there. Everyone knows it but yet, nobody knows it. Stop someone on the street and ask him what Helvetica is? Ask a designer the same question. Ask him where it came from, when, why and who designed it. Most of them will fail to answer these questions. Most of them used it in their precious projects but they still don’t spot it in the street.\\n\\n
\\n\\t
\\n\\t\\t

Knowledge of the quality of a typeface is of the greatest importance for the functional, aesthetic and psychological effect.

\\n\\t\\t
\\n\\t\\t\\t— Josef Mueller-Brockmann\\n\\t\\t
\\n\\t
\\n
\\n\\nTypefaces don’t look handmade these days. And that’s all right. They don’t have to. Industrialism took that away from them and we’re fine with it. We’ve traded that part of humanity for a process that produces more books that are easier to read. That can’t be bad. And it isn’t.\\n\\n> Humane typography will often be comparatively rough and even uncouth; but while a certain uncouthness does not seriously matter in humane works, uncouthness has no excuse whatever in the productions of the machine.\\n>\\n> — Eric Gill\\n\\nWe’ve come close to “perfection” in the last five centuries. The letters are crisp and without rough edges. We print our compositions with high–precision printers on a high quality, machine made paper.\\n\\n![type-through-time.jpg](/media/type-through-time.jpg)\\n\\n*Type through 5 centuries.*\\n\\nWe lost a part of ourselves because of this chase after perfection. We forgot about the craftsmanship along the way. And the worst part is that we don’t care. The transition to the digital age made that clear. We choose typefaces like clueless zombies. There’s no meaning in our work. Type sizes, leading, margins… It’s all just a few clicks or lines of code. The message isn’t important anymore. There’s no more “why” behind the “what”.\\n\\n## Chasing perfection\\n\\nHuman beings aren’t perfect. Perfection is something that will always elude us. There will always be a small part of humanity in everything we do. No matter how small that part, we should make sure that it transcends the limits of the medium. We have to think about the message first. What typeface should we use and why? Does the typeface match the message and what we want to communicate with it? What will be the leading and why? Will there be more typefaces in our design? On what ground will they be combined? What makes our design unique and why? This is the part of humanity that is left in typography. It might be the last part. Are we really going to give it up?\\n\\n*Originally published by [Matej Latin](http://matejlatin.co.uk/) on [Medium](https://medium.com/design-notes/humane-typography-in-the-digital-age-9bd5c16199bd?ref=webdesignernews.com#.lygo82z0x).*\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/1970-01-01-first-title.json?ts=300&ref=refs/meta/_netlify_cms", + "headers": { + "Date": "Tue, 10 Sep 2019 13:50:49 GMT", + "Content-Type": "application/vnd.github.VERSION.raw; charset=utf-8", + "Content-Length": "472", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4680", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"9626481dfa93edc9edf75fa7d539f38d57ee12aa\"", + "Last-Modified": "Tue, 10 Sep 2019 13:50:02 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B9F:2B19:A8B2FE:CD54D5:5D77AA39", + "connection": "keep-alive" + }, + "response": "{\"type\":\"PR\",\"pr\":{\"number\":5,\"head\":\"66c62b901dd07d2090539697cc17216ad6458bb5\"},\"user\":\"owner\",\"status\":\"pending_publish\",\"branch\":\"cms/1970-01-01-first-title\",\"collection\":\"posts\",\"commitMessage\":\"Create Post “1970-01-01-first-title”\",\"title\":\"first title\",\"description\":\"first description\",\"objects\":{\"entry\":{\"path\":\"content/posts/1970-01-01-first-title.md\",\"sha\":\"a041245814892e3f73f63ca54333fda649b7fc0b\"},\"files\":[]},\"timeStamp\":\"1970-01-01T00:00:00.300Z\"}", + "status": 200 + }, + { + "body": "{\"operationName\":\"unpublishedBranchFile\",\"variables\":{\"headOwner\":\"owner\",\"headRepoName\":\"repo\",\"headExpression\":\"cms/1970-01-01-first-title:content/posts/1970-01-01-first-title.md\",\"baseOwner\":\"owner\",\"baseRepoName\":\"repo\",\"baseExpression\":\"master:content/posts/1970-01-01-first-title.md\"},\"query\":\"query unpublishedBranchFile($headOwner: String!, $headRepoName: String!, $headExpression: String!, $baseOwner: String!, $baseRepoName: String!, $baseExpression: String!) {\\n head: repository(owner: $headOwner, name: $headRepoName) {\\n ...RepositoryParts\\n object(expression: $headExpression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n base: repository(owner: $baseOwner, name: $baseRepoName) {\\n ...RepositoryParts\\n object(expression: $baseExpression) {\\n ... on Blob {\\n id\\n oid\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:50:50 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4787", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7BA0:244EB:17FB351:1D20442:5D77AA3A", + "content-length": "189", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"head\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"object\":null},\"base\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"object\":null}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"master:content/posts/1970-01-01-first-title.md\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:50:51 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4786", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7BA2:1510F:1225F47:1605F20:5D77AA3A", + "content-length": "106", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"object\":null}}}\n", + "status": 200 + }, + { + "body": "{\"content\":\"LS0tCnRlbXBsYXRlOiBwb3N0CnRpdGxlOiBmaXJzdCB0aXRsZQpkcmFmdDogdHJ1ZQpkYXRlOiAxOTcwLTAxLTAxVDAwOjAwOjAwLjAwMFoKZGVzY3JpcHRpb246IGZpcnN0IGRlc2NyaXB0aW9uCmNhdGVnb3J5OiBmaXJzdCBjYXRlZ29yeQp0YWdzOgogIC0gdGFnMQotLS0KZmlyc3QgYm9keQo=\",\"encoding\":\"base64\"}", + "method": "POST", + "url": "/repos/owner/repo/git/blobs?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:50:51 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "206", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4679", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"a5ec4a37015a9eeb405300b3095fb5c9\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BA5:2B19:A8B486:CD56A5:5D77AA3B", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"a041245814892e3f73f63ca54333fda649b7fc0b\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b\"\n}\n", + "status": 201 + }, + { + "body": "{\"operationName\":\"branch\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"qualifiedName\":\"refs/heads/master\"},\"query\":\"query branch($owner: String!, $name: String!, $qualifiedName: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n branch: ref(qualifiedName: $qualifiedName) {\\n ...BranchParts\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BranchParts on Ref {\\n commit: target {\\n ...ObjectParts\\n __typename\\n }\\n id\\n name\\n repository {\\n ...RepositoryParts\\n __typename\\n }\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:50:52 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4785", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7BA6:B4E0:16A7D91:1B92CBB:5D77AA3C", + "content-length": "429", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"branch\":{\"commit\":{\"id\":\"MDY6Q29tbWl0MjA3NTcwODkwOjcyNjE3MmRlYWU5OWM4YTJjZWE0YzcxZTczNGEwMmE3OTNkNGQ5ZTU=\",\"sha\":\"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\"__typename\":\"Commit\"},\"id\":\"MDM6UmVmMjA3NTcwODkwOm1hc3Rlcg==\",\"name\":\"master\",\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\"},\"__typename\":\"Ref\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"tree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"726172deae99c8a2cea4c71e734a02a793d4d9e5\"},\"query\":\"query tree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n tree: object(oid: $sha) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:50:53 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4783", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7BAA:2B19:A8B58A:CD57F8:5D77AA3C", + "content-length": "260", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"tree\":{\"id\":\"MDY6Q29tbWl0MjA3NTcwODkwOjcyNjE3MmRlYWU5OWM4YTJjZWE0YzcxZTczNGEwMmE3OTNkNGQ5ZTU=\",\"sha\":\"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\"__typename\":\"Commit\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"commitTree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"726172deae99c8a2cea4c71e734a02a793d4d9e5\"},\"query\":\"query commitTree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n commit: object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n tree {\\n ...ObjectParts\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:50:53 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4784", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7BA8:2B19:A8B589:CD57F6:5D77AA3C", + "content-length": "5040", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"commit\":{\"id\":\"MDY6Q29tbWl0MjA3NTcwODkwOjcyNjE3MmRlYWU5OWM4YTJjZWE0YzcxZTczNGEwMmE3OTNkNGQ5ZTU=\",\"sha\":\"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\"__typename\":\"Commit\",\"tree\":{\"id\":\"MDQ6VHJlZTIwNzU3MDg5MDpjNWI3ZjZkNjc0YmExOTNiYjdiNGE1ZmNmNDkzMzAzNGUxYjdmMmI3\",\"sha\":\"c5b7f6d674ba193bb7b4a5fcf4933034e1b7f2b7\",\"__typename\":\"Tree\",\"entries\":[{\"path\":\".circleci\",\"sha\":\"e5e9af3301cac61f120b8e4d40b1733c7a45685a\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\".eslintignore\",\"sha\":\"80b4531b026d19f8fa589efd122e76199d23f967\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".eslintrc.js\",\"sha\":\"370684994aaed5b858da3a006f48cfa57e88fd27\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".flowconfig\",\"sha\":\"14aa2ac4cc0e15223ad98630a6f1325fc81f8043\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".gitattributes\",\"sha\":\"10a369ddf4f603337cabc6f21646508323941ce1\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".github\",\"sha\":\"4ebeece548b52b20af59622354530a6d33b50b43\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\".gitignore\",\"sha\":\"c071ba35b0e49899bab6d610a68eef667dbbf157\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".prettierignore\",\"sha\":\"393f050e123d998cf8c8b362ff95cc8ac4d250e5\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".prettierrc\",\"sha\":\"e52ad05bb13b084d7949dd76e1b2517455162150\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".stylelintrc.json\",\"sha\":\"4b4c9698d10d756f5faa025659b86375428ed0a7\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".vscode\",\"sha\":\"286e97ec0113ea8242b41ac222e2c3e8077e6f1e\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"CHANGELOG.md\",\"sha\":\"070a5d4f0eacd2dc0be81ae8996f8982de43046e\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"CODE_OF_CONDUCT.md\",\"sha\":\"92bc7565ff0ee145a0041b5179a820f14f39ab22\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"CONTRIBUTING.md\",\"sha\":\"8552aa241254a61258e1ff9666ab36f32fb1e3b9\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"LICENSE\",\"sha\":\"42d85938357b49977c126ca03b199129082d4fb8\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"README.md\",\"sha\":\"19df50a78654c8d757ca7f38447aa3d09c7abcce\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"backend\",\"sha\":\"b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"config.js\",\"sha\":\"58afd573bbb69fcca000efd0f5d90b93c93a98dd\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"content\",\"sha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"flow-typed\",\"sha\":\"86c32fd6c3118be5e0dbbb231a834447357236c6\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"flow\",\"sha\":\"0af45ad00d155c8d8c7407d913ff85278244c9ce\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"gatsby-browser.js\",\"sha\":\"9bd2c9dce175f04980e91cd9dc295a299e3cdb80\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"gatsby-config.js\",\"sha\":\"353a109dad62e3f25bf9f5e6a2167f21a6c8b459\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"gatsby-node.js\",\"sha\":\"14a207883c2093d2cc071bc5a464e165bcc1fead\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"gatsby\",\"sha\":\"4f23c06cd1740bf78304d2c0b29bf6bfdf427981\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"jest\",\"sha\":\"5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"netlify.toml\",\"sha\":\"599b99cc5700404fde316a7ede829776f23e7d45\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"package.json\",\"sha\":\"9d777616438b90a18f1a4ebfd5f114b4c06c6f17\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"postcss-config.js\",\"sha\":\"d216501e9b351a72e00ba0b7459a6500e27e7da2\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"renovate.json\",\"sha\":\"dcc309398785698b8870545c32051a3d72dd8271\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"serverless-scripts\",\"sha\":\"ee3701f2fbfc7196ba340f6481d1387d20527898\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"serverless-single-page-app-plugin\",\"sha\":\"08763fcfba643a06a452398517019bea4a5850ba\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"serverless.yml\",\"sha\":\"20b22c5fad229f35d029bf6614d333d82fe8a987\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"src\",\"sha\":\"8cdb35a88232c0f32f12f130c92c7cc55f97f471\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"static\",\"sha\":\"53c6380a600a030d3722bff7ecde36f749fb6964\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"utils\",\"sha\":\"a592549c9f74db40b51efefcda2fd76810405f27\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"yarn.lock\",\"sha\":\"475c9c1924ca752a0686303e2fdeb7b13ad75f57\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"}]}}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"tree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\"},\"query\":\"query tree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n tree: object(oid: $sha) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:50:53 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4781", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7BAF:1510E:ABBE58:D141E7:5D77AA3D", + "content-length": "502", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"tree\":{\"id\":\"MDQ6VHJlZTIwNzU3MDg5MDowMjk0ZWYxMDZjNTg3NDM5MDdhNWM4NTVkYTFlYjBmODdiMGI2ZGZj\",\"sha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\"__typename\":\"Tree\",\"entries\":[{\"path\":\"pages\",\"sha\":\"1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"posts\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"}]}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"commitTree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\"},\"query\":\"query commitTree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n commit: object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n tree {\\n ...ObjectParts\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:50:53 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4782", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7BAC:2B0F:19CEE3:1F9BEA:5D77AA3D", + "content-length": "256", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"commit\":{\"id\":\"MDQ6VHJlZTIwNzU3MDg5MDowMjk0ZWYxMDZjNTg3NDM5MDdhNWM4NTVkYTFlYjBmODdiMGI2ZGZj\",\"sha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\"__typename\":\"Tree\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"tree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\"},\"query\":\"query tree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n tree: object(oid: $sha) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:50:54 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4780", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7BB3:9D21:172D2A3:1C3BD3E:5D77AA3D", + "content-length": "1075", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"tree\":{\"id\":\"MDQ6VHJlZTIwNzU3MDg5MDozNDg5MjU3NWUyMTZjMDZlNzU3MDkzZjAzNmJkOGUwNTdjNzhhNTJm\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"__typename\":\"Tree\",\"entries\":[{\"path\":\"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\"sha\":\"6d51a38aed7139d2117724b1e307657b6ff2d043\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\"sha\":\"d0582dd245a3f408fb3fe2333bf01400007476e9\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"2016-02-02---A-Brief-History-of-Typography.md\",\"sha\":\"0eea554365f002d0f1572af9a58522d335a794d5\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"2017-18-08---The-Birth-of-Movable-Type.md\",\"sha\":\"44f78c474d04273185a95821426f75affc9b0044\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\"sha\":\"a532f0a9445cdf90a19c6812cff89d1674991774\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"}]}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"commitTree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\"},\"query\":\"query commitTree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n commit: object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n tree {\\n ...ObjectParts\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:50:54 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4779", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7BB0:1510F:122633D:16063FC:5D77AA3D", + "content-length": "256", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"commit\":{\"id\":\"MDQ6VHJlZTIwNzU3MDg5MDozNDg5MjU3NWUyMTZjMDZlNzU3MDkzZjAzNmJkOGUwNTdjNzhhNTJm\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"__typename\":\"Tree\"}}}}\n", + "status": 200 + }, + { + "body": "{\"base_tree\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"tree\":[{\"path\":\"1970-01-01-first-title.md\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"a041245814892e3f73f63ca54333fda649b7fc0b\"}]}", + "method": "POST", + "url": "/repos/owner/repo/git/trees?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:50:55 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "2355", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4678", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"04d8c1d18d9458006d19b6d3b470f959\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BB4:B4DA:522FEB:644144:5D77AA3E", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a041245814892e3f73f63ca54333fda649b7fc0b\",\n \"size\": 167,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b\"\n },\n {\n \"path\": \"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"size\": 1707,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\"\n },\n {\n \"path\": \"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"size\": 2565,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\"\n },\n {\n \"path\": \"2016-02-02---A-Brief-History-of-Typography.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"0eea554365f002d0f1572af9a58522d335a794d5\",\n \"size\": 2786,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\"\n },\n {\n \"path\": \"2017-18-08---The-Birth-of-Movable-Type.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"44f78c474d04273185a95821426f75affc9b0044\",\n \"size\": 16071,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\"\n },\n {\n \"path\": \"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"size\": 7465,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"base_tree\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\"tree\":[{\"path\":\"posts\",\"mode\":\"040000\",\"type\":\"tree\",\"sha\":\"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\"parentSha\":\"34892575e216c06e757093f036bd8e057c78a52f\"}]}", + "method": "POST", + "url": "/repos/owner/repo/git/trees?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:50:56 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "828", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4677", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"44a8b3dc9f6d05e9ab92c5a4b2a88d1c\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BB6:244EB:17FBB0D:1D20DF4:5D77AA3F", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"tree\": [\n {\n \"path\": \"pages\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\"\n },\n {\n \"path\": \"posts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"base_tree\":\"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\"tree\":[{\"path\":\"content\",\"mode\":\"040000\",\"type\":\"tree\",\"sha\":\"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\"parentSha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\"}]}", + "method": "POST", + "url": "/repos/owner/repo/git/trees?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:50:56 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "11731", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4676", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"a4b7f86984e19e3dea0bb083fa1dce76\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/trees/daee8d5d15d144e8779955166a2afeccde2770e1", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BB8:244E7:11985FA:1578785:5D77AA40", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"daee8d5d15d144e8779955166a2afeccde2770e1\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/daee8d5d15d144e8779955166a2afeccde2770e1\",\n \"tree\": [\n {\n \"path\": \".circleci\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"e5e9af3301cac61f120b8e4d40b1733c7a45685a\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/e5e9af3301cac61f120b8e4d40b1733c7a45685a\"\n },\n {\n \"path\": \".eslintignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"80b4531b026d19f8fa589efd122e76199d23f967\",\n \"size\": 39,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/80b4531b026d19f8fa589efd122e76199d23f967\"\n },\n {\n \"path\": \".eslintrc.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"370684994aaed5b858da3a006f48cfa57e88fd27\",\n \"size\": 414,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/370684994aaed5b858da3a006f48cfa57e88fd27\"\n },\n {\n \"path\": \".flowconfig\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14aa2ac4cc0e15223ad98630a6f1325fc81f8043\",\n \"size\": 283,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14aa2ac4cc0e15223ad98630a6f1325fc81f8043\"\n },\n {\n \"path\": \".gitattributes\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"10a369ddf4f603337cabc6f21646508323941ce1\",\n \"size\": 135,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/10a369ddf4f603337cabc6f21646508323941ce1\"\n },\n {\n \"path\": \".github\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4ebeece548b52b20af59622354530a6d33b50b43\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4ebeece548b52b20af59622354530a6d33b50b43\"\n },\n {\n \"path\": \".gitignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"c071ba35b0e49899bab6d610a68eef667dbbf157\",\n \"size\": 169,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/c071ba35b0e49899bab6d610a68eef667dbbf157\"\n },\n {\n \"path\": \".prettierignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"393f050e123d998cf8c8b362ff95cc8ac4d250e5\",\n \"size\": 45,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/393f050e123d998cf8c8b362ff95cc8ac4d250e5\"\n },\n {\n \"path\": \".prettierrc\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e52ad05bb13b084d7949dd76e1b2517455162150\",\n \"size\": 223,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/e52ad05bb13b084d7949dd76e1b2517455162150\"\n },\n {\n \"path\": \".stylelintrc.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"4b4c9698d10d756f5faa025659b86375428ed0a7\",\n \"size\": 718,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/4b4c9698d10d756f5faa025659b86375428ed0a7\"\n },\n {\n \"path\": \".vscode\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"286e97ec0113ea8242b41ac222e2c3e8077e6f1e\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/286e97ec0113ea8242b41ac222e2c3e8077e6f1e\"\n },\n {\n \"path\": \"CHANGELOG.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"070a5d4f0eacd2dc0be81ae8996f8982de43046e\",\n \"size\": 2113,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/070a5d4f0eacd2dc0be81ae8996f8982de43046e\"\n },\n {\n \"path\": \"CODE_OF_CONDUCT.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"92bc7565ff0ee145a0041b5179a820f14f39ab22\",\n \"size\": 3355,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/92bc7565ff0ee145a0041b5179a820f14f39ab22\"\n },\n {\n \"path\": \"CONTRIBUTING.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"8552aa241254a61258e1ff9666ab36f32fb1e3b9\",\n \"size\": 3548,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/8552aa241254a61258e1ff9666ab36f32fb1e3b9\"\n },\n {\n \"path\": \"LICENSE\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"42d85938357b49977c126ca03b199129082d4fb8\",\n \"size\": 1091,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/42d85938357b49977c126ca03b199129082d4fb8\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"19df50a78654c8d757ca7f38447aa3d09c7abcce\",\n \"size\": 3698,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/19df50a78654c8d757ca7f38447aa3d09c7abcce\"\n },\n {\n \"path\": \"backend\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\"\n },\n {\n \"path\": \"config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"58afd573bbb69fcca000efd0f5d90b93c93a98dd\",\n \"size\": 853,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/58afd573bbb69fcca000efd0f5d90b93c93a98dd\"\n },\n {\n \"path\": \"content\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639\"\n },\n {\n \"path\": \"flow-typed\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"86c32fd6c3118be5e0dbbb231a834447357236c6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/86c32fd6c3118be5e0dbbb231a834447357236c6\"\n },\n {\n \"path\": \"flow\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"0af45ad00d155c8d8c7407d913ff85278244c9ce\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/0af45ad00d155c8d8c7407d913ff85278244c9ce\"\n },\n {\n \"path\": \"gatsby-browser.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9bd2c9dce175f04980e91cd9dc295a299e3cdb80\",\n \"size\": 90,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9bd2c9dce175f04980e91cd9dc295a299e3cdb80\"\n },\n {\n \"path\": \"gatsby-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"353a109dad62e3f25bf9f5e6a2167f21a6c8b459\",\n \"size\": 7228,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/353a109dad62e3f25bf9f5e6a2167f21a6c8b459\"\n },\n {\n \"path\": \"gatsby-node.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14a207883c2093d2cc071bc5a464e165bcc1fead\",\n \"size\": 409,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14a207883c2093d2cc071bc5a464e165bcc1fead\"\n },\n {\n \"path\": \"gatsby\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4f23c06cd1740bf78304d2c0b29bf6bfdf427981\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4f23c06cd1740bf78304d2c0b29bf6bfdf427981\"\n },\n {\n \"path\": \"jest\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\"\n },\n {\n \"path\": \"netlify.toml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"599b99cc5700404fde316a7ede829776f23e7d45\",\n \"size\": 137,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/599b99cc5700404fde316a7ede829776f23e7d45\"\n },\n {\n \"path\": \"package.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9d777616438b90a18f1a4ebfd5f114b4c06c6f17\",\n \"size\": 6855,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9d777616438b90a18f1a4ebfd5f114b4c06c6f17\"\n },\n {\n \"path\": \"postcss-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d216501e9b351a72e00ba0b7459a6500e27e7da2\",\n \"size\": 703,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d216501e9b351a72e00ba0b7459a6500e27e7da2\"\n },\n {\n \"path\": \"renovate.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"dcc309398785698b8870545c32051a3d72dd8271\",\n \"size\": 460,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/dcc309398785698b8870545c32051a3d72dd8271\"\n },\n {\n \"path\": \"serverless-scripts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ee3701f2fbfc7196ba340f6481d1387d20527898\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ee3701f2fbfc7196ba340f6481d1387d20527898\"\n },\n {\n \"path\": \"serverless-single-page-app-plugin\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"08763fcfba643a06a452398517019bea4a5850ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/08763fcfba643a06a452398517019bea4a5850ba\"\n },\n {\n \"path\": \"serverless.yml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"20b22c5fad229f35d029bf6614d333d82fe8a987\",\n \"size\": 7803,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/20b22c5fad229f35d029bf6614d333d82fe8a987\"\n },\n {\n \"path\": \"src\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"8cdb35a88232c0f32f12f130c92c7cc55f97f471\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/8cdb35a88232c0f32f12f130c92c7cc55f97f471\"\n },\n {\n \"path\": \"static\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"53c6380a600a030d3722bff7ecde36f749fb6964\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/53c6380a600a030d3722bff7ecde36f749fb6964\"\n },\n {\n \"path\": \"utils\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"a592549c9f74db40b51efefcda2fd76810405f27\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/a592549c9f74db40b51efefcda2fd76810405f27\"\n },\n {\n \"path\": \"yarn.lock\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"475c9c1924ca752a0686303e2fdeb7b13ad75f57\",\n \"size\": 793903,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/475c9c1924ca752a0686303e2fdeb7b13ad75f57\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"message\":\"Create Post “1970-01-01-first-title”\",\"tree\":\"daee8d5d15d144e8779955166a2afeccde2770e1\",\"parents\":[\"726172deae99c8a2cea4c71e734a02a793d4d9e5\"]}", + "method": "POST", + "url": "/repos/owner/repo/git/commits?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:50:57 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "1499", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4675", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"6ab65baf011813d25ecf5e711a54735b\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/commits/3253a630f5a262a8d3e74df8bb8021177d36e7ea", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BBA:B4DE:11E739E:15CAF71:5D77AA41", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"3253a630f5a262a8d3e74df8bb8021177d36e7ea\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NTcwODkwOjMyNTNhNjMwZjVhMjYyYThkM2U3NGRmOGJiODAyMTE3N2QzNmU3ZWE=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/3253a630f5a262a8d3e74df8bb8021177d36e7ea\",\n \"html_url\": \"https://github.com/owner/repo/commit/3253a630f5a262a8d3e74df8bb8021177d36e7ea\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T13:50:57Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T13:50:57Z\"\n },\n \"tree\": {\n \"sha\": \"daee8d5d15d144e8779955166a2afeccde2770e1\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/daee8d5d15d144e8779955166a2afeccde2770e1\"\n },\n \"message\": \"Create Post “1970-01-01-first-title”\",\n \"parents\": [\n {\n \"sha\": \"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"html_url\": \"https://github.com/owner/repo/commit/726172deae99c8a2cea4c71e734a02a793d4d9e5\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "status": 201 + }, + { + "body": "{\"operationName\":\"createBranchAndPullRequest\",\"variables\":{\"createRefInput\":{\"name\":\"refs/heads/cms/1970-01-01-first-title\",\"oid\":\"3253a630f5a262a8d3e74df8bb8021177d36e7ea\",\"repositoryId\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\"},\"createPullRequestInput\":{\"baseRefName\":\"master\",\"body\":\"Automatically generated by Netlify CMS\",\"title\":\"Create Post “1970-01-01-first-title”\",\"headRefName\":\"cms/1970-01-01-first-title\",\"repositoryId\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\"}},\"query\":\"mutation createBranchAndPullRequest($createRefInput: CreateRefInput!, $createPullRequestInput: CreatePullRequestInput!) {\\n createRef(input: $createRefInput) {\\n branch: ref {\\n ...BranchParts\\n __typename\\n }\\n __typename\\n }\\n createPullRequest(input: $createPullRequestInput) {\\n clientMutationId\\n pullRequest {\\n ...PullRequestParts\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment BranchParts on Ref {\\n commit: target {\\n ...ObjectParts\\n __typename\\n }\\n id\\n name\\n repository {\\n ...RepositoryParts\\n __typename\\n }\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment PullRequestParts on PullRequest {\\n id\\n baseRefName\\n body\\n headRefName\\n headRefOid\\n number\\n state\\n title\\n merged_at: mergedAt\\n repository {\\n ...RepositoryParts\\n __typename\\n }\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:50:59 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4778", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7BBE:1510E:ABC233:D146B2:5D77AA41", + "content-length": "952", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"createRef\":{\"branch\":{\"commit\":{\"id\":\"MDY6Q29tbWl0MjA3NTcwODkwOjMyNTNhNjMwZjVhMjYyYThkM2U3NGRmOGJiODAyMTE3N2QzNmU3ZWE=\",\"sha\":\"3253a630f5a262a8d3e74df8bb8021177d36e7ea\",\"__typename\":\"Commit\"},\"id\":\"MDM6UmVmMjA3NTcwODkwOmNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxl\",\"name\":\"cms/1970-01-01-first-title\",\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\"},\"__typename\":\"Ref\"},\"__typename\":\"CreateRefPayload\"},\"createPullRequest\":{\"clientMutationId\":null,\"pullRequest\":{\"id\":\"MDExOlB1bGxSZXF1ZXN0MzE2MDA1Mzg4\",\"baseRefName\":\"master\",\"body\":\"Automatically generated by Netlify CMS\",\"headRefName\":\"cms/1970-01-01-first-title\",\"headRefOid\":\"3253a630f5a262a8d3e74df8bb8021177d36e7ea\",\"number\":8,\"state\":\"OPEN\",\"title\":\"Create Post “1970-01-01-first-title”\",\"merged_at\":null,\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\"},\"__typename\":\"PullRequest\"},\"__typename\":\"CreatePullRequestPayload\"}}}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:51:00 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4674", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"f4136b35444e6e6b96133ea80c9acaa4\"", + "Last-Modified": "Tue, 10 Sep 2019 13:50:39 GMT", + "X-Poll-Interval": "300", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BC4:9D1E:4B1DFF:5BEB2D:5D77AA44", + "content-length": "482", + "connection": "keep-alive" + }, + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NTcwODkwOnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"e936c7bf318a8f4ad20980ddfd78bc57c8052ef6\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/e936c7bf318a8f4ad20980ddfd78bc57c8052ef6\"\n }\n}\n", + "status": 200 + }, + { + "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjgsImhlYWQiOiIzMjUzYTYzMGY1YTI2MmE4ZDNlNzRkZjhiYjgwMjExNzdkMzZlN2VhIn0sInVzZXIiOiJvd25lciIsInN0YXR1cyI6ImRyYWZ0IiwiYnJhbmNoIjoiY21zLzE5NzAtMDEtMDEtZmlyc3QtdGl0bGUiLCJjb2xsZWN0aW9uIjoicG9zdHMiLCJjb21taXRNZXNzYWdlIjoiQ3JlYXRlIFBvc3Qg4oCcMTk3MC0wMS0wMS1maXJzdC10aXRsZeKAnSIsInRpdGxlIjoiZmlyc3QgdGl0bGUiLCJkZXNjcmlwdGlvbiI6ImZpcnN0IGRlc2NyaXB0aW9uIiwib2JqZWN0cyI6eyJlbnRyeSI6eyJwYXRoIjoiY29udGVudC9wb3N0cy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxlLm1kIiwic2hhIjoiYTA0MTI0NTgxNDg5MmUzZjczZjYzY2E1NDMzM2ZkYTY0OWI3ZmMwYiJ9LCJmaWxlcyI6W119LCJ0aW1lU3RhbXAiOiIxOTcwLTAxLTAxVDAwOjAwOjAwLjMwMFoifQ==\",\"encoding\":\"base64\"}", + "method": "POST", + "url": "/repos/owner/repo/git/blobs?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:51:01 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "206", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4673", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"c5f67534d9d82711c52e525f5b4867d9\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/blobs/d08207b5f6f04533d32911a9a291f71b7f58deae", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BC8:2B15:4DDA2C:5E7B15:5D77AA44", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"d08207b5f6f04533d32911a9a291f71b7f58deae\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d08207b5f6f04533d32911a9a291f71b7f58deae\"\n}\n", + "status": 201 + }, + { + "body": "{\"operationName\":\"commitTree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"e936c7bf318a8f4ad20980ddfd78bc57c8052ef6\"},\"query\":\"query commitTree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n commit: object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n tree {\\n ...ObjectParts\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:51:02 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4777", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7BCA:2B24:17B9BC7:1CD72C5:5D77AA45", + "content-length": "979", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"commit\":{\"id\":\"MDY6Q29tbWl0MjA3NTcwODkwOmU5MzZjN2JmMzE4YThmNGFkMjA5ODBkZGZkNzhiYzU3YzgwNTJlZjY=\",\"sha\":\"e936c7bf318a8f4ad20980ddfd78bc57c8052ef6\",\"__typename\":\"Commit\",\"tree\":{\"id\":\"MDQ6VHJlZTIwNzU3MDg5MDo3OWIyNWNlZThhYWJjMTRhZTUxMDUwNjk4OTJiYTVhNjAxNWI1ODEz\",\"sha\":\"79b25cee8aabc14ae5105069892ba5a6015b5813\",\"__typename\":\"Tree\",\"entries\":[{\"path\":\"1970-01-01-first-title.json\",\"sha\":\"9626481dfa93edc9edf75fa7d539f38d57ee12aa\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"1970-01-01-second-title.json\",\"sha\":\"2c4876a5ca0015882b38a97c0b6afc7572afe5fe\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"1970-01-01-third-title.json\",\"sha\":\"20cfb011c8b3ec9936eb58c0fb1e2ffe54d52986\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"README.md\",\"sha\":\"98787d1bd948850444433e91a43091a76c4eb455\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"}]}}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"tree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"e936c7bf318a8f4ad20980ddfd78bc57c8052ef6\"},\"query\":\"query tree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n tree: object(oid: $sha) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:51:02 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4776", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7BCD:B4E0:16A8AE4:1B93D72:5D77AA45", + "content-length": "260", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"tree\":{\"id\":\"MDY6Q29tbWl0MjA3NTcwODkwOmU5MzZjN2JmMzE4YThmNGFkMjA5ODBkZGZkNzhiYzU3YzgwNTJlZjY=\",\"sha\":\"e936c7bf318a8f4ad20980ddfd78bc57c8052ef6\",\"__typename\":\"Commit\"}}}}\n", + "status": 200 + }, + { + "body": "{\"base_tree\":\"e936c7bf318a8f4ad20980ddfd78bc57c8052ef6\",\"tree\":[{\"path\":\"1970-01-01-first-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"d08207b5f6f04533d32911a9a291f71b7f58deae\"}]}", + "method": "POST", + "url": "/repos/owner/repo/git/trees?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:51:03 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "1559", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4672", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"c0a43ede7234e9bdb66ef9ee38cda53f\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/trees/deed60936691969eb9949de8c0eb5e040d7fbea1", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BCE:1510E:ABC666:D14C06:5D77AA46", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"deed60936691969eb9949de8c0eb5e040d7fbea1\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/deed60936691969eb9949de8c0eb5e040d7fbea1\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d08207b5f6f04533d32911a9a291f71b7f58deae\",\n \"size\": 462,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d08207b5f6f04533d32911a9a291f71b7f58deae\"\n },\n {\n \"path\": \"1970-01-01-second-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"2c4876a5ca0015882b38a97c0b6afc7572afe5fe\",\n \"size\": 477,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/2c4876a5ca0015882b38a97c0b6afc7572afe5fe\"\n },\n {\n \"path\": \"1970-01-01-third-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"20cfb011c8b3ec9936eb58c0fb1e2ffe54d52986\",\n \"size\": 472,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/20cfb011c8b3ec9936eb58c0fb1e2ffe54d52986\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"message\":\"Updating “1970-01-01-first-title” metadata\",\"tree\":\"deed60936691969eb9949de8c0eb5e040d7fbea1\",\"parents\":[\"e936c7bf318a8f4ad20980ddfd78bc57c8052ef6\"]}", + "method": "POST", + "url": "/repos/owner/repo/git/commits?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:51:04 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "1505", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4671", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"5dc368d2b76f3c3e259b09527a04dad0\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/commits/a1790e9cb2f4a8416cd69f1fde7a2504fc00baf3", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BD2:244EB:17FC8B5:1D21EF8:5D77AA47", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"a1790e9cb2f4a8416cd69f1fde7a2504fc00baf3\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NTcwODkwOmExNzkwZTljYjJmNGE4NDE2Y2Q2OWYxZmRlN2EyNTA0ZmMwMGJhZjM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/a1790e9cb2f4a8416cd69f1fde7a2504fc00baf3\",\n \"html_url\": \"https://github.com/owner/repo/commit/a1790e9cb2f4a8416cd69f1fde7a2504fc00baf3\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T13:51:04Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T13:51:04Z\"\n },\n \"tree\": {\n \"sha\": \"deed60936691969eb9949de8c0eb5e040d7fbea1\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/deed60936691969eb9949de8c0eb5e040d7fbea1\"\n },\n \"message\": \"Updating “1970-01-01-first-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"e936c7bf318a8f4ad20980ddfd78bc57c8052ef6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/e936c7bf318a8f4ad20980ddfd78bc57c8052ef6\",\n \"html_url\": \"https://github.com/owner/repo/commit/e936c7bf318a8f4ad20980ddfd78bc57c8052ef6\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "status": 201 + }, + { + "body": "{\"sha\":\"a1790e9cb2f4a8416cd69f1fde7a2504fc00baf3\",\"force\":false}", + "method": "PATCH", + "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:51:05 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4670", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"1a07ea0b25439cc53d4dcc7f69cbda7e\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BD6:1510A:22F13:2C52A:5D77AA48", + "content-length": "482", + "connection": "keep-alive" + }, + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NTcwODkwOnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"a1790e9cb2f4a8416cd69f1fde7a2504fc00baf3\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/a1790e9cb2f4a8416cd69f1fde7a2504fc00baf3\"\n }\n}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"unpublishedBranchFile\",\"variables\":{\"headOwner\":\"owner\",\"headRepoName\":\"repo\",\"headExpression\":\"cms/1970-01-01-first-title:content/posts/1970-01-01-first-title.md\",\"baseOwner\":\"owner\",\"baseRepoName\":\"repo\",\"baseExpression\":\"master:content/posts/1970-01-01-first-title.md\"},\"query\":\"query unpublishedBranchFile($headOwner: String!, $headRepoName: String!, $headExpression: String!, $baseOwner: String!, $baseRepoName: String!, $baseExpression: String!) {\\n head: repository(owner: $headOwner, name: $headRepoName) {\\n ...RepositoryParts\\n object(expression: $headExpression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n base: repository(owner: $baseOwner, name: $baseRepoName) {\\n ...RepositoryParts\\n object(expression: $baseExpression) {\\n ... on Blob {\\n id\\n oid\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:51:06 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4775", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7BD7:1510F:1227261:16076FB:5D77AA49", + "content-length": "496", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"head\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzU3MDg5MDphMDQxMjQ1ODE0ODkyZTNmNzNmNjNjYTU0MzMzZmRhNjQ5YjdmYzBi\",\"text\":\"---\\ntemplate: post\\ntitle: first title\\ndraft: true\\ndate: 1970-01-01T00:00:00.000Z\\ndescription: first description\\ncategory: first category\\ntags:\\n - tag1\\n---\\nfirst body\\n\",\"is_binary\":false,\"__typename\":\"Blob\"}},\"base\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"object\":null}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"statues\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"3253a630f5a262a8d3e74df8bb8021177d36e7ea\"},\"query\":\"query statues($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n status {\\n id\\n contexts {\\n id\\n context\\n state\\n target_url: targetUrl\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:51:07 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4774", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7BD8:244E4:AE80D3:D3714E:5D77AA4A", + "content-length": "276", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDY6Q29tbWl0MjA3NTcwODkwOjMyNTNhNjMwZjVhMjYyYThkM2U3NGRmOGJiODAyMTE3N2QzNmU3ZWE=\",\"sha\":\"3253a630f5a262a8d3e74df8bb8021177d36e7ea\",\"__typename\":\"Commit\",\"status\":null}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"closePullRequestAndDeleteBranch\",\"variables\":{\"deleteRefInput\":{\"refId\":\"MDM6UmVmMjA3NTcwODkwOmNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxl\"},\"closePullRequestInput\":{\"pullRequestId\":\"MDExOlB1bGxSZXF1ZXN0MzE2MDA1Mzg4\"}},\"query\":\"mutation closePullRequestAndDeleteBranch($closePullRequestInput: ClosePullRequestInput!, $deleteRefInput: DeleteRefInput!) {\\n closePullRequest(input: $closePullRequestInput) {\\n clientMutationId\\n pullRequest {\\n ...PullRequestParts\\n __typename\\n }\\n __typename\\n }\\n deleteRef(input: $deleteRefInput) {\\n clientMutationId\\n __typename\\n }\\n}\\n\\nfragment PullRequestParts on PullRequest {\\n id\\n baseRefName\\n body\\n headRefName\\n headRefOid\\n number\\n state\\n title\\n merged_at: mergedAt\\n repository {\\n ...RepositoryParts\\n __typename\\n }\\n __typename\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:51:07 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4773", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7BDA:1510D:46BF62:56C048:5D77AA4A", + "content-length": "595", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"closePullRequest\":{\"clientMutationId\":null,\"pullRequest\":{\"id\":\"MDExOlB1bGxSZXF1ZXN0MzE2MDA1Mzg4\",\"baseRefName\":\"master\",\"body\":\"Automatically generated by Netlify CMS\",\"headRefName\":\"cms/1970-01-01-first-title\",\"headRefOid\":\"3253a630f5a262a8d3e74df8bb8021177d36e7ea\",\"number\":8,\"state\":\"CLOSED\",\"title\":\"Create Post “1970-01-01-first-title”\",\"merged_at\":null,\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\"},\"__typename\":\"PullRequest\"},\"__typename\":\"ClosePullRequestPayload\"},\"deleteRef\":{\"clientMutationId\":null,\"__typename\":\"DeleteRefPayload\"}}}\n", + "status": 200 + } +] \ No newline at end of file diff --git a/cypress/fixtures/Github Backend Editorial Workflow - GraphQL API__can publish an editorial workflow entry.json b/cypress/fixtures/Github Backend Editorial Workflow - GraphQL API__can publish an editorial workflow entry.json new file mode 100644 index 00000000..2a1a5279 --- /dev/null +++ b/cypress/fixtures/Github Backend Editorial Workflow - GraphQL API__can publish an editorial workflow entry.json @@ -0,0 +1,1568 @@ +[ + { + "body": "{\"operationName\":null,\"variables\":{},\"query\":\"{\\n viewer {\\n id\\n avatar_url: avatarUrl\\n name\\n login\\n __typename\\n }\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:46:44 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4919", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7AF0:2B1F:120813A:160061C:5D77A943", + "content-length": "179", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"viewer\":{\"id\":\"MDQ6VXNlcjI2NzYwNTcx\",\"avatar_url\":\"https://avatars1.githubusercontent.com/u/7892489?v=4\",\"name\":\"owner\",\"login\":\"owner\",\"__typename\":\"User\"}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"repoPermission\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\"},\"query\":\"query repoPermission($owner: String!, $name: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n viewerPermission\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:46:45 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4918", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7AF2:2B0F:19A57D:1F688C:5D77A944", + "content-length": "119", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"viewerPermission\":\"ADMIN\"}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"files\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"master:content/posts\"},\"query\":\"query files($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...FileEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment FileEntryParts on TreeEntry {\\n name\\n sha: oid\\n type\\n blob: object {\\n ... on Blob {\\n size: byteSize\\n __typename\\n }\\n __typename\\n }\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:46:46 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4917", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7AF4:B4E0:168F4DF:1B74925:5D77A945", + "content-length": "1218", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6VHJlZTIwNzU3MDg5MDozNDg5MjU3NWUyMTZjMDZlNzU3MDkzZjAzNmJkOGUwNTdjNzhhNTJm\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"__typename\":\"Tree\",\"entries\":[{\"name\":\"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\"sha\":\"6d51a38aed7139d2117724b1e307657b6ff2d043\",\"type\":\"blob\",\"blob\":{\"size\":1707,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\"sha\":\"d0582dd245a3f408fb3fe2333bf01400007476e9\",\"type\":\"blob\",\"blob\":{\"size\":2565,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2016-02-02---A-Brief-History-of-Typography.md\",\"sha\":\"0eea554365f002d0f1572af9a58522d335a794d5\",\"type\":\"blob\",\"blob\":{\"size\":2786,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2017-18-08---The-Birth-of-Movable-Type.md\",\"sha\":\"44f78c474d04273185a95821426f75affc9b0044\",\"type\":\"blob\",\"blob\":{\"size\":16071,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\"sha\":\"a532f0a9445cdf90a19c6812cff89d1674991774\",\"type\":\"blob\",\"blob\":{\"size\":7465,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"}]}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"files\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"master:static/media\"},\"query\":\"query files($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...FileEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment FileEntryParts on TreeEntry {\\n name\\n sha: oid\\n type\\n blob: object {\\n ... on Blob {\\n size: byteSize\\n __typename\\n }\\n __typename\\n }\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:46:46 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4916", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7AF6:1510F:1212B3A:15EE2D6:5D77A945", + "content-length": "1837", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6VHJlZTIwNzU3MDg5MDo5Yjc2OTliNTdlMTQzMDkxMGRiODI4MzFkY2Y2YjhhMWQxZGJkYWM5\",\"sha\":\"9b7699b57e1430910db82831dcf6b8a1d1dbdac9\",\"__typename\":\"Tree\",\"entries\":[{\"name\":\"42-line-bible.jpg\",\"sha\":\"41c8d12f9ca5864beb827c381fbeff935209d5fb\",\"type\":\"blob\",\"blob\":{\"size\":671242,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"gutenberg.jpg\",\"sha\":\"04315e355873ea5d358d9c371c39a6845c1ae4ae\",\"type\":\"blob\",\"blob\":{\"size\":155002,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-0.jpg\",\"sha\":\"b70a1b64fd4fa9635823231a0ba92c6dc9393f16\",\"type\":\"blob\",\"blob\":{\"size\":660287,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-1.jpg\",\"sha\":\"05eedae372b829c62501ac751b2d42dcc432541b\",\"type\":\"blob\",\"blob\":{\"size\":392411,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-2.jpg\",\"sha\":\"53845ed35faf8939bea242bb85eda7c324b1be0b\",\"type\":\"blob\",\"blob\":{\"size\":99147,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-3.jpg\",\"sha\":\"8b2339d97069e826fae1f156212e40ae458454e3\",\"type\":\"blob\",\"blob\":{\"size\":358022,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-4.jpg\",\"sha\":\"a8f6f21253a67a4284b5a953b2fe633d44152ecd\",\"type\":\"blob\",\"blob\":{\"size\":114837,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"movable-type.jpg\",\"sha\":\"57b4e925ea00bd8e195cf4418eb6eb2995ea5f10\",\"type\":\"blob\",\"blob\":{\"size\":559028,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"printing-press.jpg\",\"sha\":\"d27f56c9437d9becd2f56cc627c9322c2f1f61f6\",\"type\":\"blob\",\"blob\":{\"size\":279283,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"type-through-time.jpg\",\"sha\":\"3f08366a805c51a60ec5056010f22de4ba08abaa\",\"type\":\"blob\",\"blob\":{\"size\":117689,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"}]}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"6d51a38aed7139d2117724b1e307657b6ff2d043\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:46:47 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4914", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7AF8:B4E0:168F650:1B74AE5:5D77A946", + "content-length": "1973", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzU3MDg5MDo2ZDUxYTM4YWVkNzEzOWQyMTE3NzI0YjFlMzA3NjU3YjZmZjJkMDQz\",\"text\":\"---\\ntitle: Perfecting the Art of Perfection\\ndate: \\\"2016-09-01T23:46:37.121Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Design Inspiration\\\"\\ntags:\\n - \\\"Handwriting\\\"\\n - \\\"Learning to write\\\"\\ndescription: \\\"Quisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\\\"\\ncanonical: ''\\n---\\n\\nQuisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\\n\\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-2.jpg)\\n\\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. \\n\\nPraesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"d0582dd245a3f408fb3fe2333bf01400007476e9\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:46:47 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4915", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7AFA:9D20:11313FF:1505C3C:5D77A946", + "content-length": "2866", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzU3MDg5MDpkMDU4MmRkMjQ1YTNmNDA4ZmIzZmUyMzMzYmYwMTQwMDAwNzQ3NmU5\",\"text\":\"---\\ntitle: The Origins of Social Stationery Lettering\\ndate: \\\"2016-12-01T22:40:32.169Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Design Culture\\\"\\ndescription: \\\"Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante.\\\"\\ncanonical: ''\\n---\\n\\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \\n\\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\\n\\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-3.jpg)\\n\\n## Header Level 2\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \\n\\n
\\n\\t
\\n\\t\\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\\n\\t\\t
\\n\\t\\t\\t— Aliquam tincidunt mauris eu risus.\\n\\t\\t
\\n\\t
\\n
\\n\\n### Header Level 3\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\\n\\n```css\\n#header h1 a {\\n display: block;\\n width: 300px;\\n height: 80px;\\n}\\n```\\n\\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"44f78c474d04273185a95821426f75affc9b0044\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:46:47 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4913", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7AFE:3ED70:6441E:7D908:5D77A946", + "content-length": "16478", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzU3MDg5MDo0NGY3OGM0NzRkMDQyNzMxODVhOTU4MjE0MjZmNzVhZmZjOWIwMDQ0\",\"text\":\"---\\ntitle: \\\"Johannes Gutenberg: The Birth of Movable Type\\\"\\ndate: \\\"2017-08-18T22:12:03.284Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Typography\\\"\\ntags:\\n - \\\"Open source\\\"\\n - \\\"Gatsby\\\"\\n - \\\"Typography\\\"\\ndescription: \\\"German inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\\\"\\ncanonical: ''\\n---\\n\\nGerman inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\\n\\n**Johannes Gensfleisch zur Laden zum Gutenberg** (c. 1398 – 1468) was a German blacksmith, goldsmith, printer, and publisher who introduced printing to Europe. His invention of mechanical movable type printing started the Printing Revolution and is widely regarded as the most important event of the modern period. It played a key role in the development of the Renaissance, Reformation, the Age of Enlightenment, and the Scientific revolution and laid the material basis for the modern knowledge-based economy and the spread of learning to the masses.\\n\\n
\\n\\t\\\"Gutenberg\\\"\\n\\t
Johannes Gutenberg
\\n
\\n\\nWith his invention of the printing press, Gutenberg was the first European to use movable type printing, in around 1439. Among his many contributions to printing are: the invention of a process for mass-producing movable type; the use of oil-based ink; and the use of a wooden printing press similar to the agricultural screw presses of the period. His truly epochal invention was the combination of these elements into a practical system that allowed the mass production of printed books and was economically viable for printers and readers alike. Gutenberg's method for making type is traditionally considered to have included a type metal alloy and a hand mould for casting type. The alloy was a mixture of lead, tin, and antimony that melted at a relatively low temperature for faster and more economical casting, cast well, and created a durable type.\\n\\nIn Renaissance Europe, the arrival of mechanical movable type printing introduced the era of mass communication which permanently altered the structure of society. The relatively unrestricted circulation of information — including revolutionary ideas — transcended borders, captured the masses in the Reformation and threatened the power of political and religious authorities; the sharp increase in literacy broke the monopoly of the literate elite on education and learning and bolstered the emerging middle class. Across Europe, the increasing cultural self-awareness of its people led to the rise of proto-nationalism, accelerated by the flowering of the European vernacular languages to the detriment of Latin's status as lingua franca. In the 19th century, the replacement of the hand-operated Gutenberg-style press by steam-powered rotary presses allowed printing on an industrial scale, while Western-style printing was adopted all over the world, becoming practically the sole medium for modern bulk printing.\\n\\nThe use of movable type was a marked improvement on the handwritten manuscript, which was the existing method of book production in Europe, and upon woodblock printing, and revolutionized European book-making. Gutenberg's printing technology spread rapidly throughout Europe and later the world.\\n\\nHis major work, the Gutenberg Bible (also known as the 42-line Bible), has been acclaimed for its high aesthetic and technical quality.\\n\\n## Printing Press\\n\\nAround 1439, Gutenberg was involved in a financial misadventure making polished metal mirrors (which were believed to capture holy light from religious relics) for sale to pilgrims to Aachen: in 1439 the city was planning to exhibit its collection of relics from Emperor Charlemagne but the event was delayed by one year due to a severe flood and the capital already spent could not be repaid. When the question of satisfying the investors came up, Gutenberg is said to have promised to share a “secret”. It has been widely speculated that this secret may have been the idea of printing with movable type. Also around 1439–1440, the Dutch Laurens Janszoon Coster came up with the idea of printing. Legend has it that the idea came to him “like a ray of light”.\\n\\n
\\n\\t\\\"Early\\n\\t
Early wooden printing press as depicted in 1568.
\\n
\\n\\nUntil at least 1444 he lived in Strasbourg, most likely in the St. Arbogast parish. It was in Strasbourg in 1440 that Gutenberg is said to have perfected and unveiled the secret of printing based on his research, mysteriously entitled Kunst und Aventur (art and enterprise). It is not clear what work he was engaged in, or whether some early trials with printing from movable type may have been conducted there. After this, there is a gap of four years in the record. In 1448, he was back in Mainz, where he took out a loan from his brother-in-law Arnold Gelthus, quite possibly for a printing press or related paraphernalia. By this date, Gutenberg may have been familiar with intaglio printing; it is claimed that he had worked on copper engravings with an artist known as the Master of Playing Cards.\\n\\nBy 1450, the press was in operation, and a German poem had been printed, possibly the first item to be printed there. Gutenberg was able to convince the wealthy moneylender Johann Fust for a loan of 800 guilders. Peter Schöffer, who became Fust’s son-in-law, also joined the enterprise. Schöffer had worked as a scribe in Paris and is believed to have designed some of the first typefaces.\\n\\n
\\n\\t
\\n\\t\\t

All that has been written to me about that marvelous man seen at Frankfurt is true. I have not seen complete Bibles but only a number of quires of various books of the Bible. The script was very neat and legible, not at all difficult to follow—your grace would be able to read it without effort, and indeed without glasses.

\\n\\t\\t
\\n\\t\\t\\t—Future pope Pius II in a letter to Cardinal Carvajal, March 1455\\n\\t\\t
\\n\\t
\\n
\\n\\nGutenberg's workshop was set up at Hof Humbrecht, a property belonging to a distant relative. It is not clear when Gutenberg conceived the Bible project, but for this he borrowed another 800 guilders from Fust, and work commenced in 1452. At the same time, the press was also printing other, more lucrative texts (possibly Latin grammars). There is also some speculation that there may have been two presses, one for the pedestrian texts, and one for the Bible. One of the profit-making enterprises of the new press was the printing of thousands of indulgences for the church, documented from 1454–55.\\n\\nIn 1455 Gutenberg completed his 42-line Bible, known as the Gutenberg Bible. About 180 copies were printed, most on paper and some on vellum.\\n\\n## Court Case\\n\\nSome time in 1456, there was a dispute between Gutenberg and Fust, and Fust demanded his money back, accusing Gutenberg of misusing the funds. Meanwhile the expenses of the Bible project had proliferated, and Gutenberg's debt now exceeded 20,000 guilders. Fust sued at the archbishop's court. A November 1455 legal document records that there was a partnership for a \\\"project of the books,\\\" the funds for which Gutenberg had used for other purposes, according to Fust. The court decided in favor of Fust, giving him control over the Bible printing workshop and half of all printed Bibles.\\n\\nThus Gutenberg was effectively bankrupt, but it appears he retained (or re-started) a small printing shop, and participated in the printing of a Bible in the town of Bamberg around 1459, for which he seems at least to have supplied the type. But since his printed books never carry his name or a date, it is difficult to be certain, and there is consequently a considerable scholarly debate on this subject. It is also possible that the large Catholicon dictionary, 300 copies of 754 pages, printed in Mainz in 1460, may have been executed in his workshop.\\n\\nMeanwhile, the Fust–Schöffer shop was the first in Europe to bring out a book with the printer's name and date, the Mainz Psalter of August 1457, and while proudly proclaiming the mechanical process by which it had been produced, it made no mention of Gutenberg.\\n\\n## Later Life\\n\\nIn 1462, during a conflict between two archbishops, Mainz was sacked by archbishop Adolph von Nassau, and Gutenberg was exiled. An old man by now, he moved to Eltville where he may have initiated and supervised a new printing press belonging to the brothers Bechtermünze.\\n\\nIn January 1465, Gutenberg's achievements were recognized and he was given the title Hofmann (gentleman of the court) by von Nassau. This honor included a stipend, an annual court outfit, as well as 2,180 litres of grain and 2,000 litres of wine tax-free. It is believed he may have moved back to Mainz around this time, but this is not certain.\\n\\n***\\n\\nGutenberg died in 1468 and was buried in the Franciscan church at Mainz, his contributions largely unknown. This church and the cemetery were later destroyed, and Gutenberg's grave is now lost.\\n\\nIn 1504, he was mentioned as the inventor of typography in a book by Professor Ivo Wittig. It was not until 1567 that the first portrait of Gutenberg, almost certainly an imaginary reconstruction, appeared in Heinrich Pantaleon's biography of famous Germans.\\n\\n## Printing Method With Movable Type\\n\\nGutenberg's early printing process, and what tests he may have made with movable type, are not known in great detail. His later Bibles were printed in such a way as to have required large quantities of type, some estimates suggesting as many as 100,000 individual sorts. Setting each page would take, perhaps, half a day, and considering all the work in loading the press, inking the type, pulling the impressions, hanging up the sheets, distributing the type, etc., it is thought that the Gutenberg–Fust shop might have employed as many as 25 craftsmen.\\n\\n![Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5](/media/movable-type.jpg)\\n\\n*Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5*\\n\\nGutenberg's technique of making movable type remains unclear. In the following decades, punches and copper matrices became standardized in the rapidly disseminating printing presses across Europe. Whether Gutenberg used this sophisticated technique or a somewhat primitive version has been the subject of considerable debate.\\n\\nIn the standard process of making type, a hard metal punch (made by punchcutting, with the letter carved back to front) is hammered into a softer copper bar, creating a matrix. This is then placed into a hand-held mould and a piece of type, or \\\"sort\\\", is cast by filling the mould with molten type-metal; this cools almost at once, and the resulting piece of type can be removed from the mould. The matrix can be reused to create hundreds, or thousands, of identical sorts so that the same character appearing anywhere within the book will appear very uniform, giving rise, over time, to the development of distinct styles of typefaces or fonts. After casting, the sorts are arranged into type-cases, and used to make up pages which are inked and printed, a procedure which can be repeated hundreds, or thousands, of times. The sorts can be reused in any combination, earning the process the name of “movable type”.\\n\\nThe invention of the making of types with punch, matrix and mold has been widely attributed to Gutenberg. However, recent evidence suggests that Gutenberg's process was somewhat different. If he used the punch and matrix approach, all his letters should have been nearly identical, with some variations due to miscasting and inking. However, the type used in Gutenberg's earliest work shows other variations.\\n\\n
\\n\\t
\\n\\t\\t

It is a press, certainly, but a press from which shall flow in inexhaustible streams… Through it, god will spread his word.

\\n\\t\\t
\\n\\t\\t\\t—Johannes Gutenberg\\n\\t\\t
\\n\\t
\\n
\\n\\nIn 2001, the physicist Blaise Agüera y Arcas and Princeton librarian Paul Needham, used digital scans of a Papal bull in the Scheide Library, Princeton, to carefully compare the same letters (types) appearing in different parts of the printed text. The irregularities in Gutenberg's type, particularly in simple characters such as the hyphen, suggested that the variations could not have come from either ink smear or from wear and damage on the pieces of metal on the types themselves. While some identical types are clearly used on other pages, other variations, subjected to detailed image analysis, suggested that they could not have been produced from the same matrix. Transmitted light pictures of the page also appeared to reveal substructures in the type that could not arise from traditional punchcutting techniques. They hypothesized that the method may have involved impressing simple shapes to create alphabets in “cuneiform” style in a matrix made of some soft material, perhaps sand. Casting the type would destroy the mould, and the matrix would need to be recreated to make each additional sort. This could explain the variations in the type, as well as the substructures observed in the printed images.\\n\\nThus, they feel that “the decisive factor for the birth of typography”, the use of reusable moulds for casting type, might have been a more progressive process than was previously thought. They suggest that the additional step of using the punch to create a mould that could be reused many times was not taken until twenty years later, in the 1470s. Others have not accepted some or all of their suggestions, and have interpreted the evidence in other ways, and the truth of the matter remains very uncertain.\\n\\nA 1568 history by Hadrianus Junius of Holland claims that the basic idea of the movable type came to Gutenberg from Laurens Janszoon Coster via Fust, who was apprenticed to Coster in the 1430s and may have brought some of his equipment from Haarlem to Mainz. While Coster appears to have experimented with moulds and castable metal type, there is no evidence that he had actually printed anything with this technology. He was an inventor and a goldsmith. However, there is one indirect supporter of the claim that Coster might be the inventor. The author of the Cologne Chronicle of 1499 quotes Ulrich Zell, the first printer of Cologne, that printing was performed in Mainz in 1450, but that some type of printing of lower quality had previously occurred in the Netherlands. However, the chronicle does not mention the name of Coster, while it actually credits Gutenberg as the \\\"first inventor of printing\\\" in the very same passage (fol. 312). The first securely dated book by Dutch printers is from 1471, and the Coster connection is today regarded as a mere legend.\\n\\nThe 19th century printer and typefounder Fournier Le Jeune suggested that Gutenberg might not have been using type cast with a reusable matrix, but possibly wooden types that were carved individually. A similar suggestion was made by Nash in 2004. This remains possible, albeit entirely unproven.\\n\\nIt has also been questioned whether Gutenberg used movable types at all. In 2004, Italian professor Bruno Fabbiani claimed that examination of the 42-line Bible revealed an overlapping of letters, suggesting that Gutenberg did not in fact use movable type (individual cast characters) but rather used whole plates made from a system somewhat like a modern typewriter, whereby the letters were stamped successively into the plate and then printed. However, most specialists regard the occasional overlapping of type as caused by paper movement over pieces of type of slightly unequal height.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"0eea554365f002d0f1572af9a58522d335a794d5\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:46:47 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4912", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7AFC:B4DA:51ABE0:63A247:5D77A946", + "content-length": "3102", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzU3MDg5MDowZWVhNTU0MzY1ZjAwMmQwZjE1NzJhZjlhNTg1MjJkMzM1YTc5NGQ1\",\"text\":\"---\\ntitle: \\\"A Brief History of Typography\\\"\\ndate: \\\"2016-02-02T22:40:32.169Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Design Inspiration\\\"\\ntags:\\n - \\\"Linotype\\\"\\n - \\\"Monotype\\\"\\n - \\\"History of typography\\\"\\n - \\\"Helvetica\\\"\\ndescription: \\\"Morbi in sem quis dui placerat ornare. Pellentesque odio nisi, euismod in, pharetra a, ultricies in, diam. Sed arcu. Cras consequat.\\\"\\ncanonical: ''\\n---\\n\\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \\n\\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\\n\\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-0.jpg)\\n\\n## Header Level 2\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \\n\\n
\\n\\t
\\n\\t\\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\\n\\t\\t
\\n\\t\\t\\t— Aliquam tincidunt mauris eu risus.\\n\\t\\t
\\n\\t
\\n
\\n\\n### Header Level 3\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\\n\\n```css\\n#header h1 a {\\n display: block;\\n width: 300px;\\n height: 80px;\\n}\\n```\\n\\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"a532f0a9445cdf90a19c6812cff89d1674991774\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:46:47 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4911", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7B00:15110:1857726:1D9209F:5D77A946", + "content-length": "7803", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzU3MDg5MDphNTMyZjBhOTQ0NWNkZjkwYTE5YzY4MTJjZmY4OWQxNjc0OTkxNzc0\",\"text\":\"---\\ntitle: Humane Typography in the Digital Age\\ndate: \\\"2017-08-19T22:40:32.169Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Typography\\\"\\ntags:\\n - \\\"Design\\\"\\n - \\\"Typography\\\"\\n - \\\"Web Development\\\"\\ndescription: \\\"An Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\\\"\\ncanonical: ''\\n---\\n\\n- [The first transition](#the-first-transition)\\n- [The digital age](#the-digital-age)\\n- [Loss of humanity through transitions](#loss-of-humanity-through-transitions)\\n- [Chasing perfection](#chasing-perfection)\\n\\nAn Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\\n\\nThe typography of this industrial age was no longer handcrafted. Mass production and profit became more important. Quantity mattered more than the quality. The books and printed works in general lost a part of its humanity. The typefaces were not produced by craftsmen anymore. It was the machines printing and tying the books together now. The craftsmen had to let go of their craft and became a cog in the process. An extension of the industrial machine.\\n\\nBut the victory of the industrialism didn’t mean that the craftsmen were completely extinct. The two worlds continued to coexist independently. Each recognising the good in the other — the power of industrialism and the humanity of craftsmanship. This was the second transition that would strip typography of a part of its humanity. We have to go 500 years back in time to meet the first one.\\n\\n## The first transition\\n\\nA similar conflict emerged after the invention of the first printing press in Europe. Johannes Gutenberg invented movable type and used it to produce different compositions. His workshop could print up to 240 impressions per hour. Until then, the books were being copied by hand. All the books were handwritten and decorated with hand drawn ornaments and figures. A process of copying a book was long but each book, even a copy, was a work of art.\\n\\nThe first printed books were, at first, perceived as inferior to the handwritten ones. They were smaller and cheaper to produce. Movable type provided the printers with flexibility that allowed them to print books in languages other than Latin. Gill describes the transition to industrialism as something that people needed and wanted. Something similar happened after the first printed books emerged. People wanted books in a language they understood and they wanted books they could take with them. They were hungry for knowledge and printed books satisfied this hunger.\\n\\n![42-line-bible.jpg](/media/42-line-bible.jpg)\\n\\n*The 42–Line Bible, printed by Gutenberg.*\\n\\nBut, through this transition, the book lost a large part of its humanity. The machine took over most of the process but craftsmanship was still a part of it. The typefaces were cut manually by the first punch cutters. The paper was made by hand. The illustrations and ornaments were still being hand drawn. These were the remains of the craftsmanship that went almost extinct in the times of Eric Gill.\\n\\n## The digital age\\n\\nThe first transition took away a large part of humanity from written communication. Industrialisation, the second transition described by Eric Gill, took away most of what was left. But it’s the third transition that stripped it naked. Typefaces are faceless these days. They’re just fonts on our computers. Hardly anyone knows their stories. Hardly anyone cares. Flicking through thousands of typefaces and finding the “right one” is a matter of minutes.\\n\\n> In the new computer age the proliferation of typefaces and type manipulations represents a new level of visual pollution threatening our culture. Out of thousands of typefaces, all we need are a few basic ones, and trash the rest.\\n>\\n— Massimo Vignelli\\n\\nTypography is not about typefaces. It’s not about what looks best, it’s about what feels right. What communicates the message best. Typography, in its essence, is about the message. “Typographical design should perform optically what the speaker creates through voice and gesture of his thoughts.”, as El Lissitzky, a famous Russian typographer, put it.\\n\\n## Loss of humanity through transitions\\n\\nEach transition took away a part of humanity from written language. Handwritten books being the most humane form and the digital typefaces being the least. Overuse of Helvetica is a good example. Messages are being told in a typeface just because it’s a safe option. It’s always there. Everyone knows it but yet, nobody knows it. Stop someone on the street and ask him what Helvetica is? Ask a designer the same question. Ask him where it came from, when, why and who designed it. Most of them will fail to answer these questions. Most of them used it in their precious projects but they still don’t spot it in the street.\\n\\n
\\n\\t
\\n\\t\\t

Knowledge of the quality of a typeface is of the greatest importance for the functional, aesthetic and psychological effect.

\\n\\t\\t
\\n\\t\\t\\t— Josef Mueller-Brockmann\\n\\t\\t
\\n\\t
\\n
\\n\\nTypefaces don’t look handmade these days. And that’s all right. They don’t have to. Industrialism took that away from them and we’re fine with it. We’ve traded that part of humanity for a process that produces more books that are easier to read. That can’t be bad. And it isn’t.\\n\\n> Humane typography will often be comparatively rough and even uncouth; but while a certain uncouthness does not seriously matter in humane works, uncouthness has no excuse whatever in the productions of the machine.\\n>\\n> — Eric Gill\\n\\nWe’ve come close to “perfection” in the last five centuries. The letters are crisp and without rough edges. We print our compositions with high–precision printers on a high quality, machine made paper.\\n\\n![type-through-time.jpg](/media/type-through-time.jpg)\\n\\n*Type through 5 centuries.*\\n\\nWe lost a part of ourselves because of this chase after perfection. We forgot about the craftsmanship along the way. And the worst part is that we don’t care. The transition to the digital age made that clear. We choose typefaces like clueless zombies. There’s no meaning in our work. Type sizes, leading, margins… It’s all just a few clicks or lines of code. The message isn’t important anymore. There’s no more “why” behind the “what”.\\n\\n## Chasing perfection\\n\\nHuman beings aren’t perfect. Perfection is something that will always elude us. There will always be a small part of humanity in everything we do. No matter how small that part, we should make sure that it transcends the limits of the medium. We have to think about the message first. What typeface should we use and why? Does the typeface match the message and what we want to communicate with it? What will be the leading and why? Will there be more typefaces in our design? On what ground will they be combined? What makes our design unique and why? This is the part of humanity that is left in typography. It might be the last part. Are we really going to give it up?\\n\\n*Originally published by [Matej Latin](http://matejlatin.co.uk/) on [Medium](https://medium.com/design-notes/humane-typography-in-the-digital-age-9bd5c16199bd?ref=webdesignernews.com#.lygo82z0x).*\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/1970-01-01-first-title.json?ts=300&ref=refs/meta/_netlify_cms", + "headers": { + "Date": "Tue, 10 Sep 2019 13:46:50 GMT", + "Content-Type": "application/vnd.github.VERSION.raw; charset=utf-8", + "Content-Length": "462", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4790", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"81ea348886e0bb00c97e6063ac17034ab798d78b\"", + "Last-Modified": "Tue, 10 Sep 2019 13:46:21 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B02:2B19:A7F00B:CC641B:5D77A94A", + "connection": "keep-alive" + }, + "response": "{\"type\":\"PR\",\"pr\":{\"number\":2,\"head\":\"f6bdfa173958cec0ad21da5b9451be3eab6cbaf7\"},\"user\":\"owner\",\"status\":\"draft\",\"branch\":\"cms/1970-01-01-first-title\",\"collection\":\"posts\",\"commitMessage\":\"Create Post “1970-01-01-first-title”\",\"title\":\"first title\",\"description\":\"first description\",\"objects\":{\"entry\":{\"path\":\"content/posts/1970-01-01-first-title.md\",\"sha\":\"a041245814892e3f73f63ca54333fda649b7fc0b\"},\"files\":[]},\"timeStamp\":\"1970-01-01T00:00:00.600Z\"}", + "status": 200 + }, + { + "body": "{\"operationName\":\"unpublishedBranchFile\",\"variables\":{\"headOwner\":\"owner\",\"headRepoName\":\"repo\",\"headExpression\":\"cms/1970-01-01-first-title:content/posts/1970-01-01-first-title.md\",\"baseOwner\":\"owner\",\"baseRepoName\":\"repo\",\"baseExpression\":\"master:content/posts/1970-01-01-first-title.md\"},\"query\":\"query unpublishedBranchFile($headOwner: String!, $headRepoName: String!, $headExpression: String!, $baseOwner: String!, $baseRepoName: String!, $baseExpression: String!) {\\n head: repository(owner: $headOwner, name: $headRepoName) {\\n ...RepositoryParts\\n object(expression: $headExpression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n base: repository(owner: $baseOwner, name: $baseRepoName) {\\n ...RepositoryParts\\n object(expression: $baseExpression) {\\n ... on Blob {\\n id\\n oid\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:46:51 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4910", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7B04:1510D:464D92:563446:5D77A94B", + "content-length": "189", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"head\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"object\":null},\"base\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"object\":null}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"master:content/posts/1970-01-01-first-title.md\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:46:52 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4909", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7B06:B4D3:AE880:C8B4B:5D77A94C", + "content-length": "106", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"object\":null}}}\n", + "status": 200 + }, + { + "body": "{\"content\":\"LS0tCnRlbXBsYXRlOiBwb3N0CnRpdGxlOiBmaXJzdCB0aXRsZQpkcmFmdDogdHJ1ZQpkYXRlOiAxOTcwLTAxLTAxVDAwOjAwOjAwLjAwMFoKZGVzY3JpcHRpb246IGZpcnN0IGRlc2NyaXB0aW9uCmNhdGVnb3J5OiBmaXJzdCBjYXRlZ29yeQp0YWdzOgogIC0gdGFnMQotLS0KZmlyc3QgYm9keQo=\",\"encoding\":\"base64\"}", + "method": "POST", + "url": "/repos/owner/repo/git/blobs?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:46:53 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "206", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4789", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"a5ec4a37015a9eeb405300b3095fb5c9\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B08:9D21:17157C3:1C1E6D8:5D77A94D", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"a041245814892e3f73f63ca54333fda649b7fc0b\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b\"\n}\n", + "status": 201 + }, + { + "body": "{\"operationName\":\"branch\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"qualifiedName\":\"refs/heads/master\"},\"query\":\"query branch($owner: String!, $name: String!, $qualifiedName: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n branch: ref(qualifiedName: $qualifiedName) {\\n ...BranchParts\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BranchParts on Ref {\\n commit: target {\\n ...ObjectParts\\n __typename\\n }\\n id\\n name\\n repository {\\n ...RepositoryParts\\n __typename\\n }\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:46:54 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4908", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7B0A:3ED82:1854BBE:1D98BB5:5D77A94E", + "content-length": "429", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"branch\":{\"commit\":{\"id\":\"MDY6Q29tbWl0MjA3NTcwODkwOjcyNjE3MmRlYWU5OWM4YTJjZWE0YzcxZTczNGEwMmE3OTNkNGQ5ZTU=\",\"sha\":\"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\"__typename\":\"Commit\"},\"id\":\"MDM6UmVmMjA3NTcwODkwOm1hc3Rlcg==\",\"name\":\"master\",\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\"},\"__typename\":\"Ref\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"tree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"726172deae99c8a2cea4c71e734a02a793d4d9e5\"},\"query\":\"query tree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n tree: object(oid: $sha) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:46:55 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4907", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7B0E:2B1F:120907C:16018F7:5D77A94F", + "content-length": "260", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"tree\":{\"id\":\"MDY6Q29tbWl0MjA3NTcwODkwOjcyNjE3MmRlYWU5OWM4YTJjZWE0YzcxZTczNGEwMmE3OTNkNGQ5ZTU=\",\"sha\":\"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\"__typename\":\"Commit\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"commitTree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"726172deae99c8a2cea4c71e734a02a793d4d9e5\"},\"query\":\"query commitTree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n commit: object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n tree {\\n ...ObjectParts\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:46:55 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4906", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7B0C:244EB:17E212D:1D01720:5D77A94F", + "content-length": "5040", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"commit\":{\"id\":\"MDY6Q29tbWl0MjA3NTcwODkwOjcyNjE3MmRlYWU5OWM4YTJjZWE0YzcxZTczNGEwMmE3OTNkNGQ5ZTU=\",\"sha\":\"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\"__typename\":\"Commit\",\"tree\":{\"id\":\"MDQ6VHJlZTIwNzU3MDg5MDpjNWI3ZjZkNjc0YmExOTNiYjdiNGE1ZmNmNDkzMzAzNGUxYjdmMmI3\",\"sha\":\"c5b7f6d674ba193bb7b4a5fcf4933034e1b7f2b7\",\"__typename\":\"Tree\",\"entries\":[{\"path\":\".circleci\",\"sha\":\"e5e9af3301cac61f120b8e4d40b1733c7a45685a\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\".eslintignore\",\"sha\":\"80b4531b026d19f8fa589efd122e76199d23f967\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".eslintrc.js\",\"sha\":\"370684994aaed5b858da3a006f48cfa57e88fd27\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".flowconfig\",\"sha\":\"14aa2ac4cc0e15223ad98630a6f1325fc81f8043\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".gitattributes\",\"sha\":\"10a369ddf4f603337cabc6f21646508323941ce1\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".github\",\"sha\":\"4ebeece548b52b20af59622354530a6d33b50b43\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\".gitignore\",\"sha\":\"c071ba35b0e49899bab6d610a68eef667dbbf157\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".prettierignore\",\"sha\":\"393f050e123d998cf8c8b362ff95cc8ac4d250e5\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".prettierrc\",\"sha\":\"e52ad05bb13b084d7949dd76e1b2517455162150\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".stylelintrc.json\",\"sha\":\"4b4c9698d10d756f5faa025659b86375428ed0a7\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".vscode\",\"sha\":\"286e97ec0113ea8242b41ac222e2c3e8077e6f1e\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"CHANGELOG.md\",\"sha\":\"070a5d4f0eacd2dc0be81ae8996f8982de43046e\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"CODE_OF_CONDUCT.md\",\"sha\":\"92bc7565ff0ee145a0041b5179a820f14f39ab22\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"CONTRIBUTING.md\",\"sha\":\"8552aa241254a61258e1ff9666ab36f32fb1e3b9\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"LICENSE\",\"sha\":\"42d85938357b49977c126ca03b199129082d4fb8\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"README.md\",\"sha\":\"19df50a78654c8d757ca7f38447aa3d09c7abcce\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"backend\",\"sha\":\"b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"config.js\",\"sha\":\"58afd573bbb69fcca000efd0f5d90b93c93a98dd\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"content\",\"sha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"flow-typed\",\"sha\":\"86c32fd6c3118be5e0dbbb231a834447357236c6\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"flow\",\"sha\":\"0af45ad00d155c8d8c7407d913ff85278244c9ce\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"gatsby-browser.js\",\"sha\":\"9bd2c9dce175f04980e91cd9dc295a299e3cdb80\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"gatsby-config.js\",\"sha\":\"353a109dad62e3f25bf9f5e6a2167f21a6c8b459\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"gatsby-node.js\",\"sha\":\"14a207883c2093d2cc071bc5a464e165bcc1fead\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"gatsby\",\"sha\":\"4f23c06cd1740bf78304d2c0b29bf6bfdf427981\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"jest\",\"sha\":\"5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"netlify.toml\",\"sha\":\"599b99cc5700404fde316a7ede829776f23e7d45\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"package.json\",\"sha\":\"9d777616438b90a18f1a4ebfd5f114b4c06c6f17\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"postcss-config.js\",\"sha\":\"d216501e9b351a72e00ba0b7459a6500e27e7da2\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"renovate.json\",\"sha\":\"dcc309398785698b8870545c32051a3d72dd8271\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"serverless-scripts\",\"sha\":\"ee3701f2fbfc7196ba340f6481d1387d20527898\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"serverless-single-page-app-plugin\",\"sha\":\"08763fcfba643a06a452398517019bea4a5850ba\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"serverless.yml\",\"sha\":\"20b22c5fad229f35d029bf6614d333d82fe8a987\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"src\",\"sha\":\"8cdb35a88232c0f32f12f130c92c7cc55f97f471\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"static\",\"sha\":\"53c6380a600a030d3722bff7ecde36f749fb6964\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"utils\",\"sha\":\"a592549c9f74db40b51efefcda2fd76810405f27\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"yarn.lock\",\"sha\":\"475c9c1924ca752a0686303e2fdeb7b13ad75f57\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"}]}}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"tree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\"},\"query\":\"query tree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n tree: object(oid: $sha) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:46:56 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4905", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7AC7:3ED74:1A7FCA:206E9C:5D77A950", + "content-length": "502", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"tree\":{\"id\":\"MDQ6VHJlZTIwNzU3MDg5MDowMjk0ZWYxMDZjNTg3NDM5MDdhNWM4NTVkYTFlYjBmODdiMGI2ZGZj\",\"sha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\"__typename\":\"Tree\",\"entries\":[{\"path\":\"pages\",\"sha\":\"1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"posts\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"}]}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"commitTree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\"},\"query\":\"query commitTree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n commit: object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n tree {\\n ...ObjectParts\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:46:56 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4904", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7AC5:2B24:17A00C3:1CB78A2:5D77A950", + "content-length": "256", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"commit\":{\"id\":\"MDQ6VHJlZTIwNzU3MDg5MDowMjk0ZWYxMDZjNTg3NDM5MDdhNWM4NTVkYTFlYjBmODdiMGI2ZGZj\",\"sha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\"__typename\":\"Tree\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"tree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\"},\"query\":\"query tree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n tree: object(oid: $sha) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:46:57 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4903", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7ACB:244E7:1186E38:15628B7:5D77A951", + "content-length": "1075", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"tree\":{\"id\":\"MDQ6VHJlZTIwNzU3MDg5MDozNDg5MjU3NWUyMTZjMDZlNzU3MDkzZjAzNmJkOGUwNTdjNzhhNTJm\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"__typename\":\"Tree\",\"entries\":[{\"path\":\"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\"sha\":\"6d51a38aed7139d2117724b1e307657b6ff2d043\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\"sha\":\"d0582dd245a3f408fb3fe2333bf01400007476e9\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"2016-02-02---A-Brief-History-of-Typography.md\",\"sha\":\"0eea554365f002d0f1572af9a58522d335a794d5\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"2017-18-08---The-Birth-of-Movable-Type.md\",\"sha\":\"44f78c474d04273185a95821426f75affc9b0044\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\"sha\":\"a532f0a9445cdf90a19c6812cff89d1674991774\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"}]}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"commitTree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\"},\"query\":\"query commitTree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n commit: object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n tree {\\n ...ObjectParts\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:46:57 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4902", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7AC8:B4DA:51B0D8:63A86B:5D77A951", + "content-length": "256", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"commit\":{\"id\":\"MDQ6VHJlZTIwNzU3MDg5MDozNDg5MjU3NWUyMTZjMDZlNzU3MDkzZjAzNmJkOGUwNTdjNzhhNTJm\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"__typename\":\"Tree\"}}}}\n", + "status": 200 + }, + { + "body": "{\"base_tree\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"tree\":[{\"path\":\"1970-01-01-first-title.md\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"a041245814892e3f73f63ca54333fda649b7fc0b\"}]}", + "method": "POST", + "url": "/repos/owner/repo/git/trees?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:46:59 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "2355", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4788", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"04d8c1d18d9458006d19b6d3b470f959\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7ACC:B4E0:1690809:1B760EC:5D77A952", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a041245814892e3f73f63ca54333fda649b7fc0b\",\n \"size\": 167,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b\"\n },\n {\n \"path\": \"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"size\": 1707,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\"\n },\n {\n \"path\": \"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"size\": 2565,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\"\n },\n {\n \"path\": \"2016-02-02---A-Brief-History-of-Typography.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"0eea554365f002d0f1572af9a58522d335a794d5\",\n \"size\": 2786,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\"\n },\n {\n \"path\": \"2017-18-08---The-Birth-of-Movable-Type.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"44f78c474d04273185a95821426f75affc9b0044\",\n \"size\": 16071,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\"\n },\n {\n \"path\": \"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"size\": 7465,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"base_tree\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\"tree\":[{\"path\":\"posts\",\"mode\":\"040000\",\"type\":\"tree\",\"sha\":\"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\"parentSha\":\"34892575e216c06e757093f036bd8e057c78a52f\"}]}", + "method": "POST", + "url": "/repos/owner/repo/git/trees?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:47:00 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "828", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4787", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"44a8b3dc9f6d05e9ab92c5a4b2a88d1c\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7ACE:244EB:17E280F:1D01F69:5D77A953", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"tree\": [\n {\n \"path\": \"pages\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\"\n },\n {\n \"path\": \"posts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"base_tree\":\"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\"tree\":[{\"path\":\"content\",\"mode\":\"040000\",\"type\":\"tree\",\"sha\":\"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\"parentSha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\"}]}", + "method": "POST", + "url": "/repos/owner/repo/git/trees?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:47:01 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "11731", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4786", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"a4b7f86984e19e3dea0bb083fa1dce76\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/trees/daee8d5d15d144e8779955166a2afeccde2770e1", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7AD0:9D20:11324B9:1507118:5D77A954", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"daee8d5d15d144e8779955166a2afeccde2770e1\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/daee8d5d15d144e8779955166a2afeccde2770e1\",\n \"tree\": [\n {\n \"path\": \".circleci\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"e5e9af3301cac61f120b8e4d40b1733c7a45685a\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/e5e9af3301cac61f120b8e4d40b1733c7a45685a\"\n },\n {\n \"path\": \".eslintignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"80b4531b026d19f8fa589efd122e76199d23f967\",\n \"size\": 39,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/80b4531b026d19f8fa589efd122e76199d23f967\"\n },\n {\n \"path\": \".eslintrc.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"370684994aaed5b858da3a006f48cfa57e88fd27\",\n \"size\": 414,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/370684994aaed5b858da3a006f48cfa57e88fd27\"\n },\n {\n \"path\": \".flowconfig\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14aa2ac4cc0e15223ad98630a6f1325fc81f8043\",\n \"size\": 283,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14aa2ac4cc0e15223ad98630a6f1325fc81f8043\"\n },\n {\n \"path\": \".gitattributes\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"10a369ddf4f603337cabc6f21646508323941ce1\",\n \"size\": 135,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/10a369ddf4f603337cabc6f21646508323941ce1\"\n },\n {\n \"path\": \".github\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4ebeece548b52b20af59622354530a6d33b50b43\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4ebeece548b52b20af59622354530a6d33b50b43\"\n },\n {\n \"path\": \".gitignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"c071ba35b0e49899bab6d610a68eef667dbbf157\",\n \"size\": 169,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/c071ba35b0e49899bab6d610a68eef667dbbf157\"\n },\n {\n \"path\": \".prettierignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"393f050e123d998cf8c8b362ff95cc8ac4d250e5\",\n \"size\": 45,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/393f050e123d998cf8c8b362ff95cc8ac4d250e5\"\n },\n {\n \"path\": \".prettierrc\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e52ad05bb13b084d7949dd76e1b2517455162150\",\n \"size\": 223,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/e52ad05bb13b084d7949dd76e1b2517455162150\"\n },\n {\n \"path\": \".stylelintrc.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"4b4c9698d10d756f5faa025659b86375428ed0a7\",\n \"size\": 718,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/4b4c9698d10d756f5faa025659b86375428ed0a7\"\n },\n {\n \"path\": \".vscode\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"286e97ec0113ea8242b41ac222e2c3e8077e6f1e\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/286e97ec0113ea8242b41ac222e2c3e8077e6f1e\"\n },\n {\n \"path\": \"CHANGELOG.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"070a5d4f0eacd2dc0be81ae8996f8982de43046e\",\n \"size\": 2113,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/070a5d4f0eacd2dc0be81ae8996f8982de43046e\"\n },\n {\n \"path\": \"CODE_OF_CONDUCT.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"92bc7565ff0ee145a0041b5179a820f14f39ab22\",\n \"size\": 3355,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/92bc7565ff0ee145a0041b5179a820f14f39ab22\"\n },\n {\n \"path\": \"CONTRIBUTING.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"8552aa241254a61258e1ff9666ab36f32fb1e3b9\",\n \"size\": 3548,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/8552aa241254a61258e1ff9666ab36f32fb1e3b9\"\n },\n {\n \"path\": \"LICENSE\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"42d85938357b49977c126ca03b199129082d4fb8\",\n \"size\": 1091,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/42d85938357b49977c126ca03b199129082d4fb8\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"19df50a78654c8d757ca7f38447aa3d09c7abcce\",\n \"size\": 3698,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/19df50a78654c8d757ca7f38447aa3d09c7abcce\"\n },\n {\n \"path\": \"backend\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\"\n },\n {\n \"path\": \"config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"58afd573bbb69fcca000efd0f5d90b93c93a98dd\",\n \"size\": 853,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/58afd573bbb69fcca000efd0f5d90b93c93a98dd\"\n },\n {\n \"path\": \"content\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639\"\n },\n {\n \"path\": \"flow-typed\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"86c32fd6c3118be5e0dbbb231a834447357236c6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/86c32fd6c3118be5e0dbbb231a834447357236c6\"\n },\n {\n \"path\": \"flow\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"0af45ad00d155c8d8c7407d913ff85278244c9ce\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/0af45ad00d155c8d8c7407d913ff85278244c9ce\"\n },\n {\n \"path\": \"gatsby-browser.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9bd2c9dce175f04980e91cd9dc295a299e3cdb80\",\n \"size\": 90,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9bd2c9dce175f04980e91cd9dc295a299e3cdb80\"\n },\n {\n \"path\": \"gatsby-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"353a109dad62e3f25bf9f5e6a2167f21a6c8b459\",\n \"size\": 7228,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/353a109dad62e3f25bf9f5e6a2167f21a6c8b459\"\n },\n {\n \"path\": \"gatsby-node.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14a207883c2093d2cc071bc5a464e165bcc1fead\",\n \"size\": 409,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14a207883c2093d2cc071bc5a464e165bcc1fead\"\n },\n {\n \"path\": \"gatsby\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4f23c06cd1740bf78304d2c0b29bf6bfdf427981\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4f23c06cd1740bf78304d2c0b29bf6bfdf427981\"\n },\n {\n \"path\": \"jest\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\"\n },\n {\n \"path\": \"netlify.toml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"599b99cc5700404fde316a7ede829776f23e7d45\",\n \"size\": 137,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/599b99cc5700404fde316a7ede829776f23e7d45\"\n },\n {\n \"path\": \"package.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9d777616438b90a18f1a4ebfd5f114b4c06c6f17\",\n \"size\": 6855,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9d777616438b90a18f1a4ebfd5f114b4c06c6f17\"\n },\n {\n \"path\": \"postcss-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d216501e9b351a72e00ba0b7459a6500e27e7da2\",\n \"size\": 703,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d216501e9b351a72e00ba0b7459a6500e27e7da2\"\n },\n {\n \"path\": \"renovate.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"dcc309398785698b8870545c32051a3d72dd8271\",\n \"size\": 460,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/dcc309398785698b8870545c32051a3d72dd8271\"\n },\n {\n \"path\": \"serverless-scripts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ee3701f2fbfc7196ba340f6481d1387d20527898\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ee3701f2fbfc7196ba340f6481d1387d20527898\"\n },\n {\n \"path\": \"serverless-single-page-app-plugin\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"08763fcfba643a06a452398517019bea4a5850ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/08763fcfba643a06a452398517019bea4a5850ba\"\n },\n {\n \"path\": \"serverless.yml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"20b22c5fad229f35d029bf6614d333d82fe8a987\",\n \"size\": 7803,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/20b22c5fad229f35d029bf6614d333d82fe8a987\"\n },\n {\n \"path\": \"src\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"8cdb35a88232c0f32f12f130c92c7cc55f97f471\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/8cdb35a88232c0f32f12f130c92c7cc55f97f471\"\n },\n {\n \"path\": \"static\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"53c6380a600a030d3722bff7ecde36f749fb6964\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/53c6380a600a030d3722bff7ecde36f749fb6964\"\n },\n {\n \"path\": \"utils\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"a592549c9f74db40b51efefcda2fd76810405f27\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/a592549c9f74db40b51efefcda2fd76810405f27\"\n },\n {\n \"path\": \"yarn.lock\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"475c9c1924ca752a0686303e2fdeb7b13ad75f57\",\n \"size\": 793903,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/475c9c1924ca752a0686303e2fdeb7b13ad75f57\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"message\":\"Create Post “1970-01-01-first-title”\",\"tree\":\"daee8d5d15d144e8779955166a2afeccde2770e1\",\"parents\":[\"726172deae99c8a2cea4c71e734a02a793d4d9e5\"]}", + "method": "POST", + "url": "/repos/owner/repo/git/commits?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:47:02 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "1499", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4785", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"2434c882d61aa78f2c7874e70718b459\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/commits/1173e4e1c8fb5237752d1aa86fb457e29087273d", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7AD2:244E7:11873B1:1562F8C:5D77A955", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"1173e4e1c8fb5237752d1aa86fb457e29087273d\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NTcwODkwOjExNzNlNGUxYzhmYjUyMzc3NTJkMWFhODZmYjQ1N2UyOTA4NzI3M2Q=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/1173e4e1c8fb5237752d1aa86fb457e29087273d\",\n \"html_url\": \"https://github.com/owner/repo/commit/1173e4e1c8fb5237752d1aa86fb457e29087273d\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T13:47:02Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T13:47:02Z\"\n },\n \"tree\": {\n \"sha\": \"daee8d5d15d144e8779955166a2afeccde2770e1\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/daee8d5d15d144e8779955166a2afeccde2770e1\"\n },\n \"message\": \"Create Post “1970-01-01-first-title”\",\n \"parents\": [\n {\n \"sha\": \"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"html_url\": \"https://github.com/owner/repo/commit/726172deae99c8a2cea4c71e734a02a793d4d9e5\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "status": 201 + }, + { + "body": "{\"operationName\":\"createBranchAndPullRequest\",\"variables\":{\"createRefInput\":{\"name\":\"refs/heads/cms/1970-01-01-first-title\",\"oid\":\"1173e4e1c8fb5237752d1aa86fb457e29087273d\",\"repositoryId\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\"},\"createPullRequestInput\":{\"baseRefName\":\"master\",\"body\":\"Automatically generated by Netlify CMS\",\"title\":\"Create Post “1970-01-01-first-title”\",\"headRefName\":\"cms/1970-01-01-first-title\",\"repositoryId\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\"}},\"query\":\"mutation createBranchAndPullRequest($createRefInput: CreateRefInput!, $createPullRequestInput: CreatePullRequestInput!) {\\n createRef(input: $createRefInput) {\\n branch: ref {\\n ...BranchParts\\n __typename\\n }\\n __typename\\n }\\n createPullRequest(input: $createPullRequestInput) {\\n clientMutationId\\n pullRequest {\\n ...PullRequestParts\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment BranchParts on Ref {\\n commit: target {\\n ...ObjectParts\\n __typename\\n }\\n id\\n name\\n repository {\\n ...RepositoryParts\\n __typename\\n }\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment PullRequestParts on PullRequest {\\n id\\n baseRefName\\n body\\n headRefName\\n headRefOid\\n number\\n state\\n title\\n merged_at: mergedAt\\n repository {\\n ...RepositoryParts\\n __typename\\n }\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:47:04 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4901", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7AD4:9D1F:A17E9C:C51269:5D77A956", + "content-length": "952", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"createRef\":{\"branch\":{\"commit\":{\"id\":\"MDY6Q29tbWl0MjA3NTcwODkwOjExNzNlNGUxYzhmYjUyMzc3NTJkMWFhODZmYjQ1N2UyOTA4NzI3M2Q=\",\"sha\":\"1173e4e1c8fb5237752d1aa86fb457e29087273d\",\"__typename\":\"Commit\"},\"id\":\"MDM6UmVmMjA3NTcwODkwOmNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxl\",\"name\":\"cms/1970-01-01-first-title\",\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\"},\"__typename\":\"Ref\"},\"__typename\":\"CreateRefPayload\"},\"createPullRequest\":{\"clientMutationId\":null,\"pullRequest\":{\"id\":\"MDExOlB1bGxSZXF1ZXN0MzE2MDAzNDc5\",\"baseRefName\":\"master\",\"body\":\"Automatically generated by Netlify CMS\",\"headRefName\":\"cms/1970-01-01-first-title\",\"headRefOid\":\"1173e4e1c8fb5237752d1aa86fb457e29087273d\",\"number\":3,\"state\":\"OPEN\",\"title\":\"Create Post “1970-01-01-first-title”\",\"merged_at\":null,\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\"},\"__typename\":\"PullRequest\"},\"__typename\":\"CreatePullRequestPayload\"}}}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:47:05 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4784", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"ee8189d4309d7ce3a93b9d3bb8b60e48\"", + "Last-Modified": "Tue, 10 Sep 2019 13:44:14 GMT", + "X-Poll-Interval": "300", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7ADE:9D20:1132AB9:1507873:5D77A958", + "content-length": "482", + "connection": "keep-alive" + }, + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NTcwODkwOnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"97c596c43e15db17fafeb9e3d26aff8fe3ca45f9\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/97c596c43e15db17fafeb9e3d26aff8fe3ca45f9\"\n }\n}\n", + "status": 200 + }, + { + "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjMsImhlYWQiOiIxMTczZTRlMWM4ZmI1MjM3NzUyZDFhYTg2ZmI0NTdlMjkwODcyNzNkIn0sInVzZXIiOiJvd25lciIsInN0YXR1cyI6ImRyYWZ0IiwiYnJhbmNoIjoiY21zLzE5NzAtMDEtMDEtZmlyc3QtdGl0bGUiLCJjb2xsZWN0aW9uIjoicG9zdHMiLCJjb21taXRNZXNzYWdlIjoiQ3JlYXRlIFBvc3Qg4oCcMTk3MC0wMS0wMS1maXJzdC10aXRsZeKAnSIsInRpdGxlIjoiZmlyc3QgdGl0bGUiLCJkZXNjcmlwdGlvbiI6ImZpcnN0IGRlc2NyaXB0aW9uIiwib2JqZWN0cyI6eyJlbnRyeSI6eyJwYXRoIjoiY29udGVudC9wb3N0cy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxlLm1kIiwic2hhIjoiYTA0MTI0NTgxNDg5MmUzZjczZjYzY2E1NDMzM2ZkYTY0OWI3ZmMwYiJ9LCJmaWxlcyI6W119LCJ0aW1lU3RhbXAiOiIxOTcwLTAxLTAxVDAwOjAwOjAwLjMwMFoifQ==\",\"encoding\":\"base64\"}", + "method": "POST", + "url": "/repos/owner/repo/git/blobs?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:47:06 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "206", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4783", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"cafc7f8cffc06e28ab49266daee1c51c\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/blobs/e766fc53552a9b636f81f2218b122635067d969f", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7AE1:2B24:17A119B:1CB8D78:5D77A959", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"e766fc53552a9b636f81f2218b122635067d969f\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/e766fc53552a9b636f81f2218b122635067d969f\"\n}\n", + "status": 201 + }, + { + "body": "{\"operationName\":\"tree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"97c596c43e15db17fafeb9e3d26aff8fe3ca45f9\"},\"query\":\"query tree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n tree: object(oid: $sha) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:47:07 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4899", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7AE4:15110:1859B2A:1D94C80:5D77A95A", + "content-length": "260", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"tree\":{\"id\":\"MDY6Q29tbWl0MjA3NTcwODkwOjk3YzU5NmM0M2UxNWRiMTdmYWZlYjllM2QyNmFmZjhmZTNjYTQ1Zjk=\",\"sha\":\"97c596c43e15db17fafeb9e3d26aff8fe3ca45f9\",\"__typename\":\"Commit\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"commitTree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"97c596c43e15db17fafeb9e3d26aff8fe3ca45f9\"},\"query\":\"query commitTree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n commit: object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n tree {\\n ...ObjectParts\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:47:07 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4900", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7AE2:1510D:46547A:563CEF:5D77A95A", + "content-length": "698", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"commit\":{\"id\":\"MDY6Q29tbWl0MjA3NTcwODkwOjk3YzU5NmM0M2UxNWRiMTdmYWZlYjllM2QyNmFmZjhmZTNjYTQ1Zjk=\",\"sha\":\"97c596c43e15db17fafeb9e3d26aff8fe3ca45f9\",\"__typename\":\"Commit\",\"tree\":{\"id\":\"MDQ6VHJlZTIwNzU3MDg5MDo1NjE5ZTYyZDgzZGI5YmU1ODg3YzgzMDFmMzJiMjZkZjI5YjJkODI3\",\"sha\":\"5619e62d83db9be5887c8301f32b26df29b2d827\",\"__typename\":\"Tree\",\"entries\":[{\"path\":\"1970-01-01-first-title.json\",\"sha\":\"81ea348886e0bb00c97e6063ac17034ab798d78b\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"README.md\",\"sha\":\"98787d1bd948850444433e91a43091a76c4eb455\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"}]}}}}}\n", + "status": 200 + }, + { + "body": "{\"base_tree\":\"97c596c43e15db17fafeb9e3d26aff8fe3ca45f9\",\"tree\":[{\"path\":\"1970-01-01-first-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"e766fc53552a9b636f81f2218b122635067d969f\"}]}", + "method": "POST", + "url": "/repos/owner/repo/git/trees?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:47:08 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "892", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4782", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"a16d6ce39d48342faa95aabac8c24fbd\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/trees/7071f77deb8608c69228051580a04bb4b3d5c9ea", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7AEE:3ED77:AA51C4:CE6AE9:5D77A95B", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"7071f77deb8608c69228051580a04bb4b3d5c9ea\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/7071f77deb8608c69228051580a04bb4b3d5c9ea\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e766fc53552a9b636f81f2218b122635067d969f\",\n \"size\": 462,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/e766fc53552a9b636f81f2218b122635067d969f\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"message\":\"Updating “1970-01-01-first-title” metadata\",\"tree\":\"7071f77deb8608c69228051580a04bb4b3d5c9ea\",\"parents\":[\"97c596c43e15db17fafeb9e3d26aff8fe3ca45f9\"]}", + "method": "POST", + "url": "/repos/owner/repo/git/commits?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:47:09 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "1505", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4781", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"6f142b4f3767e6525f2acae156776b9d\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/commits/2e0da63a5061ecf7a7ab66e73d847fb3be81d632", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7AF0:2B1F:120A179:1602E3E:5D77A95C", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"2e0da63a5061ecf7a7ab66e73d847fb3be81d632\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NTcwODkwOjJlMGRhNjNhNTA2MWVjZjdhN2FiNjZlNzNkODQ3ZmIzYmU4MWQ2MzI=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/2e0da63a5061ecf7a7ab66e73d847fb3be81d632\",\n \"html_url\": \"https://github.com/owner/repo/commit/2e0da63a5061ecf7a7ab66e73d847fb3be81d632\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T13:47:08Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T13:47:08Z\"\n },\n \"tree\": {\n \"sha\": \"7071f77deb8608c69228051580a04bb4b3d5c9ea\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/7071f77deb8608c69228051580a04bb4b3d5c9ea\"\n },\n \"message\": \"Updating “1970-01-01-first-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"97c596c43e15db17fafeb9e3d26aff8fe3ca45f9\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/97c596c43e15db17fafeb9e3d26aff8fe3ca45f9\",\n \"html_url\": \"https://github.com/owner/repo/commit/97c596c43e15db17fafeb9e3d26aff8fe3ca45f9\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "status": 201 + }, + { + "body": "{\"sha\":\"2e0da63a5061ecf7a7ab66e73d847fb3be81d632\",\"force\":false}", + "method": "PATCH", + "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:47:10 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4780", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"b73b5b2d313cb8255eac82589a1b3077\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7AF2:2B24:17A18B4:1CB962B:5D77A95D", + "content-length": "482", + "connection": "keep-alive" + }, + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NTcwODkwOnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"2e0da63a5061ecf7a7ab66e73d847fb3be81d632\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/2e0da63a5061ecf7a7ab66e73d847fb3be81d632\"\n }\n}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"unpublishedBranchFile\",\"variables\":{\"headOwner\":\"owner\",\"headRepoName\":\"repo\",\"headExpression\":\"cms/1970-01-01-first-title:content/posts/1970-01-01-first-title.md\",\"baseOwner\":\"owner\",\"baseRepoName\":\"repo\",\"baseExpression\":\"master:content/posts/1970-01-01-first-title.md\"},\"query\":\"query unpublishedBranchFile($headOwner: String!, $headRepoName: String!, $headExpression: String!, $baseOwner: String!, $baseRepoName: String!, $baseExpression: String!) {\\n head: repository(owner: $headOwner, name: $headRepoName) {\\n ...RepositoryParts\\n object(expression: $headExpression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n base: repository(owner: $baseOwner, name: $baseRepoName) {\\n ...RepositoryParts\\n object(expression: $baseExpression) {\\n ... on Blob {\\n id\\n oid\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:47:11 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4898", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7AF8:B4DE:11D5D40:15B544E:5D77A95F", + "content-length": "496", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"head\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzU3MDg5MDphMDQxMjQ1ODE0ODkyZTNmNzNmNjNjYTU0MzMzZmRhNjQ5YjdmYzBi\",\"text\":\"---\\ntemplate: post\\ntitle: first title\\ndraft: true\\ndate: 1970-01-01T00:00:00.000Z\\ndescription: first description\\ncategory: first category\\ntags:\\n - tag1\\n---\\nfirst body\\n\",\"is_binary\":false,\"__typename\":\"Blob\"}},\"base\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"object\":null}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"statues\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"1173e4e1c8fb5237752d1aa86fb457e29087273d\"},\"query\":\"query statues($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n status {\\n id\\n contexts {\\n id\\n context\\n state\\n target_url: targetUrl\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:47:12 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4897", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7AFA:9D1F:A187CA:C51D61:5D77A960", + "content-length": "276", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDY6Q29tbWl0MjA3NTcwODkwOjExNzNlNGUxYzhmYjUyMzc3NTJkMWFhODZmYjQ1N2UyOTA4NzI3M2Q=\",\"sha\":\"1173e4e1c8fb5237752d1aa86fb457e29087273d\",\"__typename\":\"Commit\",\"status\":null}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"unpublishedPrBranches\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\"},\"query\":\"query unpublishedPrBranches($owner: String!, $name: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n refs(refPrefix: \\\"refs/heads/cms/\\\", last: 50) {\\n nodes {\\n id\\n associatedPullRequests(last: 50, states: OPEN) {\\n nodes {\\n id\\n headRef {\\n id\\n name\\n prefix\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:47:13 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4896", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7AFC:B4DA:51B8C5:63B235:5D77A960", + "content-length": "518", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"refs\":{\"nodes\":[{\"id\":\"MDM6UmVmMjA3NTcwODkwOjE5NzAtMDEtMDEtZmlyc3QtdGl0bGU=\",\"associatedPullRequests\":{\"nodes\":[{\"id\":\"MDExOlB1bGxSZXF1ZXN0MzE2MDAzNDc5\",\"headRef\":{\"id\":\"MDM6UmVmMjA3NTcwODkwOmNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxl\",\"name\":\"cms/1970-01-01-first-title\",\"prefix\":\"refs/heads/\",\"__typename\":\"Ref\"},\"__typename\":\"PullRequest\"}],\"__typename\":\"PullRequestConnection\"},\"__typename\":\"Ref\"}],\"__typename\":\"RefConnection\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"unpublishedBranchFile\",\"variables\":{\"headOwner\":\"owner\",\"headRepoName\":\"repo\",\"headExpression\":\"cms/1970-01-01-first-title:content/posts/1970-01-01-first-title.md\",\"baseOwner\":\"owner\",\"baseRepoName\":\"repo\",\"baseExpression\":\"master:content/posts/1970-01-01-first-title.md\"},\"query\":\"query unpublishedBranchFile($headOwner: String!, $headRepoName: String!, $headExpression: String!, $baseOwner: String!, $baseRepoName: String!, $baseExpression: String!) {\\n head: repository(owner: $headOwner, name: $headRepoName) {\\n ...RepositoryParts\\n object(expression: $headExpression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n base: repository(owner: $baseOwner, name: $baseRepoName) {\\n ...RepositoryParts\\n object(expression: $baseExpression) {\\n ... on Blob {\\n id\\n oid\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:47:14 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4895", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7B02:2B1F:120A7A7:16035DB:5D77A961", + "content-length": "496", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"head\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzU3MDg5MDphMDQxMjQ1ODE0ODkyZTNmNzNmNjNjYTU0MzMzZmRhNjQ5YjdmYzBi\",\"text\":\"---\\ntemplate: post\\ntitle: first title\\ndraft: true\\ndate: 1970-01-01T00:00:00.000Z\\ndescription: first description\\ncategory: first category\\ntags:\\n - tag1\\n---\\nfirst body\\n\",\"is_binary\":false,\"__typename\":\"Blob\"}},\"base\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"object\":null}}}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:47:15 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4779", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"b73b5b2d313cb8255eac82589a1b3077\"", + "Last-Modified": "Tue, 10 Sep 2019 13:44:14 GMT", + "X-Poll-Interval": "300", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B08:9D21:1717D36:1C2151C:5D77A963", + "content-length": "482", + "connection": "keep-alive" + }, + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NTcwODkwOnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"2e0da63a5061ecf7a7ab66e73d847fb3be81d632\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/2e0da63a5061ecf7a7ab66e73d847fb3be81d632\"\n }\n}\n", + "status": 200 + }, + { + "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjMsImhlYWQiOiIxMTczZTRlMWM4ZmI1MjM3NzUyZDFhYTg2ZmI0NTdlMjkwODcyNzNkIn0sInVzZXIiOiJvd25lciIsInN0YXR1cyI6InBlbmRpbmdfcHVibGlzaCIsImJyYW5jaCI6ImNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxlIiwiY29sbGVjdGlvbiI6InBvc3RzIiwiY29tbWl0TWVzc2FnZSI6IkNyZWF0ZSBQb3N0IOKAnDE5NzAtMDEtMDEtZmlyc3QtdGl0bGXigJ0iLCJ0aXRsZSI6ImZpcnN0IHRpdGxlIiwiZGVzY3JpcHRpb24iOiJmaXJzdCBkZXNjcmlwdGlvbiIsIm9iamVjdHMiOnsiZW50cnkiOnsicGF0aCI6ImNvbnRlbnQvcG9zdHMvMTk3MC0wMS0wMS1maXJzdC10aXRsZS5tZCIsInNoYSI6ImEwNDEyNDU4MTQ4OTJlM2Y3M2Y2M2NhNTQzMzNmZGE2NDliN2ZjMGIifSwiZmlsZXMiOltdfSwidGltZVN0YW1wIjoiMTk3MC0wMS0wMVQwMDowMDowMC4zMDBaIn0=\",\"encoding\":\"base64\"}", + "method": "POST", + "url": "/repos/owner/repo/git/blobs?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:47:16 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "206", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4778", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"54c324e5eb59e70021d48ca028d08c9d\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/blobs/4e6c0273ad9c74cc63713aa87359313da4f382d0", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B0C:244EB:17E45D0:1D043E6:5D77A963", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"4e6c0273ad9c74cc63713aa87359313da4f382d0\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/4e6c0273ad9c74cc63713aa87359313da4f382d0\"\n}\n", + "status": 201 + }, + { + "body": "{\"operationName\":\"tree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"2e0da63a5061ecf7a7ab66e73d847fb3be81d632\"},\"query\":\"query tree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n tree: object(oid: $sha) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:47:17 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4894", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7B10:9D1F:A18C38:C522B3:5D77A964", + "content-length": "260", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"tree\":{\"id\":\"MDY6Q29tbWl0MjA3NTcwODkwOjJlMGRhNjNhNTA2MWVjZjdhN2FiNjZlNzNkODQ3ZmIzYmU4MWQ2MzI=\",\"sha\":\"2e0da63a5061ecf7a7ab66e73d847fb3be81d632\",\"__typename\":\"Commit\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"commitTree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"2e0da63a5061ecf7a7ab66e73d847fb3be81d632\"},\"query\":\"query commitTree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n commit: object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n tree {\\n ...ObjectParts\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:47:17 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4893", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7B0E:2B24:17A26EB:1CBA74A:5D77A964", + "content-length": "698", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"commit\":{\"id\":\"MDY6Q29tbWl0MjA3NTcwODkwOjJlMGRhNjNhNTA2MWVjZjdhN2FiNjZlNzNkODQ3ZmIzYmU4MWQ2MzI=\",\"sha\":\"2e0da63a5061ecf7a7ab66e73d847fb3be81d632\",\"__typename\":\"Commit\",\"tree\":{\"id\":\"MDQ6VHJlZTIwNzU3MDg5MDo3MDcxZjc3ZGViODYwOGM2OTIyODA1MTU4MGEwNGJiNGIzZDVjOWVh\",\"sha\":\"7071f77deb8608c69228051580a04bb4b3d5c9ea\",\"__typename\":\"Tree\",\"entries\":[{\"path\":\"1970-01-01-first-title.json\",\"sha\":\"e766fc53552a9b636f81f2218b122635067d969f\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"README.md\",\"sha\":\"98787d1bd948850444433e91a43091a76c4eb455\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"}]}}}}}\n", + "status": 200 + }, + { + "body": "{\"base_tree\":\"2e0da63a5061ecf7a7ab66e73d847fb3be81d632\",\"tree\":[{\"path\":\"1970-01-01-first-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"4e6c0273ad9c74cc63713aa87359313da4f382d0\"}]}", + "method": "POST", + "url": "/repos/owner/repo/git/trees?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:47:18 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "892", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4777", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"eabcaddfcffa080576cb35a271665c1d\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/trees/6211724b7ba09c9620de530fe9368785492d48c8", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B14:9D21:17181A2:1C21A8C:5D77A965", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"6211724b7ba09c9620de530fe9368785492d48c8\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/6211724b7ba09c9620de530fe9368785492d48c8\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"4e6c0273ad9c74cc63713aa87359313da4f382d0\",\n \"size\": 472,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/4e6c0273ad9c74cc63713aa87359313da4f382d0\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"operationName\":\"statues\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"1173e4e1c8fb5237752d1aa86fb457e29087273d\"},\"query\":\"query statues($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n status {\\n id\\n contexts {\\n id\\n context\\n state\\n target_url: targetUrl\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:47:18 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4892", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7B16:15110:185AFB3:1D96577:5D77A966", + "content-length": "276", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDY6Q29tbWl0MjA3NTcwODkwOjExNzNlNGUxYzhmYjUyMzc3NTJkMWFhODZmYjQ1N2UyOTA4NzI3M2Q=\",\"sha\":\"1173e4e1c8fb5237752d1aa86fb457e29087273d\",\"__typename\":\"Commit\",\"status\":null}}}}\n", + "status": 200 + }, + { + "body": "{\"message\":\"Updating “1970-01-01-first-title” metadata\",\"tree\":\"6211724b7ba09c9620de530fe9368785492d48c8\",\"parents\":[\"2e0da63a5061ecf7a7ab66e73d847fb3be81d632\"]}", + "method": "POST", + "url": "/repos/owner/repo/git/commits?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:47:19 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "1505", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4776", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"54866a4ed8f642913c57ac09c5ade9c4\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/commits/9cf1bc8d2ae287af95d444e7087ee5aaa0a9864f", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B18:3ED82:1857864:1D9C26E:5D77A966", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"9cf1bc8d2ae287af95d444e7087ee5aaa0a9864f\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NTcwODkwOjljZjFiYzhkMmFlMjg3YWY5NWQ0NDRlNzA4N2VlNWFhYTBhOTg2NGY=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/9cf1bc8d2ae287af95d444e7087ee5aaa0a9864f\",\n \"html_url\": \"https://github.com/owner/repo/commit/9cf1bc8d2ae287af95d444e7087ee5aaa0a9864f\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T13:47:19Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T13:47:19Z\"\n },\n \"tree\": {\n \"sha\": \"6211724b7ba09c9620de530fe9368785492d48c8\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/6211724b7ba09c9620de530fe9368785492d48c8\"\n },\n \"message\": \"Updating “1970-01-01-first-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"2e0da63a5061ecf7a7ab66e73d847fb3be81d632\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/2e0da63a5061ecf7a7ab66e73d847fb3be81d632\",\n \"html_url\": \"https://github.com/owner/repo/commit/2e0da63a5061ecf7a7ab66e73d847fb3be81d632\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "status": 201 + }, + { + "body": "{\"sha\":\"9cf1bc8d2ae287af95d444e7087ee5aaa0a9864f\",\"force\":false}", + "method": "PATCH", + "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:47:21 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4775", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"441108b11baeb5c2e205215bcacc1f2a\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B1A:B4E0:1692D89:1B78F01:5D77A968", + "content-length": "482", + "connection": "keep-alive" + }, + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NTcwODkwOnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"9cf1bc8d2ae287af95d444e7087ee5aaa0a9864f\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/9cf1bc8d2ae287af95d444e7087ee5aaa0a9864f\"\n }\n}\n", + "status": 200 + }, + { + "body": "{\"commit_message\":\"Automatically generated. Merged on Netlify CMS.\",\"sha\":\"1173e4e1c8fb5237752d1aa86fb457e29087273d\",\"merge_method\":\"merge\"}", + "method": "PUT", + "url": "/repos/owner/repo/pulls/3/merge?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:47:23 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4774", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"30f47b258e9c34d2e557c120edeeb61c\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B1C:B4E0:16930D9:1B79343:5D77A96A", + "content-length": "123", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"df70f611b0f97cb773fc6c7fa9cf98d61a47863d\",\n \"merged\": true,\n \"message\": \"Pull Request successfully merged\"\n}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"statues\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"1173e4e1c8fb5237752d1aa86fb457e29087273d\"},\"query\":\"query statues($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n status {\\n id\\n contexts {\\n id\\n context\\n state\\n target_url: targetUrl\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:47:24 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4890", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7B20:244DF:1A2B12:1FDA60:5D77A96C", + "content-length": "276", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDY6Q29tbWl0MjA3NTcwODkwOjExNzNlNGUxYzhmYjUyMzc3NTJkMWFhODZmYjQ1N2UyOTA4NzI3M2Q=\",\"sha\":\"1173e4e1c8fb5237752d1aa86fb457e29087273d\",\"__typename\":\"Commit\",\"status\":null}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"deleteRef\",\"variables\":{\"deleteRefInput\":{\"refId\":\"MDM6UmVmMjA3NTcwODkwOmNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxl\"}},\"query\":\"mutation deleteRef($deleteRefInput: DeleteRefInput!) {\\n deleteRef(input: $deleteRefInput) {\\n clientMutationId\\n __typename\\n }\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:47:24 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4891", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7B1E:2B19:A80D95:CC885C:5D77A96B", + "content-length": "81", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"deleteRef\":{\"clientMutationId\":null,\"__typename\":\"DeleteRefPayload\"}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"master:content/posts/1970-01-01-first-title.md\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:47:25 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4889", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7B22:244E4:ADC6B1:D28CE0:5D77A96D", + "content-length": "413", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzU3MDg5MDphMDQxMjQ1ODE0ODkyZTNmNzNmNjNjYTU0MzMzZmRhNjQ5YjdmYzBi\",\"text\":\"---\\ntemplate: post\\ntitle: first title\\ndraft: true\\ndate: 1970-01-01T00:00:00.000Z\\ndescription: first description\\ncategory: first category\\ntags:\\n - tag1\\n---\\nfirst body\\n\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "status": 200 + } +] \ No newline at end of file diff --git a/cypress/fixtures/Github Backend Editorial Workflow - GraphQL API__can update an entry.json b/cypress/fixtures/Github Backend Editorial Workflow - GraphQL API__can update an entry.json new file mode 100644 index 00000000..8831ed19 --- /dev/null +++ b/cypress/fixtures/Github Backend Editorial Workflow - GraphQL API__can update an entry.json @@ -0,0 +1,2185 @@ +[ + { + "body": "{\"operationName\":null,\"variables\":{},\"query\":\"{\\n viewer {\\n id\\n avatar_url: avatarUrl\\n name\\n login\\n __typename\\n }\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:45:29 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4966", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7BC4:9D1F:A12BFA:C4AD8E:5D77A8F8", + "content-length": "179", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"viewer\":{\"id\":\"MDQ6VXNlcjI2NzYwNTcx\",\"avatar_url\":\"https://avatars1.githubusercontent.com/u/7892489?v=4\",\"name\":\"owner\",\"login\":\"owner\",\"__typename\":\"User\"}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"repoPermission\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\"},\"query\":\"query repoPermission($owner: String!, $name: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n viewerPermission\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:45:29 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4965", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7BC6:3ED76:4782BC:57A208:5D77A8F9", + "content-length": "119", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"viewerPermission\":\"ADMIN\"}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"files\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"master:content/posts\"},\"query\":\"query files($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...FileEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment FileEntryParts on TreeEntry {\\n name\\n sha: oid\\n type\\n blob: object {\\n ... on Blob {\\n size: byteSize\\n __typename\\n }\\n __typename\\n }\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:45:31 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4964", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7BC8:2B19:A7AEE7:CC1391:5D77A8FA", + "content-length": "1218", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6VHJlZTIwNzU3MDg5MDozNDg5MjU3NWUyMTZjMDZlNzU3MDkzZjAzNmJkOGUwNTdjNzhhNTJm\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"__typename\":\"Tree\",\"entries\":[{\"name\":\"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\"sha\":\"6d51a38aed7139d2117724b1e307657b6ff2d043\",\"type\":\"blob\",\"blob\":{\"size\":1707,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\"sha\":\"d0582dd245a3f408fb3fe2333bf01400007476e9\",\"type\":\"blob\",\"blob\":{\"size\":2565,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2016-02-02---A-Brief-History-of-Typography.md\",\"sha\":\"0eea554365f002d0f1572af9a58522d335a794d5\",\"type\":\"blob\",\"blob\":{\"size\":2786,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2017-18-08---The-Birth-of-Movable-Type.md\",\"sha\":\"44f78c474d04273185a95821426f75affc9b0044\",\"type\":\"blob\",\"blob\":{\"size\":16071,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\"sha\":\"a532f0a9445cdf90a19c6812cff89d1674991774\",\"type\":\"blob\",\"blob\":{\"size\":7465,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"}]}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"files\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"master:static/media\"},\"query\":\"query files($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...FileEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment FileEntryParts on TreeEntry {\\n name\\n sha: oid\\n type\\n blob: object {\\n ... on Blob {\\n size: byteSize\\n __typename\\n }\\n __typename\\n }\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:45:31 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4963", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7BCA:2B24:17969C7:1CABFFD:5D77A8FA", + "content-length": "1837", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6VHJlZTIwNzU3MDg5MDo5Yjc2OTliNTdlMTQzMDkxMGRiODI4MzFkY2Y2YjhhMWQxZGJkYWM5\",\"sha\":\"9b7699b57e1430910db82831dcf6b8a1d1dbdac9\",\"__typename\":\"Tree\",\"entries\":[{\"name\":\"42-line-bible.jpg\",\"sha\":\"41c8d12f9ca5864beb827c381fbeff935209d5fb\",\"type\":\"blob\",\"blob\":{\"size\":671242,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"gutenberg.jpg\",\"sha\":\"04315e355873ea5d358d9c371c39a6845c1ae4ae\",\"type\":\"blob\",\"blob\":{\"size\":155002,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-0.jpg\",\"sha\":\"b70a1b64fd4fa9635823231a0ba92c6dc9393f16\",\"type\":\"blob\",\"blob\":{\"size\":660287,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-1.jpg\",\"sha\":\"05eedae372b829c62501ac751b2d42dcc432541b\",\"type\":\"blob\",\"blob\":{\"size\":392411,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-2.jpg\",\"sha\":\"53845ed35faf8939bea242bb85eda7c324b1be0b\",\"type\":\"blob\",\"blob\":{\"size\":99147,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-3.jpg\",\"sha\":\"8b2339d97069e826fae1f156212e40ae458454e3\",\"type\":\"blob\",\"blob\":{\"size\":358022,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-4.jpg\",\"sha\":\"a8f6f21253a67a4284b5a953b2fe633d44152ecd\",\"type\":\"blob\",\"blob\":{\"size\":114837,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"movable-type.jpg\",\"sha\":\"57b4e925ea00bd8e195cf4418eb6eb2995ea5f10\",\"type\":\"blob\",\"blob\":{\"size\":559028,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"printing-press.jpg\",\"sha\":\"d27f56c9437d9becd2f56cc627c9322c2f1f61f6\",\"type\":\"blob\",\"blob\":{\"size\":279283,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"type-through-time.jpg\",\"sha\":\"3f08366a805c51a60ec5056010f22de4ba08abaa\",\"type\":\"blob\",\"blob\":{\"size\":117689,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"}]}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"d0582dd245a3f408fb3fe2333bf01400007476e9\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:45:31 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4961", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7BCE:15110:184FB25:1D88760:5D77A8FB", + "content-length": "2866", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzU3MDg5MDpkMDU4MmRkMjQ1YTNmNDA4ZmIzZmUyMzMzYmYwMTQwMDAwNzQ3NmU5\",\"text\":\"---\\ntitle: The Origins of Social Stationery Lettering\\ndate: \\\"2016-12-01T22:40:32.169Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Design Culture\\\"\\ndescription: \\\"Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante.\\\"\\ncanonical: ''\\n---\\n\\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \\n\\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\\n\\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-3.jpg)\\n\\n## Header Level 2\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \\n\\n
\\n\\t
\\n\\t\\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\\n\\t\\t
\\n\\t\\t\\t— Aliquam tincidunt mauris eu risus.\\n\\t\\t
\\n\\t
\\n
\\n\\n### Header Level 3\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\\n\\n```css\\n#header h1 a {\\n display: block;\\n width: 300px;\\n height: 80px;\\n}\\n```\\n\\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"6d51a38aed7139d2117724b1e307657b6ff2d043\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:45:31 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4962", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7BCC:9D20:112B6BC:14FE8A6:5D77A8FB", + "content-length": "1973", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzU3MDg5MDo2ZDUxYTM4YWVkNzEzOWQyMTE3NzI0YjFlMzA3NjU3YjZmZjJkMDQz\",\"text\":\"---\\ntitle: Perfecting the Art of Perfection\\ndate: \\\"2016-09-01T23:46:37.121Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Design Inspiration\\\"\\ntags:\\n - \\\"Handwriting\\\"\\n - \\\"Learning to write\\\"\\ndescription: \\\"Quisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\\\"\\ncanonical: ''\\n---\\n\\nQuisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\\n\\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-2.jpg)\\n\\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. \\n\\nPraesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"44f78c474d04273185a95821426f75affc9b0044\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:45:31 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4960", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7BD2:244EB:17D9647:1CF6C47:5D77A8FB", + "content-length": "16478", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzU3MDg5MDo0NGY3OGM0NzRkMDQyNzMxODVhOTU4MjE0MjZmNzVhZmZjOWIwMDQ0\",\"text\":\"---\\ntitle: \\\"Johannes Gutenberg: The Birth of Movable Type\\\"\\ndate: \\\"2017-08-18T22:12:03.284Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Typography\\\"\\ntags:\\n - \\\"Open source\\\"\\n - \\\"Gatsby\\\"\\n - \\\"Typography\\\"\\ndescription: \\\"German inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\\\"\\ncanonical: ''\\n---\\n\\nGerman inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\\n\\n**Johannes Gensfleisch zur Laden zum Gutenberg** (c. 1398 – 1468) was a German blacksmith, goldsmith, printer, and publisher who introduced printing to Europe. His invention of mechanical movable type printing started the Printing Revolution and is widely regarded as the most important event of the modern period. It played a key role in the development of the Renaissance, Reformation, the Age of Enlightenment, and the Scientific revolution and laid the material basis for the modern knowledge-based economy and the spread of learning to the masses.\\n\\n
\\n\\t\\\"Gutenberg\\\"\\n\\t
Johannes Gutenberg
\\n
\\n\\nWith his invention of the printing press, Gutenberg was the first European to use movable type printing, in around 1439. Among his many contributions to printing are: the invention of a process for mass-producing movable type; the use of oil-based ink; and the use of a wooden printing press similar to the agricultural screw presses of the period. His truly epochal invention was the combination of these elements into a practical system that allowed the mass production of printed books and was economically viable for printers and readers alike. Gutenberg's method for making type is traditionally considered to have included a type metal alloy and a hand mould for casting type. The alloy was a mixture of lead, tin, and antimony that melted at a relatively low temperature for faster and more economical casting, cast well, and created a durable type.\\n\\nIn Renaissance Europe, the arrival of mechanical movable type printing introduced the era of mass communication which permanently altered the structure of society. The relatively unrestricted circulation of information — including revolutionary ideas — transcended borders, captured the masses in the Reformation and threatened the power of political and religious authorities; the sharp increase in literacy broke the monopoly of the literate elite on education and learning and bolstered the emerging middle class. Across Europe, the increasing cultural self-awareness of its people led to the rise of proto-nationalism, accelerated by the flowering of the European vernacular languages to the detriment of Latin's status as lingua franca. In the 19th century, the replacement of the hand-operated Gutenberg-style press by steam-powered rotary presses allowed printing on an industrial scale, while Western-style printing was adopted all over the world, becoming practically the sole medium for modern bulk printing.\\n\\nThe use of movable type was a marked improvement on the handwritten manuscript, which was the existing method of book production in Europe, and upon woodblock printing, and revolutionized European book-making. Gutenberg's printing technology spread rapidly throughout Europe and later the world.\\n\\nHis major work, the Gutenberg Bible (also known as the 42-line Bible), has been acclaimed for its high aesthetic and technical quality.\\n\\n## Printing Press\\n\\nAround 1439, Gutenberg was involved in a financial misadventure making polished metal mirrors (which were believed to capture holy light from religious relics) for sale to pilgrims to Aachen: in 1439 the city was planning to exhibit its collection of relics from Emperor Charlemagne but the event was delayed by one year due to a severe flood and the capital already spent could not be repaid. When the question of satisfying the investors came up, Gutenberg is said to have promised to share a “secret”. It has been widely speculated that this secret may have been the idea of printing with movable type. Also around 1439–1440, the Dutch Laurens Janszoon Coster came up with the idea of printing. Legend has it that the idea came to him “like a ray of light”.\\n\\n
\\n\\t\\\"Early\\n\\t
Early wooden printing press as depicted in 1568.
\\n
\\n\\nUntil at least 1444 he lived in Strasbourg, most likely in the St. Arbogast parish. It was in Strasbourg in 1440 that Gutenberg is said to have perfected and unveiled the secret of printing based on his research, mysteriously entitled Kunst und Aventur (art and enterprise). It is not clear what work he was engaged in, or whether some early trials with printing from movable type may have been conducted there. After this, there is a gap of four years in the record. In 1448, he was back in Mainz, where he took out a loan from his brother-in-law Arnold Gelthus, quite possibly for a printing press or related paraphernalia. By this date, Gutenberg may have been familiar with intaglio printing; it is claimed that he had worked on copper engravings with an artist known as the Master of Playing Cards.\\n\\nBy 1450, the press was in operation, and a German poem had been printed, possibly the first item to be printed there. Gutenberg was able to convince the wealthy moneylender Johann Fust for a loan of 800 guilders. Peter Schöffer, who became Fust’s son-in-law, also joined the enterprise. Schöffer had worked as a scribe in Paris and is believed to have designed some of the first typefaces.\\n\\n
\\n\\t
\\n\\t\\t

All that has been written to me about that marvelous man seen at Frankfurt is true. I have not seen complete Bibles but only a number of quires of various books of the Bible. The script was very neat and legible, not at all difficult to follow—your grace would be able to read it without effort, and indeed without glasses.

\\n\\t\\t
\\n\\t\\t\\t—Future pope Pius II in a letter to Cardinal Carvajal, March 1455\\n\\t\\t
\\n\\t
\\n
\\n\\nGutenberg's workshop was set up at Hof Humbrecht, a property belonging to a distant relative. It is not clear when Gutenberg conceived the Bible project, but for this he borrowed another 800 guilders from Fust, and work commenced in 1452. At the same time, the press was also printing other, more lucrative texts (possibly Latin grammars). There is also some speculation that there may have been two presses, one for the pedestrian texts, and one for the Bible. One of the profit-making enterprises of the new press was the printing of thousands of indulgences for the church, documented from 1454–55.\\n\\nIn 1455 Gutenberg completed his 42-line Bible, known as the Gutenberg Bible. About 180 copies were printed, most on paper and some on vellum.\\n\\n## Court Case\\n\\nSome time in 1456, there was a dispute between Gutenberg and Fust, and Fust demanded his money back, accusing Gutenberg of misusing the funds. Meanwhile the expenses of the Bible project had proliferated, and Gutenberg's debt now exceeded 20,000 guilders. Fust sued at the archbishop's court. A November 1455 legal document records that there was a partnership for a \\\"project of the books,\\\" the funds for which Gutenberg had used for other purposes, according to Fust. The court decided in favor of Fust, giving him control over the Bible printing workshop and half of all printed Bibles.\\n\\nThus Gutenberg was effectively bankrupt, but it appears he retained (or re-started) a small printing shop, and participated in the printing of a Bible in the town of Bamberg around 1459, for which he seems at least to have supplied the type. But since his printed books never carry his name or a date, it is difficult to be certain, and there is consequently a considerable scholarly debate on this subject. It is also possible that the large Catholicon dictionary, 300 copies of 754 pages, printed in Mainz in 1460, may have been executed in his workshop.\\n\\nMeanwhile, the Fust–Schöffer shop was the first in Europe to bring out a book with the printer's name and date, the Mainz Psalter of August 1457, and while proudly proclaiming the mechanical process by which it had been produced, it made no mention of Gutenberg.\\n\\n## Later Life\\n\\nIn 1462, during a conflict between two archbishops, Mainz was sacked by archbishop Adolph von Nassau, and Gutenberg was exiled. An old man by now, he moved to Eltville where he may have initiated and supervised a new printing press belonging to the brothers Bechtermünze.\\n\\nIn January 1465, Gutenberg's achievements were recognized and he was given the title Hofmann (gentleman of the court) by von Nassau. This honor included a stipend, an annual court outfit, as well as 2,180 litres of grain and 2,000 litres of wine tax-free. It is believed he may have moved back to Mainz around this time, but this is not certain.\\n\\n***\\n\\nGutenberg died in 1468 and was buried in the Franciscan church at Mainz, his contributions largely unknown. This church and the cemetery were later destroyed, and Gutenberg's grave is now lost.\\n\\nIn 1504, he was mentioned as the inventor of typography in a book by Professor Ivo Wittig. It was not until 1567 that the first portrait of Gutenberg, almost certainly an imaginary reconstruction, appeared in Heinrich Pantaleon's biography of famous Germans.\\n\\n## Printing Method With Movable Type\\n\\nGutenberg's early printing process, and what tests he may have made with movable type, are not known in great detail. His later Bibles were printed in such a way as to have required large quantities of type, some estimates suggesting as many as 100,000 individual sorts. Setting each page would take, perhaps, half a day, and considering all the work in loading the press, inking the type, pulling the impressions, hanging up the sheets, distributing the type, etc., it is thought that the Gutenberg–Fust shop might have employed as many as 25 craftsmen.\\n\\n![Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5](/media/movable-type.jpg)\\n\\n*Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5*\\n\\nGutenberg's technique of making movable type remains unclear. In the following decades, punches and copper matrices became standardized in the rapidly disseminating printing presses across Europe. Whether Gutenberg used this sophisticated technique or a somewhat primitive version has been the subject of considerable debate.\\n\\nIn the standard process of making type, a hard metal punch (made by punchcutting, with the letter carved back to front) is hammered into a softer copper bar, creating a matrix. This is then placed into a hand-held mould and a piece of type, or \\\"sort\\\", is cast by filling the mould with molten type-metal; this cools almost at once, and the resulting piece of type can be removed from the mould. The matrix can be reused to create hundreds, or thousands, of identical sorts so that the same character appearing anywhere within the book will appear very uniform, giving rise, over time, to the development of distinct styles of typefaces or fonts. After casting, the sorts are arranged into type-cases, and used to make up pages which are inked and printed, a procedure which can be repeated hundreds, or thousands, of times. The sorts can be reused in any combination, earning the process the name of “movable type”.\\n\\nThe invention of the making of types with punch, matrix and mold has been widely attributed to Gutenberg. However, recent evidence suggests that Gutenberg's process was somewhat different. If he used the punch and matrix approach, all his letters should have been nearly identical, with some variations due to miscasting and inking. However, the type used in Gutenberg's earliest work shows other variations.\\n\\n
\\n\\t
\\n\\t\\t

It is a press, certainly, but a press from which shall flow in inexhaustible streams… Through it, god will spread his word.

\\n\\t\\t
\\n\\t\\t\\t—Johannes Gutenberg\\n\\t\\t
\\n\\t
\\n
\\n\\nIn 2001, the physicist Blaise Agüera y Arcas and Princeton librarian Paul Needham, used digital scans of a Papal bull in the Scheide Library, Princeton, to carefully compare the same letters (types) appearing in different parts of the printed text. The irregularities in Gutenberg's type, particularly in simple characters such as the hyphen, suggested that the variations could not have come from either ink smear or from wear and damage on the pieces of metal on the types themselves. While some identical types are clearly used on other pages, other variations, subjected to detailed image analysis, suggested that they could not have been produced from the same matrix. Transmitted light pictures of the page also appeared to reveal substructures in the type that could not arise from traditional punchcutting techniques. They hypothesized that the method may have involved impressing simple shapes to create alphabets in “cuneiform” style in a matrix made of some soft material, perhaps sand. Casting the type would destroy the mould, and the matrix would need to be recreated to make each additional sort. This could explain the variations in the type, as well as the substructures observed in the printed images.\\n\\nThus, they feel that “the decisive factor for the birth of typography”, the use of reusable moulds for casting type, might have been a more progressive process than was previously thought. They suggest that the additional step of using the punch to create a mould that could be reused many times was not taken until twenty years later, in the 1470s. Others have not accepted some or all of their suggestions, and have interpreted the evidence in other ways, and the truth of the matter remains very uncertain.\\n\\nA 1568 history by Hadrianus Junius of Holland claims that the basic idea of the movable type came to Gutenberg from Laurens Janszoon Coster via Fust, who was apprenticed to Coster in the 1430s and may have brought some of his equipment from Haarlem to Mainz. While Coster appears to have experimented with moulds and castable metal type, there is no evidence that he had actually printed anything with this technology. He was an inventor and a goldsmith. However, there is one indirect supporter of the claim that Coster might be the inventor. The author of the Cologne Chronicle of 1499 quotes Ulrich Zell, the first printer of Cologne, that printing was performed in Mainz in 1450, but that some type of printing of lower quality had previously occurred in the Netherlands. However, the chronicle does not mention the name of Coster, while it actually credits Gutenberg as the \\\"first inventor of printing\\\" in the very same passage (fol. 312). The first securely dated book by Dutch printers is from 1471, and the Coster connection is today regarded as a mere legend.\\n\\nThe 19th century printer and typefounder Fournier Le Jeune suggested that Gutenberg might not have been using type cast with a reusable matrix, but possibly wooden types that were carved individually. A similar suggestion was made by Nash in 2004. This remains possible, albeit entirely unproven.\\n\\nIt has also been questioned whether Gutenberg used movable types at all. In 2004, Italian professor Bruno Fabbiani claimed that examination of the 42-line Bible revealed an overlapping of letters, suggesting that Gutenberg did not in fact use movable type (individual cast characters) but rather used whole plates made from a system somewhat like a modern typewriter, whereby the letters were stamped successively into the plate and then printed. However, most specialists regard the occasional overlapping of type as caused by paper movement over pieces of type of slightly unequal height.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"0eea554365f002d0f1572af9a58522d335a794d5\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:45:32 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4959", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7BD1:1510F:120CD22:15E6E1F:5D77A8FB", + "content-length": "3102", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzU3MDg5MDowZWVhNTU0MzY1ZjAwMmQwZjE1NzJhZjlhNTg1MjJkMzM1YTc5NGQ1\",\"text\":\"---\\ntitle: \\\"A Brief History of Typography\\\"\\ndate: \\\"2016-02-02T22:40:32.169Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Design Inspiration\\\"\\ntags:\\n - \\\"Linotype\\\"\\n - \\\"Monotype\\\"\\n - \\\"History of typography\\\"\\n - \\\"Helvetica\\\"\\ndescription: \\\"Morbi in sem quis dui placerat ornare. Pellentesque odio nisi, euismod in, pharetra a, ultricies in, diam. Sed arcu. Cras consequat.\\\"\\ncanonical: ''\\n---\\n\\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \\n\\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\\n\\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-0.jpg)\\n\\n## Header Level 2\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \\n\\n
\\n\\t
\\n\\t\\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\\n\\t\\t
\\n\\t\\t\\t— Aliquam tincidunt mauris eu risus.\\n\\t\\t
\\n\\t
\\n
\\n\\n### Header Level 3\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\\n\\n```css\\n#header h1 a {\\n display: block;\\n width: 300px;\\n height: 80px;\\n}\\n```\\n\\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"a532f0a9445cdf90a19c6812cff89d1674991774\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:45:32 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4958", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7BDC:1510F:120CDC7:15E6EDE:5D77A8FB", + "content-length": "7803", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzU3MDg5MDphNTMyZjBhOTQ0NWNkZjkwYTE5YzY4MTJjZmY4OWQxNjc0OTkxNzc0\",\"text\":\"---\\ntitle: Humane Typography in the Digital Age\\ndate: \\\"2017-08-19T22:40:32.169Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Typography\\\"\\ntags:\\n - \\\"Design\\\"\\n - \\\"Typography\\\"\\n - \\\"Web Development\\\"\\ndescription: \\\"An Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\\\"\\ncanonical: ''\\n---\\n\\n- [The first transition](#the-first-transition)\\n- [The digital age](#the-digital-age)\\n- [Loss of humanity through transitions](#loss-of-humanity-through-transitions)\\n- [Chasing perfection](#chasing-perfection)\\n\\nAn Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\\n\\nThe typography of this industrial age was no longer handcrafted. Mass production and profit became more important. Quantity mattered more than the quality. The books and printed works in general lost a part of its humanity. The typefaces were not produced by craftsmen anymore. It was the machines printing and tying the books together now. The craftsmen had to let go of their craft and became a cog in the process. An extension of the industrial machine.\\n\\nBut the victory of the industrialism didn’t mean that the craftsmen were completely extinct. The two worlds continued to coexist independently. Each recognising the good in the other — the power of industrialism and the humanity of craftsmanship. This was the second transition that would strip typography of a part of its humanity. We have to go 500 years back in time to meet the first one.\\n\\n## The first transition\\n\\nA similar conflict emerged after the invention of the first printing press in Europe. Johannes Gutenberg invented movable type and used it to produce different compositions. His workshop could print up to 240 impressions per hour. Until then, the books were being copied by hand. All the books were handwritten and decorated with hand drawn ornaments and figures. A process of copying a book was long but each book, even a copy, was a work of art.\\n\\nThe first printed books were, at first, perceived as inferior to the handwritten ones. They were smaller and cheaper to produce. Movable type provided the printers with flexibility that allowed them to print books in languages other than Latin. Gill describes the transition to industrialism as something that people needed and wanted. Something similar happened after the first printed books emerged. People wanted books in a language they understood and they wanted books they could take with them. They were hungry for knowledge and printed books satisfied this hunger.\\n\\n![42-line-bible.jpg](/media/42-line-bible.jpg)\\n\\n*The 42–Line Bible, printed by Gutenberg.*\\n\\nBut, through this transition, the book lost a large part of its humanity. The machine took over most of the process but craftsmanship was still a part of it. The typefaces were cut manually by the first punch cutters. The paper was made by hand. The illustrations and ornaments were still being hand drawn. These were the remains of the craftsmanship that went almost extinct in the times of Eric Gill.\\n\\n## The digital age\\n\\nThe first transition took away a large part of humanity from written communication. Industrialisation, the second transition described by Eric Gill, took away most of what was left. But it’s the third transition that stripped it naked. Typefaces are faceless these days. They’re just fonts on our computers. Hardly anyone knows their stories. Hardly anyone cares. Flicking through thousands of typefaces and finding the “right one” is a matter of minutes.\\n\\n> In the new computer age the proliferation of typefaces and type manipulations represents a new level of visual pollution threatening our culture. Out of thousands of typefaces, all we need are a few basic ones, and trash the rest.\\n>\\n— Massimo Vignelli\\n\\nTypography is not about typefaces. It’s not about what looks best, it’s about what feels right. What communicates the message best. Typography, in its essence, is about the message. “Typographical design should perform optically what the speaker creates through voice and gesture of his thoughts.”, as El Lissitzky, a famous Russian typographer, put it.\\n\\n## Loss of humanity through transitions\\n\\nEach transition took away a part of humanity from written language. Handwritten books being the most humane form and the digital typefaces being the least. Overuse of Helvetica is a good example. Messages are being told in a typeface just because it’s a safe option. It’s always there. Everyone knows it but yet, nobody knows it. Stop someone on the street and ask him what Helvetica is? Ask a designer the same question. Ask him where it came from, when, why and who designed it. Most of them will fail to answer these questions. Most of them used it in their precious projects but they still don’t spot it in the street.\\n\\n
\\n\\t
\\n\\t\\t

Knowledge of the quality of a typeface is of the greatest importance for the functional, aesthetic and psychological effect.

\\n\\t\\t
\\n\\t\\t\\t— Josef Mueller-Brockmann\\n\\t\\t
\\n\\t
\\n
\\n\\nTypefaces don’t look handmade these days. And that’s all right. They don’t have to. Industrialism took that away from them and we’re fine with it. We’ve traded that part of humanity for a process that produces more books that are easier to read. That can’t be bad. And it isn’t.\\n\\n> Humane typography will often be comparatively rough and even uncouth; but while a certain uncouthness does not seriously matter in humane works, uncouthness has no excuse whatever in the productions of the machine.\\n>\\n> — Eric Gill\\n\\nWe’ve come close to “perfection” in the last five centuries. The letters are crisp and without rough edges. We print our compositions with high–precision printers on a high quality, machine made paper.\\n\\n![type-through-time.jpg](/media/type-through-time.jpg)\\n\\n*Type through 5 centuries.*\\n\\nWe lost a part of ourselves because of this chase after perfection. We forgot about the craftsmanship along the way. And the worst part is that we don’t care. The transition to the digital age made that clear. We choose typefaces like clueless zombies. There’s no meaning in our work. Type sizes, leading, margins… It’s all just a few clicks or lines of code. The message isn’t important anymore. There’s no more “why” behind the “what”.\\n\\n## Chasing perfection\\n\\nHuman beings aren’t perfect. Perfection is something that will always elude us. There will always be a small part of humanity in everything we do. No matter how small that part, we should make sure that it transcends the limits of the medium. We have to think about the message first. What typeface should we use and why? Does the typeface match the message and what we want to communicate with it? What will be the leading and why? Will there be more typefaces in our design? On what ground will they be combined? What makes our design unique and why? This is the part of humanity that is left in typography. It might be the last part. Are we really going to give it up?\\n\\n*Originally published by [Matej Latin](http://matejlatin.co.uk/) on [Medium](https://medium.com/design-notes/humane-typography-in-the-digital-age-9bd5c16199bd?ref=webdesignernews.com#.lygo82z0x).*\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/1970-01-01-first-title.json?ts=300&ref=refs/meta/_netlify_cms", + "headers": { + "Date": "Tue, 10 Sep 2019 13:45:35 GMT", + "Content-Type": "application/vnd.github.VERSION.raw; charset=utf-8", + "Content-Length": "462", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4818", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"6b6cd2caffbba193d9a8a9269d8a4c7b588a0686\"", + "Last-Modified": "Tue, 10 Sep 2019 13:45:08 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BDE:3ED76:478531:57A510:5D77A8FE", + "connection": "keep-alive" + }, + "response": "{\"type\":\"PR\",\"pr\":{\"number\":1,\"head\":\"e44955f384457e8d83755edefd79c68a2635a91b\"},\"user\":\"owner\",\"status\":\"draft\",\"branch\":\"cms/1970-01-01-first-title\",\"collection\":\"posts\",\"commitMessage\":\"Create Post “1970-01-01-first-title”\",\"title\":\"first title\",\"description\":\"first description\",\"objects\":{\"entry\":{\"path\":\"content/posts/1970-01-01-first-title.md\",\"sha\":\"a041245814892e3f73f63ca54333fda649b7fc0b\"},\"files\":[]},\"timeStamp\":\"1970-01-01T00:00:00.300Z\"}", + "status": 200 + }, + { + "body": "{\"operationName\":\"unpublishedBranchFile\",\"variables\":{\"headOwner\":\"owner\",\"headRepoName\":\"repo\",\"headExpression\":\"cms/1970-01-01-first-title:content/posts/1970-01-01-first-title.md\",\"baseOwner\":\"owner\",\"baseRepoName\":\"repo\",\"baseExpression\":\"master:content/posts/1970-01-01-first-title.md\"},\"query\":\"query unpublishedBranchFile($headOwner: String!, $headRepoName: String!, $headExpression: String!, $baseOwner: String!, $baseRepoName: String!, $baseExpression: String!) {\\n head: repository(owner: $headOwner, name: $headRepoName) {\\n ...RepositoryParts\\n object(expression: $headExpression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n base: repository(owner: $baseOwner, name: $baseRepoName) {\\n ...RepositoryParts\\n object(expression: $baseExpression) {\\n ... on Blob {\\n id\\n oid\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:45:36 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4957", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7BE0:B4E0:16881C3:1B6BB6C:5D77A8FF", + "content-length": "189", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"head\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"object\":null},\"base\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"object\":null}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"master:content/posts/1970-01-01-first-title.md\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:45:37 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4956", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7BE2:244E4:AD6984:D21AB3:5D77A900", + "content-length": "106", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"object\":null}}}\n", + "status": 200 + }, + { + "body": "{\"content\":\"LS0tCnRlbXBsYXRlOiBwb3N0CnRpdGxlOiBmaXJzdCB0aXRsZQpkcmFmdDogdHJ1ZQpkYXRlOiAxOTcwLTAxLTAxVDAwOjAwOjAwLjAwMFoKZGVzY3JpcHRpb246IGZpcnN0IGRlc2NyaXB0aW9uCmNhdGVnb3J5OiBmaXJzdCBjYXRlZ29yeQp0YWdzOgogIC0gdGFnMQotLS0KZmlyc3QgYm9keQo=\",\"encoding\":\"base64\"}", + "method": "POST", + "url": "/repos/owner/repo/git/blobs?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:45:38 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "206", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4817", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"a5ec4a37015a9eeb405300b3095fb5c9\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BE5:244EB:17DA01E:1CF7880:5D77A901", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"a041245814892e3f73f63ca54333fda649b7fc0b\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b\"\n}\n", + "status": 201 + }, + { + "body": "{\"operationName\":\"branch\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"qualifiedName\":\"refs/heads/master\"},\"query\":\"query branch($owner: String!, $name: String!, $qualifiedName: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n branch: ref(qualifiedName: $qualifiedName) {\\n ...BranchParts\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BranchParts on Ref {\\n commit: target {\\n ...ObjectParts\\n __typename\\n }\\n id\\n name\\n repository {\\n ...RepositoryParts\\n __typename\\n }\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:45:39 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4955", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7BE8:15110:1850672:1D89596:5D77A902", + "content-length": "429", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"branch\":{\"commit\":{\"id\":\"MDY6Q29tbWl0MjA3NTcwODkwOjcyNjE3MmRlYWU5OWM4YTJjZWE0YzcxZTczNGEwMmE3OTNkNGQ5ZTU=\",\"sha\":\"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\"__typename\":\"Commit\"},\"id\":\"MDM6UmVmMjA3NTcwODkwOm1hc3Rlcg==\",\"name\":\"master\",\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\"},\"__typename\":\"Ref\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"commitTree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"726172deae99c8a2cea4c71e734a02a793d4d9e5\"},\"query\":\"query commitTree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n commit: object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n tree {\\n ...ObjectParts\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:45:40 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4954", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7BEF:9D21:170DEE2:1C1522A:5D77A903", + "content-length": "5040", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"commit\":{\"id\":\"MDY6Q29tbWl0MjA3NTcwODkwOjcyNjE3MmRlYWU5OWM4YTJjZWE0YzcxZTczNGEwMmE3OTNkNGQ5ZTU=\",\"sha\":\"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\"__typename\":\"Commit\",\"tree\":{\"id\":\"MDQ6VHJlZTIwNzU3MDg5MDpjNWI3ZjZkNjc0YmExOTNiYjdiNGE1ZmNmNDkzMzAzNGUxYjdmMmI3\",\"sha\":\"c5b7f6d674ba193bb7b4a5fcf4933034e1b7f2b7\",\"__typename\":\"Tree\",\"entries\":[{\"path\":\".circleci\",\"sha\":\"e5e9af3301cac61f120b8e4d40b1733c7a45685a\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\".eslintignore\",\"sha\":\"80b4531b026d19f8fa589efd122e76199d23f967\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".eslintrc.js\",\"sha\":\"370684994aaed5b858da3a006f48cfa57e88fd27\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".flowconfig\",\"sha\":\"14aa2ac4cc0e15223ad98630a6f1325fc81f8043\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".gitattributes\",\"sha\":\"10a369ddf4f603337cabc6f21646508323941ce1\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".github\",\"sha\":\"4ebeece548b52b20af59622354530a6d33b50b43\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\".gitignore\",\"sha\":\"c071ba35b0e49899bab6d610a68eef667dbbf157\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".prettierignore\",\"sha\":\"393f050e123d998cf8c8b362ff95cc8ac4d250e5\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".prettierrc\",\"sha\":\"e52ad05bb13b084d7949dd76e1b2517455162150\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".stylelintrc.json\",\"sha\":\"4b4c9698d10d756f5faa025659b86375428ed0a7\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".vscode\",\"sha\":\"286e97ec0113ea8242b41ac222e2c3e8077e6f1e\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"CHANGELOG.md\",\"sha\":\"070a5d4f0eacd2dc0be81ae8996f8982de43046e\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"CODE_OF_CONDUCT.md\",\"sha\":\"92bc7565ff0ee145a0041b5179a820f14f39ab22\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"CONTRIBUTING.md\",\"sha\":\"8552aa241254a61258e1ff9666ab36f32fb1e3b9\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"LICENSE\",\"sha\":\"42d85938357b49977c126ca03b199129082d4fb8\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"README.md\",\"sha\":\"19df50a78654c8d757ca7f38447aa3d09c7abcce\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"backend\",\"sha\":\"b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"config.js\",\"sha\":\"58afd573bbb69fcca000efd0f5d90b93c93a98dd\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"content\",\"sha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"flow-typed\",\"sha\":\"86c32fd6c3118be5e0dbbb231a834447357236c6\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"flow\",\"sha\":\"0af45ad00d155c8d8c7407d913ff85278244c9ce\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"gatsby-browser.js\",\"sha\":\"9bd2c9dce175f04980e91cd9dc295a299e3cdb80\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"gatsby-config.js\",\"sha\":\"353a109dad62e3f25bf9f5e6a2167f21a6c8b459\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"gatsby-node.js\",\"sha\":\"14a207883c2093d2cc071bc5a464e165bcc1fead\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"gatsby\",\"sha\":\"4f23c06cd1740bf78304d2c0b29bf6bfdf427981\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"jest\",\"sha\":\"5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"netlify.toml\",\"sha\":\"599b99cc5700404fde316a7ede829776f23e7d45\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"package.json\",\"sha\":\"9d777616438b90a18f1a4ebfd5f114b4c06c6f17\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"postcss-config.js\",\"sha\":\"d216501e9b351a72e00ba0b7459a6500e27e7da2\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"renovate.json\",\"sha\":\"dcc309398785698b8870545c32051a3d72dd8271\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"serverless-scripts\",\"sha\":\"ee3701f2fbfc7196ba340f6481d1387d20527898\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"serverless-single-page-app-plugin\",\"sha\":\"08763fcfba643a06a452398517019bea4a5850ba\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"serverless.yml\",\"sha\":\"20b22c5fad229f35d029bf6614d333d82fe8a987\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"src\",\"sha\":\"8cdb35a88232c0f32f12f130c92c7cc55f97f471\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"static\",\"sha\":\"53c6380a600a030d3722bff7ecde36f749fb6964\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"utils\",\"sha\":\"a592549c9f74db40b51efefcda2fd76810405f27\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"yarn.lock\",\"sha\":\"475c9c1924ca752a0686303e2fdeb7b13ad75f57\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"}]}}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"tree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"726172deae99c8a2cea4c71e734a02a793d4d9e5\"},\"query\":\"query tree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n tree: object(oid: $sha) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:45:40 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4953", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7BF0:2B19:A7B69A:CC1D05:5D77A903", + "content-length": "260", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"tree\":{\"id\":\"MDY6Q29tbWl0MjA3NTcwODkwOjcyNjE3MmRlYWU5OWM4YTJjZWE0YzcxZTczNGEwMmE3OTNkNGQ5ZTU=\",\"sha\":\"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\"__typename\":\"Commit\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"commitTree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\"},\"query\":\"query commitTree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n commit: object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n tree {\\n ...ObjectParts\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:45:41 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4952", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7BF7:B4DE:11CE688:15AC282:5D77A904", + "content-length": "256", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"commit\":{\"id\":\"MDQ6VHJlZTIwNzU3MDg5MDowMjk0ZWYxMDZjNTg3NDM5MDdhNWM4NTVkYTFlYjBmODdiMGI2ZGZj\",\"sha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\"__typename\":\"Tree\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"tree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\"},\"query\":\"query tree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n tree: object(oid: $sha) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:45:41 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4951", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7BF8:9D20:112C28D:14FF744:5D77A904", + "content-length": "502", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"tree\":{\"id\":\"MDQ6VHJlZTIwNzU3MDg5MDowMjk0ZWYxMDZjNTg3NDM5MDdhNWM4NTVkYTFlYjBmODdiMGI2ZGZj\",\"sha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\"__typename\":\"Tree\",\"entries\":[{\"path\":\"pages\",\"sha\":\"1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"posts\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"}]}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"commitTree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\"},\"query\":\"query commitTree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n commit: object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n tree {\\n ...ObjectParts\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:45:42 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4950", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7A02:244EB:17DA73D:1CF8157:5D77A906", + "content-length": "256", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"commit\":{\"id\":\"MDQ6VHJlZTIwNzU3MDg5MDozNDg5MjU3NWUyMTZjMDZlNzU3MDkzZjAzNmJkOGUwNTdjNzhhNTJm\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"__typename\":\"Tree\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"tree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\"},\"query\":\"query tree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n tree: object(oid: $sha) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:45:42 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4949", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7A04:3ED7B:123EDAA:1628759:5D77A906", + "content-length": "1075", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"tree\":{\"id\":\"MDQ6VHJlZTIwNzU3MDg5MDozNDg5MjU3NWUyMTZjMDZlNzU3MDkzZjAzNmJkOGUwNTdjNzhhNTJm\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"__typename\":\"Tree\",\"entries\":[{\"path\":\"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\"sha\":\"6d51a38aed7139d2117724b1e307657b6ff2d043\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\"sha\":\"d0582dd245a3f408fb3fe2333bf01400007476e9\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"2016-02-02---A-Brief-History-of-Typography.md\",\"sha\":\"0eea554365f002d0f1572af9a58522d335a794d5\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"2017-18-08---The-Birth-of-Movable-Type.md\",\"sha\":\"44f78c474d04273185a95821426f75affc9b0044\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\"sha\":\"a532f0a9445cdf90a19c6812cff89d1674991774\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"}]}}}}\n", + "status": 200 + }, + { + "body": "{\"base_tree\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"tree\":[{\"path\":\"1970-01-01-first-title.md\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"a041245814892e3f73f63ca54333fda649b7fc0b\"}]}", + "method": "POST", + "url": "/repos/owner/repo/git/trees?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:45:43 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "2355", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4816", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"04d8c1d18d9458006d19b6d3b470f959\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A06:9D1F:A138B0:C4BD36:5D77A907", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a041245814892e3f73f63ca54333fda649b7fc0b\",\n \"size\": 167,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b\"\n },\n {\n \"path\": \"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"size\": 1707,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\"\n },\n {\n \"path\": \"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"size\": 2565,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\"\n },\n {\n \"path\": \"2016-02-02---A-Brief-History-of-Typography.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"0eea554365f002d0f1572af9a58522d335a794d5\",\n \"size\": 2786,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\"\n },\n {\n \"path\": \"2017-18-08---The-Birth-of-Movable-Type.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"44f78c474d04273185a95821426f75affc9b0044\",\n \"size\": 16071,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\"\n },\n {\n \"path\": \"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"size\": 7465,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"base_tree\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\"tree\":[{\"path\":\"posts\",\"mode\":\"040000\",\"type\":\"tree\",\"sha\":\"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\"parentSha\":\"34892575e216c06e757093f036bd8e057c78a52f\"}]}", + "method": "POST", + "url": "/repos/owner/repo/git/trees?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:45:45 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "828", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4815", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"44a8b3dc9f6d05e9ab92c5a4b2a88d1c\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A0A:9D20:112C677:14FFC14:5D77A908", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"tree\": [\n {\n \"path\": \"pages\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\"\n },\n {\n \"path\": \"posts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"base_tree\":\"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\"tree\":[{\"path\":\"content\",\"mode\":\"040000\",\"type\":\"tree\",\"sha\":\"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\"parentSha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\"}]}", + "method": "POST", + "url": "/repos/owner/repo/git/trees?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:45:46 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "11731", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4814", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"a4b7f86984e19e3dea0bb083fa1dce76\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/trees/daee8d5d15d144e8779955166a2afeccde2770e1", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A0D:9D1F:A13A7E:C4BF84:5D77A909", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"daee8d5d15d144e8779955166a2afeccde2770e1\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/daee8d5d15d144e8779955166a2afeccde2770e1\",\n \"tree\": [\n {\n \"path\": \".circleci\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"e5e9af3301cac61f120b8e4d40b1733c7a45685a\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/e5e9af3301cac61f120b8e4d40b1733c7a45685a\"\n },\n {\n \"path\": \".eslintignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"80b4531b026d19f8fa589efd122e76199d23f967\",\n \"size\": 39,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/80b4531b026d19f8fa589efd122e76199d23f967\"\n },\n {\n \"path\": \".eslintrc.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"370684994aaed5b858da3a006f48cfa57e88fd27\",\n \"size\": 414,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/370684994aaed5b858da3a006f48cfa57e88fd27\"\n },\n {\n \"path\": \".flowconfig\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14aa2ac4cc0e15223ad98630a6f1325fc81f8043\",\n \"size\": 283,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14aa2ac4cc0e15223ad98630a6f1325fc81f8043\"\n },\n {\n \"path\": \".gitattributes\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"10a369ddf4f603337cabc6f21646508323941ce1\",\n \"size\": 135,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/10a369ddf4f603337cabc6f21646508323941ce1\"\n },\n {\n \"path\": \".github\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4ebeece548b52b20af59622354530a6d33b50b43\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4ebeece548b52b20af59622354530a6d33b50b43\"\n },\n {\n \"path\": \".gitignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"c071ba35b0e49899bab6d610a68eef667dbbf157\",\n \"size\": 169,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/c071ba35b0e49899bab6d610a68eef667dbbf157\"\n },\n {\n \"path\": \".prettierignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"393f050e123d998cf8c8b362ff95cc8ac4d250e5\",\n \"size\": 45,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/393f050e123d998cf8c8b362ff95cc8ac4d250e5\"\n },\n {\n \"path\": \".prettierrc\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e52ad05bb13b084d7949dd76e1b2517455162150\",\n \"size\": 223,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/e52ad05bb13b084d7949dd76e1b2517455162150\"\n },\n {\n \"path\": \".stylelintrc.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"4b4c9698d10d756f5faa025659b86375428ed0a7\",\n \"size\": 718,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/4b4c9698d10d756f5faa025659b86375428ed0a7\"\n },\n {\n \"path\": \".vscode\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"286e97ec0113ea8242b41ac222e2c3e8077e6f1e\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/286e97ec0113ea8242b41ac222e2c3e8077e6f1e\"\n },\n {\n \"path\": \"CHANGELOG.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"070a5d4f0eacd2dc0be81ae8996f8982de43046e\",\n \"size\": 2113,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/070a5d4f0eacd2dc0be81ae8996f8982de43046e\"\n },\n {\n \"path\": \"CODE_OF_CONDUCT.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"92bc7565ff0ee145a0041b5179a820f14f39ab22\",\n \"size\": 3355,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/92bc7565ff0ee145a0041b5179a820f14f39ab22\"\n },\n {\n \"path\": \"CONTRIBUTING.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"8552aa241254a61258e1ff9666ab36f32fb1e3b9\",\n \"size\": 3548,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/8552aa241254a61258e1ff9666ab36f32fb1e3b9\"\n },\n {\n \"path\": \"LICENSE\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"42d85938357b49977c126ca03b199129082d4fb8\",\n \"size\": 1091,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/42d85938357b49977c126ca03b199129082d4fb8\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"19df50a78654c8d757ca7f38447aa3d09c7abcce\",\n \"size\": 3698,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/19df50a78654c8d757ca7f38447aa3d09c7abcce\"\n },\n {\n \"path\": \"backend\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\"\n },\n {\n \"path\": \"config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"58afd573bbb69fcca000efd0f5d90b93c93a98dd\",\n \"size\": 853,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/58afd573bbb69fcca000efd0f5d90b93c93a98dd\"\n },\n {\n \"path\": \"content\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639\"\n },\n {\n \"path\": \"flow-typed\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"86c32fd6c3118be5e0dbbb231a834447357236c6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/86c32fd6c3118be5e0dbbb231a834447357236c6\"\n },\n {\n \"path\": \"flow\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"0af45ad00d155c8d8c7407d913ff85278244c9ce\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/0af45ad00d155c8d8c7407d913ff85278244c9ce\"\n },\n {\n \"path\": \"gatsby-browser.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9bd2c9dce175f04980e91cd9dc295a299e3cdb80\",\n \"size\": 90,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9bd2c9dce175f04980e91cd9dc295a299e3cdb80\"\n },\n {\n \"path\": \"gatsby-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"353a109dad62e3f25bf9f5e6a2167f21a6c8b459\",\n \"size\": 7228,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/353a109dad62e3f25bf9f5e6a2167f21a6c8b459\"\n },\n {\n \"path\": \"gatsby-node.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14a207883c2093d2cc071bc5a464e165bcc1fead\",\n \"size\": 409,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14a207883c2093d2cc071bc5a464e165bcc1fead\"\n },\n {\n \"path\": \"gatsby\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4f23c06cd1740bf78304d2c0b29bf6bfdf427981\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4f23c06cd1740bf78304d2c0b29bf6bfdf427981\"\n },\n {\n \"path\": \"jest\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\"\n },\n {\n \"path\": \"netlify.toml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"599b99cc5700404fde316a7ede829776f23e7d45\",\n \"size\": 137,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/599b99cc5700404fde316a7ede829776f23e7d45\"\n },\n {\n \"path\": \"package.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9d777616438b90a18f1a4ebfd5f114b4c06c6f17\",\n \"size\": 6855,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9d777616438b90a18f1a4ebfd5f114b4c06c6f17\"\n },\n {\n \"path\": \"postcss-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d216501e9b351a72e00ba0b7459a6500e27e7da2\",\n \"size\": 703,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d216501e9b351a72e00ba0b7459a6500e27e7da2\"\n },\n {\n \"path\": \"renovate.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"dcc309398785698b8870545c32051a3d72dd8271\",\n \"size\": 460,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/dcc309398785698b8870545c32051a3d72dd8271\"\n },\n {\n \"path\": \"serverless-scripts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ee3701f2fbfc7196ba340f6481d1387d20527898\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ee3701f2fbfc7196ba340f6481d1387d20527898\"\n },\n {\n \"path\": \"serverless-single-page-app-plugin\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"08763fcfba643a06a452398517019bea4a5850ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/08763fcfba643a06a452398517019bea4a5850ba\"\n },\n {\n \"path\": \"serverless.yml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"20b22c5fad229f35d029bf6614d333d82fe8a987\",\n \"size\": 7803,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/20b22c5fad229f35d029bf6614d333d82fe8a987\"\n },\n {\n \"path\": \"src\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"8cdb35a88232c0f32f12f130c92c7cc55f97f471\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/8cdb35a88232c0f32f12f130c92c7cc55f97f471\"\n },\n {\n \"path\": \"static\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"53c6380a600a030d3722bff7ecde36f749fb6964\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/53c6380a600a030d3722bff7ecde36f749fb6964\"\n },\n {\n \"path\": \"utils\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"a592549c9f74db40b51efefcda2fd76810405f27\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/a592549c9f74db40b51efefcda2fd76810405f27\"\n },\n {\n \"path\": \"yarn.lock\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"475c9c1924ca752a0686303e2fdeb7b13ad75f57\",\n \"size\": 793903,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/475c9c1924ca752a0686303e2fdeb7b13ad75f57\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"message\":\"Create Post “1970-01-01-first-title”\",\"tree\":\"daee8d5d15d144e8779955166a2afeccde2770e1\",\"parents\":[\"726172deae99c8a2cea4c71e734a02a793d4d9e5\"]}", + "method": "POST", + "url": "/repos/owner/repo/git/commits?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:45:47 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "1499", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4813", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"533822a7e513f5ce148efc8bb35326c4\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/commits/cabe318fe1731587ff3a17e0a91ba74c43e937b2", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A0E:1510F:120E02A:15E85FE:5D77A90A", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"cabe318fe1731587ff3a17e0a91ba74c43e937b2\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NTcwODkwOmNhYmUzMThmZTE3MzE1ODdmZjNhMTdlMGE5MWJhNzRjNDNlOTM3YjI=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/cabe318fe1731587ff3a17e0a91ba74c43e937b2\",\n \"html_url\": \"https://github.com/owner/repo/commit/cabe318fe1731587ff3a17e0a91ba74c43e937b2\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T13:45:47Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T13:45:47Z\"\n },\n \"tree\": {\n \"sha\": \"daee8d5d15d144e8779955166a2afeccde2770e1\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/daee8d5d15d144e8779955166a2afeccde2770e1\"\n },\n \"message\": \"Create Post “1970-01-01-first-title”\",\n \"parents\": [\n {\n \"sha\": \"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"html_url\": \"https://github.com/owner/repo/commit/726172deae99c8a2cea4c71e734a02a793d4d9e5\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "status": 201 + }, + { + "body": "{\"operationName\":\"createBranchAndPullRequest\",\"variables\":{\"createRefInput\":{\"name\":\"refs/heads/cms/1970-01-01-first-title\",\"oid\":\"cabe318fe1731587ff3a17e0a91ba74c43e937b2\",\"repositoryId\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\"},\"createPullRequestInput\":{\"baseRefName\":\"master\",\"body\":\"Automatically generated by Netlify CMS\",\"title\":\"Create Post “1970-01-01-first-title”\",\"headRefName\":\"cms/1970-01-01-first-title\",\"repositoryId\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\"}},\"query\":\"mutation createBranchAndPullRequest($createRefInput: CreateRefInput!, $createPullRequestInput: CreatePullRequestInput!) {\\n createRef(input: $createRefInput) {\\n branch: ref {\\n ...BranchParts\\n __typename\\n }\\n __typename\\n }\\n createPullRequest(input: $createPullRequestInput) {\\n clientMutationId\\n pullRequest {\\n ...PullRequestParts\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment BranchParts on Ref {\\n commit: target {\\n ...ObjectParts\\n __typename\\n }\\n id\\n name\\n repository {\\n ...RepositoryParts\\n __typename\\n }\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment PullRequestParts on PullRequest {\\n id\\n baseRefName\\n body\\n headRefName\\n headRefOid\\n number\\n state\\n title\\n merged_at: mergedAt\\n repository {\\n ...RepositoryParts\\n __typename\\n }\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:45:49 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4948", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7A11:3ED7B:123F4A3:1629010:5D77A90C", + "content-length": "952", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"createRef\":{\"branch\":{\"commit\":{\"id\":\"MDY6Q29tbWl0MjA3NTcwODkwOmNhYmUzMThmZTE3MzE1ODdmZjNhMTdlMGE5MWJhNzRjNDNlOTM3YjI=\",\"sha\":\"cabe318fe1731587ff3a17e0a91ba74c43e937b2\",\"__typename\":\"Commit\"},\"id\":\"MDM6UmVmMjA3NTcwODkwOmNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxl\",\"name\":\"cms/1970-01-01-first-title\",\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\"},\"__typename\":\"Ref\"},\"__typename\":\"CreateRefPayload\"},\"createPullRequest\":{\"clientMutationId\":null,\"pullRequest\":{\"id\":\"MDExOlB1bGxSZXF1ZXN0MzE2MDAyODk4\",\"baseRefName\":\"master\",\"body\":\"Automatically generated by Netlify CMS\",\"headRefName\":\"cms/1970-01-01-first-title\",\"headRefOid\":\"cabe318fe1731587ff3a17e0a91ba74c43e937b2\",\"number\":2,\"state\":\"OPEN\",\"title\":\"Create Post “1970-01-01-first-title”\",\"merged_at\":null,\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\"},\"__typename\":\"PullRequest\"},\"__typename\":\"CreatePullRequestPayload\"}}}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:45:50 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4812", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"c87c9e67ce39009a5e2741c07049b56b\"", + "Last-Modified": "Tue, 10 Sep 2019 13:44:14 GMT", + "X-Poll-Interval": "300", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A13:9D1F:A13E22:C4C3EB:5D77A90E", + "content-length": "482", + "connection": "keep-alive" + }, + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NTcwODkwOnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"51b3cf5b9d77882180719379f58f4ca16d8ef87e\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/51b3cf5b9d77882180719379f58f4ca16d8ef87e\"\n }\n}\n", + "status": 200 + }, + { + "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjIsImhlYWQiOiJjYWJlMzE4ZmUxNzMxNTg3ZmYzYTE3ZTBhOTFiYTc0YzQzZTkzN2IyIn0sInVzZXIiOiJvd25lciIsInN0YXR1cyI6ImRyYWZ0IiwiYnJhbmNoIjoiY21zLzE5NzAtMDEtMDEtZmlyc3QtdGl0bGUiLCJjb2xsZWN0aW9uIjoicG9zdHMiLCJjb21taXRNZXNzYWdlIjoiQ3JlYXRlIFBvc3Qg4oCcMTk3MC0wMS0wMS1maXJzdC10aXRsZeKAnSIsInRpdGxlIjoiZmlyc3QgdGl0bGUiLCJkZXNjcmlwdGlvbiI6ImZpcnN0IGRlc2NyaXB0aW9uIiwib2JqZWN0cyI6eyJlbnRyeSI6eyJwYXRoIjoiY29udGVudC9wb3N0cy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxlLm1kIiwic2hhIjoiYTA0MTI0NTgxNDg5MmUzZjczZjYzY2E1NDMzM2ZkYTY0OWI3ZmMwYiJ9LCJmaWxlcyI6W119LCJ0aW1lU3RhbXAiOiIxOTcwLTAxLTAxVDAwOjAwOjAwLjMwMFoifQ==\",\"encoding\":\"base64\"}", + "method": "POST", + "url": "/repos/owner/repo/git/blobs?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:45:51 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "206", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4811", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"61142a9515c4e6d3da0f80a890ed3bf5\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/blobs/fa6acb9442868c7d6b05f613fe9431157537f96b", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A14:244E1:50DA19:618CB8:5D77A90F", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"fa6acb9442868c7d6b05f613fe9431157537f96b\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/fa6acb9442868c7d6b05f613fe9431157537f96b\"\n}\n", + "status": 201 + }, + { + "body": "{\"operationName\":\"tree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"51b3cf5b9d77882180719379f58f4ca16d8ef87e\"},\"query\":\"query tree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n tree: object(oid: $sha) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:45:52 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4947", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7A18:1510F:120E6EA:15E8E5D:5D77A910", + "content-length": "260", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"tree\":{\"id\":\"MDY6Q29tbWl0MjA3NTcwODkwOjUxYjNjZjViOWQ3Nzg4MjE4MDcxOTM3OWY1OGY0Y2ExNmQ4ZWY4N2U=\",\"sha\":\"51b3cf5b9d77882180719379f58f4ca16d8ef87e\",\"__typename\":\"Commit\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"commitTree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"51b3cf5b9d77882180719379f58f4ca16d8ef87e\"},\"query\":\"query commitTree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n commit: object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n tree {\\n ...ObjectParts\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:45:52 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4946", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7A16:1510D:463497:561587:5D77A910", + "content-length": "698", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"commit\":{\"id\":\"MDY6Q29tbWl0MjA3NTcwODkwOjUxYjNjZjViOWQ3Nzg4MjE4MDcxOTM3OWY1OGY0Y2ExNmQ4ZWY4N2U=\",\"sha\":\"51b3cf5b9d77882180719379f58f4ca16d8ef87e\",\"__typename\":\"Commit\",\"tree\":{\"id\":\"MDQ6VHJlZTIwNzU3MDg5MDo5MTlhZWFhNWMyOWRjZDE1MzY4N2Q3MjU5OWVhNjQwYTA1ZTJkOGZj\",\"sha\":\"919aeaa5c29dcd153687d72599ea640a05e2d8fc\",\"__typename\":\"Tree\",\"entries\":[{\"path\":\"1970-01-01-first-title.json\",\"sha\":\"6b6cd2caffbba193d9a8a9269d8a4c7b588a0686\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"README.md\",\"sha\":\"98787d1bd948850444433e91a43091a76c4eb455\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"}]}}}}}\n", + "status": 200 + }, + { + "body": "{\"base_tree\":\"51b3cf5b9d77882180719379f58f4ca16d8ef87e\",\"tree\":[{\"path\":\"1970-01-01-first-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"fa6acb9442868c7d6b05f613fe9431157537f96b\"}]}", + "method": "POST", + "url": "/repos/owner/repo/git/trees?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:45:54 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "892", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4810", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"4deb5ab9093b5f789838b6f0e1819fdf\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/trees/3e3090e42601c992847bd434ed982420bf15c4d4", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A1C:9D21:170F3C8:1C16C37:5D77A911", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"3e3090e42601c992847bd434ed982420bf15c4d4\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/3e3090e42601c992847bd434ed982420bf15c4d4\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"fa6acb9442868c7d6b05f613fe9431157537f96b\",\n \"size\": 462,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/fa6acb9442868c7d6b05f613fe9431157537f96b\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"message\":\"Updating “1970-01-01-first-title” metadata\",\"tree\":\"3e3090e42601c992847bd434ed982420bf15c4d4\",\"parents\":[\"51b3cf5b9d77882180719379f58f4ca16d8ef87e\"]}", + "method": "POST", + "url": "/repos/owner/repo/git/commits?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:45:55 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "1505", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4809", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"7d255dca4a1ef9a4be95f61a76192fb7\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/commits/98e8933e7052be0f9fff705b89a1ffac37ea3a1b", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A20:2B1F:1204017:15FB617:5D77A912", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"98e8933e7052be0f9fff705b89a1ffac37ea3a1b\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NTcwODkwOjk4ZTg5MzNlNzA1MmJlMGY5ZmZmNzA1Yjg5YTFmZmFjMzdlYTNhMWI=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/98e8933e7052be0f9fff705b89a1ffac37ea3a1b\",\n \"html_url\": \"https://github.com/owner/repo/commit/98e8933e7052be0f9fff705b89a1ffac37ea3a1b\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T13:45:54Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T13:45:54Z\"\n },\n \"tree\": {\n \"sha\": \"3e3090e42601c992847bd434ed982420bf15c4d4\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/3e3090e42601c992847bd434ed982420bf15c4d4\"\n },\n \"message\": \"Updating “1970-01-01-first-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"51b3cf5b9d77882180719379f58f4ca16d8ef87e\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/51b3cf5b9d77882180719379f58f4ca16d8ef87e\",\n \"html_url\": \"https://github.com/owner/repo/commit/51b3cf5b9d77882180719379f58f4ca16d8ef87e\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "status": 201 + }, + { + "body": "{\"sha\":\"98e8933e7052be0f9fff705b89a1ffac37ea3a1b\",\"force\":false}", + "method": "PATCH", + "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:45:56 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4808", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"76a1b19d06c3057d0196c85c92a49762\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A70:15110:1851F2A:1D8B486:5D77A913", + "content-length": "482", + "connection": "keep-alive" + }, + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NTcwODkwOnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"98e8933e7052be0f9fff705b89a1ffac37ea3a1b\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/98e8933e7052be0f9fff705b89a1ffac37ea3a1b\"\n }\n}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"unpublishedBranchFile\",\"variables\":{\"headOwner\":\"owner\",\"headRepoName\":\"repo\",\"headExpression\":\"cms/1970-01-01-first-title:content/posts/1970-01-01-first-title.md\",\"baseOwner\":\"owner\",\"baseRepoName\":\"repo\",\"baseExpression\":\"master:content/posts/1970-01-01-first-title.md\"},\"query\":\"query unpublishedBranchFile($headOwner: String!, $headRepoName: String!, $headExpression: String!, $baseOwner: String!, $baseRepoName: String!, $baseExpression: String!) {\\n head: repository(owner: $headOwner, name: $headRepoName) {\\n ...RepositoryParts\\n object(expression: $headExpression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n base: repository(owner: $baseOwner, name: $baseRepoName) {\\n ...RepositoryParts\\n object(expression: $baseExpression) {\\n ... on Blob {\\n id\\n oid\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:45:58 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4945", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7A73:3ED82:184E791:1D910FB:5D77A915", + "content-length": "496", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"head\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzU3MDg5MDphMDQxMjQ1ODE0ODkyZTNmNzNmNjNjYTU0MzMzZmRhNjQ5YjdmYzBi\",\"text\":\"---\\ntemplate: post\\ntitle: first title\\ndraft: true\\ndate: 1970-01-01T00:00:00.000Z\\ndescription: first description\\ncategory: first category\\ntags:\\n - tag1\\n---\\nfirst body\\n\",\"is_binary\":false,\"__typename\":\"Blob\"}},\"base\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"object\":null}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"statues\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"cabe318fe1731587ff3a17e0a91ba74c43e937b2\"},\"query\":\"query statues($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n status {\\n id\\n contexts {\\n id\\n context\\n state\\n target_url: targetUrl\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:45:59 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4944", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7A74:B4DC:AA537B:CF25C4:5D77A916", + "content-length": "276", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDY6Q29tbWl0MjA3NTcwODkwOmNhYmUzMThmZTE3MzE1ODdmZjNhMTdlMGE5MWJhNzRjNDNlOTM3YjI=\",\"sha\":\"cabe318fe1731587ff3a17e0a91ba74c43e937b2\",\"__typename\":\"Commit\",\"status\":null}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"unpublishedPrBranches\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\"},\"query\":\"query unpublishedPrBranches($owner: String!, $name: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n refs(refPrefix: \\\"refs/heads/cms/\\\", last: 50) {\\n nodes {\\n id\\n associatedPullRequests(last: 50, states: OPEN) {\\n nodes {\\n id\\n headRef {\\n id\\n name\\n prefix\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:45:59 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4943", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7A76:244EB:17DC22F:1CFA28E:5D77A916", + "content-length": "518", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"refs\":{\"nodes\":[{\"id\":\"MDM6UmVmMjA3NTcwODkwOjE5NzAtMDEtMDEtZmlyc3QtdGl0bGU=\",\"associatedPullRequests\":{\"nodes\":[{\"id\":\"MDExOlB1bGxSZXF1ZXN0MzE2MDAyODk4\",\"headRef\":{\"id\":\"MDM6UmVmMjA3NTcwODkwOmNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxl\",\"name\":\"cms/1970-01-01-first-title\",\"prefix\":\"refs/heads/\",\"__typename\":\"Ref\"},\"__typename\":\"PullRequest\"}],\"__typename\":\"PullRequestConnection\"},\"__typename\":\"Ref\"}],\"__typename\":\"RefConnection\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"unpublishedBranchFile\",\"variables\":{\"headOwner\":\"owner\",\"headRepoName\":\"repo\",\"headExpression\":\"cms/1970-01-01-first-title:content/posts/1970-01-01-first-title.md\",\"baseOwner\":\"owner\",\"baseRepoName\":\"repo\",\"baseExpression\":\"master:content/posts/1970-01-01-first-title.md\"},\"query\":\"query unpublishedBranchFile($headOwner: String!, $headRepoName: String!, $headExpression: String!, $baseOwner: String!, $baseRepoName: String!, $baseExpression: String!) {\\n head: repository(owner: $headOwner, name: $headRepoName) {\\n ...RepositoryParts\\n object(expression: $headExpression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n base: repository(owner: $baseOwner, name: $baseRepoName) {\\n ...RepositoryParts\\n object(expression: $baseExpression) {\\n ... on Blob {\\n id\\n oid\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:46:00 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4942", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7A78:15110:1852654:1D8BD44:5D77A917", + "content-length": "496", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"head\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzU3MDg5MDphMDQxMjQ1ODE0ODkyZTNmNzNmNjNjYTU0MzMzZmRhNjQ5YjdmYzBi\",\"text\":\"---\\ntemplate: post\\ntitle: first title\\ndraft: true\\ndate: 1970-01-01T00:00:00.000Z\\ndescription: first description\\ncategory: first category\\ntags:\\n - tag1\\n---\\nfirst body\\n\",\"is_binary\":false,\"__typename\":\"Blob\"}},\"base\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"object\":null}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"unpublishedBranchFile\",\"variables\":{\"headOwner\":\"owner\",\"headRepoName\":\"repo\",\"headExpression\":\"cms/1970-01-01-first-title:content/posts/1970-01-01-first-title.md\",\"baseOwner\":\"owner\",\"baseRepoName\":\"repo\",\"baseExpression\":\"master:content/posts/1970-01-01-first-title.md\"},\"query\":\"query unpublishedBranchFile($headOwner: String!, $headRepoName: String!, $headExpression: String!, $baseOwner: String!, $baseRepoName: String!, $baseExpression: String!) {\\n head: repository(owner: $headOwner, name: $headRepoName) {\\n ...RepositoryParts\\n object(expression: $headExpression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n base: repository(owner: $baseOwner, name: $baseRepoName) {\\n ...RepositoryParts\\n object(expression: $baseExpression) {\\n ... on Blob {\\n id\\n oid\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:46:01 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4941", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7A7C:2B1F:12049CB:15FC1C4:5D77A919", + "content-length": "496", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"head\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzU3MDg5MDphMDQxMjQ1ODE0ODkyZTNmNzNmNjNjYTU0MzMzZmRhNjQ5YjdmYzBi\",\"text\":\"---\\ntemplate: post\\ntitle: first title\\ndraft: true\\ndate: 1970-01-01T00:00:00.000Z\\ndescription: first description\\ncategory: first category\\ntags:\\n - tag1\\n---\\nfirst body\\n\",\"is_binary\":false,\"__typename\":\"Blob\"}},\"base\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"object\":null}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"statues\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"cabe318fe1731587ff3a17e0a91ba74c43e937b2\"},\"query\":\"query statues($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n status {\\n id\\n contexts {\\n id\\n context\\n state\\n target_url: targetUrl\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:46:02 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4940", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7A7A:2B1F:12049BA:15FC1B5:5D77A919", + "content-length": "276", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDY6Q29tbWl0MjA3NTcwODkwOmNhYmUzMThmZTE3MzE1ODdmZjNhMTdlMGE5MWJhNzRjNDNlOTM3YjI=\",\"sha\":\"cabe318fe1731587ff3a17e0a91ba74c43e937b2\",\"__typename\":\"Commit\",\"status\":null}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"statues\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"cabe318fe1731587ff3a17e0a91ba74c43e937b2\"},\"query\":\"query statues($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n status {\\n id\\n contexts {\\n id\\n context\\n state\\n target_url: targetUrl\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:46:05 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4939", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7A81:2B24:179A432:1CB07F3:5D77A91C", + "content-length": "276", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDY6Q29tbWl0MjA3NTcwODkwOmNhYmUzMThmZTE3MzE1ODdmZjNhMTdlMGE5MWJhNzRjNDNlOTM3YjI=\",\"sha\":\"cabe318fe1731587ff3a17e0a91ba74c43e937b2\",\"__typename\":\"Commit\",\"status\":null}}}}\n", + "status": 200 + }, + { + "body": "{\"content\":\"LS0tCnRlbXBsYXRlOiBwb3N0CnRpdGxlOiBzZWNvbmQgdGl0bGUKZHJhZnQ6IHRydWUKZGF0ZTogMTk3MC0wMS0wMVQwMDowMDowMC4wMDBaCmRlc2NyaXB0aW9uOiBzZWNvbmQgZGVzY3JpcHRpb24KY2F0ZWdvcnk6IHNlY29uZCBjYXRlZ29yeQp0YWdzOgogIC0gdGFnMgotLS0Kc2Vjb25kIGJvZHkK\",\"encoding\":\"base64\"}", + "method": "POST", + "url": "/repos/owner/repo/git/blobs?ts=600", + "headers": { + "Date": "Tue, 10 Sep 2019 13:46:08 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "206", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4807", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"0ccb5026bd06b96d7eaee9721867c42e\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/blobs/3e5676c8285a456a6604603042b5428883f50417", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A82:1510D:463B44:561DC7:5D77A91F", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"3e5676c8285a456a6604603042b5428883f50417\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/3e5676c8285a456a6604603042b5428883f50417\"\n}\n", + "status": 201 + }, + { + "body": "{\"operationName\":\"statues\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"cabe318fe1731587ff3a17e0a91ba74c43e937b2\"},\"query\":\"query statues($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n status {\\n id\\n contexts {\\n id\\n context\\n state\\n target_url: targetUrl\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:46:08 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4938", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7A84:3ED77:AA1BB0:CE28BA:5D77A91F", + "content-length": "276", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDY6Q29tbWl0MjA3NTcwODkwOmNhYmUzMThmZTE3MzE1ODdmZjNhMTdlMGE5MWJhNzRjNDNlOTM3YjI=\",\"sha\":\"cabe318fe1731587ff3a17e0a91ba74c43e937b2\",\"__typename\":\"Commit\",\"status\":null}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"tree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"cabe318fe1731587ff3a17e0a91ba74c43e937b2\"},\"query\":\"query tree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n tree: object(oid: $sha) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:46:09 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4936", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7A89:9D20:112E533:150226C:5D77A920", + "content-length": "260", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"tree\":{\"id\":\"MDY6Q29tbWl0MjA3NTcwODkwOmNhYmUzMThmZTE3MzE1ODdmZjNhMTdlMGE5MWJhNzRjNDNlOTM3YjI=\",\"sha\":\"cabe318fe1731587ff3a17e0a91ba74c43e937b2\",\"__typename\":\"Commit\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"commitTree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"cabe318fe1731587ff3a17e0a91ba74c43e937b2\"},\"query\":\"query commitTree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n commit: object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n tree {\\n ...ObjectParts\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:46:09 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4937", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7A86:9D21:1710EC0:1C18D38:5D77A920", + "content-length": "5040", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"commit\":{\"id\":\"MDY6Q29tbWl0MjA3NTcwODkwOmNhYmUzMThmZTE3MzE1ODdmZjNhMTdlMGE5MWJhNzRjNDNlOTM3YjI=\",\"sha\":\"cabe318fe1731587ff3a17e0a91ba74c43e937b2\",\"__typename\":\"Commit\",\"tree\":{\"id\":\"MDQ6VHJlZTIwNzU3MDg5MDpkYWVlOGQ1ZDE1ZDE0NGU4Nzc5OTU1MTY2YTJhZmVjY2RlMjc3MGUx\",\"sha\":\"daee8d5d15d144e8779955166a2afeccde2770e1\",\"__typename\":\"Tree\",\"entries\":[{\"path\":\".circleci\",\"sha\":\"e5e9af3301cac61f120b8e4d40b1733c7a45685a\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\".eslintignore\",\"sha\":\"80b4531b026d19f8fa589efd122e76199d23f967\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".eslintrc.js\",\"sha\":\"370684994aaed5b858da3a006f48cfa57e88fd27\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".flowconfig\",\"sha\":\"14aa2ac4cc0e15223ad98630a6f1325fc81f8043\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".gitattributes\",\"sha\":\"10a369ddf4f603337cabc6f21646508323941ce1\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".github\",\"sha\":\"4ebeece548b52b20af59622354530a6d33b50b43\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\".gitignore\",\"sha\":\"c071ba35b0e49899bab6d610a68eef667dbbf157\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".prettierignore\",\"sha\":\"393f050e123d998cf8c8b362ff95cc8ac4d250e5\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".prettierrc\",\"sha\":\"e52ad05bb13b084d7949dd76e1b2517455162150\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".stylelintrc.json\",\"sha\":\"4b4c9698d10d756f5faa025659b86375428ed0a7\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".vscode\",\"sha\":\"286e97ec0113ea8242b41ac222e2c3e8077e6f1e\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"CHANGELOG.md\",\"sha\":\"070a5d4f0eacd2dc0be81ae8996f8982de43046e\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"CODE_OF_CONDUCT.md\",\"sha\":\"92bc7565ff0ee145a0041b5179a820f14f39ab22\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"CONTRIBUTING.md\",\"sha\":\"8552aa241254a61258e1ff9666ab36f32fb1e3b9\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"LICENSE\",\"sha\":\"42d85938357b49977c126ca03b199129082d4fb8\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"README.md\",\"sha\":\"19df50a78654c8d757ca7f38447aa3d09c7abcce\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"backend\",\"sha\":\"b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"config.js\",\"sha\":\"58afd573bbb69fcca000efd0f5d90b93c93a98dd\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"content\",\"sha\":\"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"flow-typed\",\"sha\":\"86c32fd6c3118be5e0dbbb231a834447357236c6\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"flow\",\"sha\":\"0af45ad00d155c8d8c7407d913ff85278244c9ce\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"gatsby-browser.js\",\"sha\":\"9bd2c9dce175f04980e91cd9dc295a299e3cdb80\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"gatsby-config.js\",\"sha\":\"353a109dad62e3f25bf9f5e6a2167f21a6c8b459\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"gatsby-node.js\",\"sha\":\"14a207883c2093d2cc071bc5a464e165bcc1fead\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"gatsby\",\"sha\":\"4f23c06cd1740bf78304d2c0b29bf6bfdf427981\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"jest\",\"sha\":\"5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"netlify.toml\",\"sha\":\"599b99cc5700404fde316a7ede829776f23e7d45\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"package.json\",\"sha\":\"9d777616438b90a18f1a4ebfd5f114b4c06c6f17\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"postcss-config.js\",\"sha\":\"d216501e9b351a72e00ba0b7459a6500e27e7da2\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"renovate.json\",\"sha\":\"dcc309398785698b8870545c32051a3d72dd8271\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"serverless-scripts\",\"sha\":\"ee3701f2fbfc7196ba340f6481d1387d20527898\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"serverless-single-page-app-plugin\",\"sha\":\"08763fcfba643a06a452398517019bea4a5850ba\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"serverless.yml\",\"sha\":\"20b22c5fad229f35d029bf6614d333d82fe8a987\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"src\",\"sha\":\"8cdb35a88232c0f32f12f130c92c7cc55f97f471\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"static\",\"sha\":\"53c6380a600a030d3722bff7ecde36f749fb6964\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"utils\",\"sha\":\"a592549c9f74db40b51efefcda2fd76810405f27\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"yarn.lock\",\"sha\":\"475c9c1924ca752a0686303e2fdeb7b13ad75f57\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"}]}}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"tree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"93da0f3541510f5f9ec829a3cdc6e8147f611639\"},\"query\":\"query tree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n tree: object(oid: $sha) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:46:10 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4935", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7A8C:244EB:17DD5C1:1CFBAA1:5D77A921", + "content-length": "502", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"tree\":{\"id\":\"MDQ6VHJlZTIwNzU3MDg5MDo5M2RhMGYzNTQxNTEwZjVmOWVjODI5YTNjZGM2ZTgxNDdmNjExNjM5\",\"sha\":\"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\"__typename\":\"Tree\",\"entries\":[{\"path\":\"pages\",\"sha\":\"1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"posts\",\"sha\":\"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"}]}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"commitTree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"93da0f3541510f5f9ec829a3cdc6e8147f611639\"},\"query\":\"query commitTree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n commit: object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n tree {\\n ...ObjectParts\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:46:10 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4934", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7A8A:15110:18537F0:1D8D2F2:5D77A921", + "content-length": "256", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"commit\":{\"id\":\"MDQ6VHJlZTIwNzU3MDg5MDo5M2RhMGYzNTQxNTEwZjVmOWVjODI5YTNjZGM2ZTgxNDdmNjExNjM5\",\"sha\":\"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\"__typename\":\"Tree\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"tree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\"},\"query\":\"query tree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n tree: object(oid: $sha) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:46:10 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4933", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7A94:2B24:179AE85:1CB14B7:5D77A922", + "content-length": "1213", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"tree\":{\"id\":\"MDQ6VHJlZTIwNzU3MDg5MDphYjVhMWJiZmUxNDg2ZWEwZTkzMTgyYjcxOWM5MjdkODRlZTFmMWJh\",\"sha\":\"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\"__typename\":\"Tree\",\"entries\":[{\"path\":\"1970-01-01-first-title.md\",\"sha\":\"a041245814892e3f73f63ca54333fda649b7fc0b\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\"sha\":\"6d51a38aed7139d2117724b1e307657b6ff2d043\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\"sha\":\"d0582dd245a3f408fb3fe2333bf01400007476e9\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"2016-02-02---A-Brief-History-of-Typography.md\",\"sha\":\"0eea554365f002d0f1572af9a58522d335a794d5\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"2017-18-08---The-Birth-of-Movable-Type.md\",\"sha\":\"44f78c474d04273185a95821426f75affc9b0044\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\"sha\":\"a532f0a9445cdf90a19c6812cff89d1674991774\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"}]}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"commitTree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\"},\"query\":\"query commitTree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n commit: object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n tree {\\n ...ObjectParts\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:46:11 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4932", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7A92:3ED82:184FE9B:1D92D77:5D77A922", + "content-length": "256", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"commit\":{\"id\":\"MDQ6VHJlZTIwNzU3MDg5MDphYjVhMWJiZmUxNDg2ZWEwZTkzMTgyYjcxOWM5MjdkODRlZTFmMWJh\",\"sha\":\"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\"__typename\":\"Tree\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"statues\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"cabe318fe1731587ff3a17e0a91ba74c43e937b2\"},\"query\":\"query statues($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n status {\\n id\\n contexts {\\n id\\n context\\n state\\n target_url: targetUrl\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:46:11 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4931", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7A98:3ED7B:1241547:162B7ED:5D77A922", + "content-length": "276", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDY6Q29tbWl0MjA3NTcwODkwOmNhYmUzMThmZTE3MzE1ODdmZjNhMTdlMGE5MWJhNzRjNDNlOTM3YjI=\",\"sha\":\"cabe318fe1731587ff3a17e0a91ba74c43e937b2\",\"__typename\":\"Commit\",\"status\":null}}}}\n", + "status": 200 + }, + { + "body": "{\"base_tree\":\"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\"tree\":[{\"path\":\"1970-01-01-first-title.md\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"3e5676c8285a456a6604603042b5428883f50417\"}]}", + "method": "POST", + "url": "/repos/owner/repo/git/trees?ts=600", + "headers": { + "Date": "Tue, 10 Sep 2019 13:46:12 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "2355", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4806", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"093c5e21bfb72915710f30a731267c1c\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/trees/7db8b5bca921590c7c398d029d9172111750f5fc", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A99:2B24:179B09D:1CB173D:5D77A923", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"7db8b5bca921590c7c398d029d9172111750f5fc\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/7db8b5bca921590c7c398d029d9172111750f5fc\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"3e5676c8285a456a6604603042b5428883f50417\",\n \"size\": 171,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/3e5676c8285a456a6604603042b5428883f50417\"\n },\n {\n \"path\": \"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"size\": 1707,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\"\n },\n {\n \"path\": \"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"size\": 2565,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\"\n },\n {\n \"path\": \"2016-02-02---A-Brief-History-of-Typography.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"0eea554365f002d0f1572af9a58522d335a794d5\",\n \"size\": 2786,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\"\n },\n {\n \"path\": \"2017-18-08---The-Birth-of-Movable-Type.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"44f78c474d04273185a95821426f75affc9b0044\",\n \"size\": 16071,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\"\n },\n {\n \"path\": \"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"size\": 7465,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"base_tree\":\"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\"tree\":[{\"path\":\"posts\",\"mode\":\"040000\",\"type\":\"tree\",\"sha\":\"7db8b5bca921590c7c398d029d9172111750f5fc\",\"parentSha\":\"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\"}]}", + "method": "POST", + "url": "/repos/owner/repo/git/trees?ts=600", + "headers": { + "Date": "Tue, 10 Sep 2019 13:46:13 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "828", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4805", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"17917670bbc655b51adcf6814754bef8\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/trees/4663bc351c2b79f066f9434722d865f8a0fc88cd", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A9C:244E7:118372E:155E4F8:5D77A924", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"4663bc351c2b79f066f9434722d865f8a0fc88cd\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4663bc351c2b79f066f9434722d865f8a0fc88cd\",\n \"tree\": [\n {\n \"path\": \"pages\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\"\n },\n {\n \"path\": \"posts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"7db8b5bca921590c7c398d029d9172111750f5fc\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/7db8b5bca921590c7c398d029d9172111750f5fc\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"base_tree\":\"cabe318fe1731587ff3a17e0a91ba74c43e937b2\",\"tree\":[{\"path\":\"content\",\"mode\":\"040000\",\"type\":\"tree\",\"sha\":\"4663bc351c2b79f066f9434722d865f8a0fc88cd\",\"parentSha\":\"93da0f3541510f5f9ec829a3cdc6e8147f611639\"}]}", + "method": "POST", + "url": "/repos/owner/repo/git/trees?ts=600", + "headers": { + "Date": "Tue, 10 Sep 2019 13:46:14 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "11731", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4804", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"d76eafda4d4c2bf803b233267a16f7b3\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/trees/9011d70a132ecce386da7098e3ca594bbb772623", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A9E:2B24:179B404:1CB1B63:5D77A925", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"9011d70a132ecce386da7098e3ca594bbb772623\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/9011d70a132ecce386da7098e3ca594bbb772623\",\n \"tree\": [\n {\n \"path\": \".circleci\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"e5e9af3301cac61f120b8e4d40b1733c7a45685a\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/e5e9af3301cac61f120b8e4d40b1733c7a45685a\"\n },\n {\n \"path\": \".eslintignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"80b4531b026d19f8fa589efd122e76199d23f967\",\n \"size\": 39,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/80b4531b026d19f8fa589efd122e76199d23f967\"\n },\n {\n \"path\": \".eslintrc.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"370684994aaed5b858da3a006f48cfa57e88fd27\",\n \"size\": 414,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/370684994aaed5b858da3a006f48cfa57e88fd27\"\n },\n {\n \"path\": \".flowconfig\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14aa2ac4cc0e15223ad98630a6f1325fc81f8043\",\n \"size\": 283,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14aa2ac4cc0e15223ad98630a6f1325fc81f8043\"\n },\n {\n \"path\": \".gitattributes\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"10a369ddf4f603337cabc6f21646508323941ce1\",\n \"size\": 135,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/10a369ddf4f603337cabc6f21646508323941ce1\"\n },\n {\n \"path\": \".github\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4ebeece548b52b20af59622354530a6d33b50b43\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4ebeece548b52b20af59622354530a6d33b50b43\"\n },\n {\n \"path\": \".gitignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"c071ba35b0e49899bab6d610a68eef667dbbf157\",\n \"size\": 169,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/c071ba35b0e49899bab6d610a68eef667dbbf157\"\n },\n {\n \"path\": \".prettierignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"393f050e123d998cf8c8b362ff95cc8ac4d250e5\",\n \"size\": 45,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/393f050e123d998cf8c8b362ff95cc8ac4d250e5\"\n },\n {\n \"path\": \".prettierrc\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e52ad05bb13b084d7949dd76e1b2517455162150\",\n \"size\": 223,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/e52ad05bb13b084d7949dd76e1b2517455162150\"\n },\n {\n \"path\": \".stylelintrc.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"4b4c9698d10d756f5faa025659b86375428ed0a7\",\n \"size\": 718,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/4b4c9698d10d756f5faa025659b86375428ed0a7\"\n },\n {\n \"path\": \".vscode\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"286e97ec0113ea8242b41ac222e2c3e8077e6f1e\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/286e97ec0113ea8242b41ac222e2c3e8077e6f1e\"\n },\n {\n \"path\": \"CHANGELOG.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"070a5d4f0eacd2dc0be81ae8996f8982de43046e\",\n \"size\": 2113,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/070a5d4f0eacd2dc0be81ae8996f8982de43046e\"\n },\n {\n \"path\": \"CODE_OF_CONDUCT.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"92bc7565ff0ee145a0041b5179a820f14f39ab22\",\n \"size\": 3355,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/92bc7565ff0ee145a0041b5179a820f14f39ab22\"\n },\n {\n \"path\": \"CONTRIBUTING.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"8552aa241254a61258e1ff9666ab36f32fb1e3b9\",\n \"size\": 3548,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/8552aa241254a61258e1ff9666ab36f32fb1e3b9\"\n },\n {\n \"path\": \"LICENSE\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"42d85938357b49977c126ca03b199129082d4fb8\",\n \"size\": 1091,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/42d85938357b49977c126ca03b199129082d4fb8\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"19df50a78654c8d757ca7f38447aa3d09c7abcce\",\n \"size\": 3698,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/19df50a78654c8d757ca7f38447aa3d09c7abcce\"\n },\n {\n \"path\": \"backend\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\"\n },\n {\n \"path\": \"config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"58afd573bbb69fcca000efd0f5d90b93c93a98dd\",\n \"size\": 853,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/58afd573bbb69fcca000efd0f5d90b93c93a98dd\"\n },\n {\n \"path\": \"content\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4663bc351c2b79f066f9434722d865f8a0fc88cd\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4663bc351c2b79f066f9434722d865f8a0fc88cd\"\n },\n {\n \"path\": \"flow-typed\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"86c32fd6c3118be5e0dbbb231a834447357236c6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/86c32fd6c3118be5e0dbbb231a834447357236c6\"\n },\n {\n \"path\": \"flow\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"0af45ad00d155c8d8c7407d913ff85278244c9ce\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/0af45ad00d155c8d8c7407d913ff85278244c9ce\"\n },\n {\n \"path\": \"gatsby-browser.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9bd2c9dce175f04980e91cd9dc295a299e3cdb80\",\n \"size\": 90,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9bd2c9dce175f04980e91cd9dc295a299e3cdb80\"\n },\n {\n \"path\": \"gatsby-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"353a109dad62e3f25bf9f5e6a2167f21a6c8b459\",\n \"size\": 7228,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/353a109dad62e3f25bf9f5e6a2167f21a6c8b459\"\n },\n {\n \"path\": \"gatsby-node.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14a207883c2093d2cc071bc5a464e165bcc1fead\",\n \"size\": 409,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14a207883c2093d2cc071bc5a464e165bcc1fead\"\n },\n {\n \"path\": \"gatsby\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4f23c06cd1740bf78304d2c0b29bf6bfdf427981\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4f23c06cd1740bf78304d2c0b29bf6bfdf427981\"\n },\n {\n \"path\": \"jest\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\"\n },\n {\n \"path\": \"netlify.toml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"599b99cc5700404fde316a7ede829776f23e7d45\",\n \"size\": 137,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/599b99cc5700404fde316a7ede829776f23e7d45\"\n },\n {\n \"path\": \"package.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9d777616438b90a18f1a4ebfd5f114b4c06c6f17\",\n \"size\": 6855,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9d777616438b90a18f1a4ebfd5f114b4c06c6f17\"\n },\n {\n \"path\": \"postcss-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d216501e9b351a72e00ba0b7459a6500e27e7da2\",\n \"size\": 703,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d216501e9b351a72e00ba0b7459a6500e27e7da2\"\n },\n {\n \"path\": \"renovate.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"dcc309398785698b8870545c32051a3d72dd8271\",\n \"size\": 460,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/dcc309398785698b8870545c32051a3d72dd8271\"\n },\n {\n \"path\": \"serverless-scripts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ee3701f2fbfc7196ba340f6481d1387d20527898\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ee3701f2fbfc7196ba340f6481d1387d20527898\"\n },\n {\n \"path\": \"serverless-single-page-app-plugin\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"08763fcfba643a06a452398517019bea4a5850ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/08763fcfba643a06a452398517019bea4a5850ba\"\n },\n {\n \"path\": \"serverless.yml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"20b22c5fad229f35d029bf6614d333d82fe8a987\",\n \"size\": 7803,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/20b22c5fad229f35d029bf6614d333d82fe8a987\"\n },\n {\n \"path\": \"src\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"8cdb35a88232c0f32f12f130c92c7cc55f97f471\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/8cdb35a88232c0f32f12f130c92c7cc55f97f471\"\n },\n {\n \"path\": \"static\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"53c6380a600a030d3722bff7ecde36f749fb6964\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/53c6380a600a030d3722bff7ecde36f749fb6964\"\n },\n {\n \"path\": \"utils\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"a592549c9f74db40b51efefcda2fd76810405f27\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/a592549c9f74db40b51efefcda2fd76810405f27\"\n },\n {\n \"path\": \"yarn.lock\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"475c9c1924ca752a0686303e2fdeb7b13ad75f57\",\n \"size\": 793903,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/475c9c1924ca752a0686303e2fdeb7b13ad75f57\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"operationName\":\"statues\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"cabe318fe1731587ff3a17e0a91ba74c43e937b2\"},\"query\":\"query statues($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n status {\\n id\\n contexts {\\n id\\n context\\n state\\n target_url: targetUrl\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:46:14 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4930", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7AA0:B4DA:519B5A:638E17:5D77A926", + "content-length": "276", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDY6Q29tbWl0MjA3NTcwODkwOmNhYmUzMThmZTE3MzE1ODdmZjNhMTdlMGE5MWJhNzRjNDNlOTM3YjI=\",\"sha\":\"cabe318fe1731587ff3a17e0a91ba74c43e937b2\",\"__typename\":\"Commit\",\"status\":null}}}}\n", + "status": 200 + }, + { + "body": "{\"message\":\"Update Post “1970-01-01-first-title”\",\"tree\":\"9011d70a132ecce386da7098e3ca594bbb772623\",\"parents\":[\"cabe318fe1731587ff3a17e0a91ba74c43e937b2\"]}", + "method": "POST", + "url": "/repos/owner/repo/git/commits?ts=600", + "headers": { + "Date": "Tue, 10 Sep 2019 13:46:15 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "1499", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4803", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"aba6e531114b4a3a05914d6c38f5bfe9\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/commits/f6bdfa173958cec0ad21da5b9451be3eab6cbaf7", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7AA2:B4E0:168C462:1B70D2D:5D77A926", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"f6bdfa173958cec0ad21da5b9451be3eab6cbaf7\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NTcwODkwOmY2YmRmYTE3Mzk1OGNlYzBhZDIxZGE1Yjk0NTFiZTNlYWI2Y2JhZjc=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/f6bdfa173958cec0ad21da5b9451be3eab6cbaf7\",\n \"html_url\": \"https://github.com/owner/repo/commit/f6bdfa173958cec0ad21da5b9451be3eab6cbaf7\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T13:46:15Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T13:46:15Z\"\n },\n \"tree\": {\n \"sha\": \"9011d70a132ecce386da7098e3ca594bbb772623\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/9011d70a132ecce386da7098e3ca594bbb772623\"\n },\n \"message\": \"Update Post “1970-01-01-first-title”\",\n \"parents\": [\n {\n \"sha\": \"cabe318fe1731587ff3a17e0a91ba74c43e937b2\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/cabe318fe1731587ff3a17e0a91ba74c43e937b2\",\n \"html_url\": \"https://github.com/owner/repo/commit/cabe318fe1731587ff3a17e0a91ba74c43e937b2\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "status": 201 + }, + { + "body": "{\"operationName\":\"branch\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"qualifiedName\":\"refs/heads/master\"},\"query\":\"query branch($owner: String!, $name: String!, $qualifiedName: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n branch: ref(qualifiedName: $qualifiedName) {\\n ...BranchParts\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BranchParts on Ref {\\n commit: target {\\n ...ObjectParts\\n __typename\\n }\\n id\\n name\\n repository {\\n ...RepositoryParts\\n __typename\\n }\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:46:16 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4929", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7AA4:9D20:112EE6C:1502DC9:5D77A928", + "content-length": "429", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"branch\":{\"commit\":{\"id\":\"MDY6Q29tbWl0MjA3NTcwODkwOjcyNjE3MmRlYWU5OWM4YTJjZWE0YzcxZTczNGEwMmE3OTNkNGQ5ZTU=\",\"sha\":\"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\"__typename\":\"Commit\"},\"id\":\"MDM6UmVmMjA3NTcwODkwOm1hc3Rlcg==\",\"name\":\"master\",\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\"},\"__typename\":\"Ref\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"pullRequestCommits\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"number\":2},\"query\":\"query pullRequestCommits($owner: String!, $name: String!, $number: Int!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n pullRequest(number: $number) {\\n id\\n commits(last: 100) {\\n nodes {\\n id\\n commit {\\n ...ObjectParts\\n parents(last: 100) {\\n nodes {\\n ...ObjectParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:46:16 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4928", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7AA6:15110:185433B:1D8E0D7:5D77A928", + "content-length": "764", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"pullRequest\":{\"id\":\"MDExOlB1bGxSZXF1ZXN0MzE2MDAyODk4\",\"commits\":{\"nodes\":[{\"id\":\"MDE3OlB1bGxSZXF1ZXN0Q29tbWl0MzE2MDAyODk4OmNhYmUzMThmZTE3MzE1ODdmZjNhMTdlMGE5MWJhNzRjNDNlOTM3YjI=\",\"commit\":{\"id\":\"MDY6Q29tbWl0MjA3NTcwODkwOmNhYmUzMThmZTE3MzE1ODdmZjNhMTdlMGE5MWJhNzRjNDNlOTM3YjI=\",\"sha\":\"cabe318fe1731587ff3a17e0a91ba74c43e937b2\",\"__typename\":\"Commit\",\"parents\":{\"nodes\":[{\"id\":\"MDY6Q29tbWl0MjA3NTcwODkwOjcyNjE3MmRlYWU5OWM4YTJjZWE0YzcxZTczNGEwMmE3OTNkNGQ5ZTU=\",\"sha\":\"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\"__typename\":\"Commit\"}],\"__typename\":\"CommitConnection\"}},\"__typename\":\"PullRequestCommit\"}],\"__typename\":\"PullRequestCommitConnection\"},\"__typename\":\"PullRequest\"}}}}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=600", + "headers": { + "Date": "Tue, 10 Sep 2019 13:46:17 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4802", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"76a1b19d06c3057d0196c85c92a49762\"", + "Last-Modified": "Tue, 10 Sep 2019 13:44:14 GMT", + "X-Poll-Interval": "300", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7AA8:244E1:50E5AB:619B28:5D77A929", + "content-length": "482", + "connection": "keep-alive" + }, + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NTcwODkwOnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"98e8933e7052be0f9fff705b89a1ffac37ea3a1b\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/98e8933e7052be0f9fff705b89a1ffac37ea3a1b\"\n }\n}\n", + "status": 200 + }, + { + "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjIsImhlYWQiOiJmNmJkZmExNzM5NThjZWMwYWQyMWRhNWI5NDUxYmUzZWFiNmNiYWY3In0sInVzZXIiOiJvd25lciIsInN0YXR1cyI6ImRyYWZ0IiwiYnJhbmNoIjoiY21zLzE5NzAtMDEtMDEtZmlyc3QtdGl0bGUiLCJjb2xsZWN0aW9uIjoicG9zdHMiLCJjb21taXRNZXNzYWdlIjoiQ3JlYXRlIFBvc3Qg4oCcMTk3MC0wMS0wMS1maXJzdC10aXRsZeKAnSIsInRpdGxlIjoiZmlyc3QgdGl0bGUiLCJkZXNjcmlwdGlvbiI6ImZpcnN0IGRlc2NyaXB0aW9uIiwib2JqZWN0cyI6eyJlbnRyeSI6eyJwYXRoIjoiY29udGVudC9wb3N0cy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxlLm1kIiwic2hhIjoiYTA0MTI0NTgxNDg5MmUzZjczZjYzY2E1NDMzM2ZkYTY0OWI3ZmMwYiJ9LCJmaWxlcyI6W119LCJ0aW1lU3RhbXAiOiIxOTcwLTAxLTAxVDAwOjAwOjAwLjYwMFoifQ==\",\"encoding\":\"base64\"}", + "method": "POST", + "url": "/repos/owner/repo/git/blobs?ts=600", + "headers": { + "Date": "Tue, 10 Sep 2019 13:46:18 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "206", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4801", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"556037778a6d2c15cb7accdc70e27fa8\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/blobs/81ea348886e0bb00c97e6063ac17034ab798d78b", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7AAA:244EB:17DE3FF:1CFCBDE:5D77A929", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"81ea348886e0bb00c97e6063ac17034ab798d78b\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/81ea348886e0bb00c97e6063ac17034ab798d78b\"\n}\n", + "status": 201 + }, + { + "body": "{\"operationName\":\"tree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"98e8933e7052be0f9fff705b89a1ffac37ea3a1b\"},\"query\":\"query tree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n tree: object(oid: $sha) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:46:19 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4927", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7AAE:B4DC:AA6546:CF3BF5:5D77A92A", + "content-length": "260", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"tree\":{\"id\":\"MDY6Q29tbWl0MjA3NTcwODkwOjk4ZTg5MzNlNzA1MmJlMGY5ZmZmNzA1Yjg5YTFmZmFjMzdlYTNhMWI=\",\"sha\":\"98e8933e7052be0f9fff705b89a1ffac37ea3a1b\",\"__typename\":\"Commit\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"commitTree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"98e8933e7052be0f9fff705b89a1ffac37ea3a1b\"},\"query\":\"query commitTree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n commit: object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n tree {\\n ...ObjectParts\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:46:19 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4926", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7AAC:15110:18548BE:1D8E777:5D77A92A", + "content-length": "698", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"commit\":{\"id\":\"MDY6Q29tbWl0MjA3NTcwODkwOjk4ZTg5MzNlNzA1MmJlMGY5ZmZmNzA1Yjg5YTFmZmFjMzdlYTNhMWI=\",\"sha\":\"98e8933e7052be0f9fff705b89a1ffac37ea3a1b\",\"__typename\":\"Commit\",\"tree\":{\"id\":\"MDQ6VHJlZTIwNzU3MDg5MDozZTMwOTBlNDI2MDFjOTkyODQ3YmQ0MzRlZDk4MjQyMGJmMTVjNGQ0\",\"sha\":\"3e3090e42601c992847bd434ed982420bf15c4d4\",\"__typename\":\"Tree\",\"entries\":[{\"path\":\"1970-01-01-first-title.json\",\"sha\":\"fa6acb9442868c7d6b05f613fe9431157537f96b\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"README.md\",\"sha\":\"98787d1bd948850444433e91a43091a76c4eb455\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"}]}}}}}\n", + "status": 200 + }, + { + "body": "{\"base_tree\":\"98e8933e7052be0f9fff705b89a1ffac37ea3a1b\",\"tree\":[{\"path\":\"1970-01-01-first-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"81ea348886e0bb00c97e6063ac17034ab798d78b\"}]}", + "method": "POST", + "url": "/repos/owner/repo/git/trees?ts=600", + "headers": { + "Date": "Tue, 10 Sep 2019 13:46:20 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "892", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4800", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"6e49bf84a139cb7335d558a426126de6\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/trees/5619e62d83db9be5887c8301f32b26df29b2d827", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7AB0:B4DE:11D1C38:15B03D7:5D77A92C", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"5619e62d83db9be5887c8301f32b26df29b2d827\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/5619e62d83db9be5887c8301f32b26df29b2d827\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"81ea348886e0bb00c97e6063ac17034ab798d78b\",\n \"size\": 462,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/81ea348886e0bb00c97e6063ac17034ab798d78b\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"message\":\"Updating “1970-01-01-first-title” metadata\",\"tree\":\"5619e62d83db9be5887c8301f32b26df29b2d827\",\"parents\":[\"98e8933e7052be0f9fff705b89a1ffac37ea3a1b\"]}", + "method": "POST", + "url": "/repos/owner/repo/git/commits?ts=600", + "headers": { + "Date": "Tue, 10 Sep 2019 13:46:22 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "1505", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4799", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"dd1cf23176f806e70e8f96d862b93ff5\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/commits/97c596c43e15db17fafeb9e3d26aff8fe3ca45f9", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7AB2:2B0F:19A197:1F63D0:5D77A92D", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"97c596c43e15db17fafeb9e3d26aff8fe3ca45f9\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NTcwODkwOjk3YzU5NmM0M2UxNWRiMTdmYWZlYjllM2QyNmFmZjhmZTNjYTQ1Zjk=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/97c596c43e15db17fafeb9e3d26aff8fe3ca45f9\",\n \"html_url\": \"https://github.com/owner/repo/commit/97c596c43e15db17fafeb9e3d26aff8fe3ca45f9\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T13:46:21Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T13:46:21Z\"\n },\n \"tree\": {\n \"sha\": \"5619e62d83db9be5887c8301f32b26df29b2d827\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/5619e62d83db9be5887c8301f32b26df29b2d827\"\n },\n \"message\": \"Updating “1970-01-01-first-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"98e8933e7052be0f9fff705b89a1ffac37ea3a1b\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/98e8933e7052be0f9fff705b89a1ffac37ea3a1b\",\n \"html_url\": \"https://github.com/owner/repo/commit/98e8933e7052be0f9fff705b89a1ffac37ea3a1b\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "status": 201 + }, + { + "body": "{\"sha\":\"97c596c43e15db17fafeb9e3d26aff8fe3ca45f9\",\"force\":false}", + "method": "PATCH", + "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=600", + "headers": { + "Date": "Tue, 10 Sep 2019 13:46:23 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4798", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"ee8189d4309d7ce3a93b9d3bb8b60e48\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7AB4:2B19:A7DAB6:CC49B6:5D77A92E", + "content-length": "482", + "connection": "keep-alive" + }, + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NTcwODkwOnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"97c596c43e15db17fafeb9e3d26aff8fe3ca45f9\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/97c596c43e15db17fafeb9e3d26aff8fe3ca45f9\"\n }\n}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"updateRef\",\"variables\":{\"input\":{\"oid\":\"f6bdfa173958cec0ad21da5b9451be3eab6cbaf7\",\"refId\":\"MDM6UmVmMjA3NTcwODkwOmNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxl\",\"force\":true}},\"query\":\"mutation updateRef($input: UpdateRefInput!) {\\n updateRef(input: $input) {\\n branch: ref {\\n ...BranchParts\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment BranchParts on Ref {\\n commit: target {\\n ...ObjectParts\\n __typename\\n }\\n id\\n name\\n repository {\\n ...RepositoryParts\\n __typename\\n }\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:46:24 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4925", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7AB6:3ED82:185166E:1D94AAE:5D77A92F", + "content-length": "438", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"updateRef\":{\"branch\":{\"commit\":{\"id\":\"MDY6Q29tbWl0MjA3NTcwODkwOmY2YmRmYTE3Mzk1OGNlYzBhZDIxZGE1Yjk0NTFiZTNlYWI2Y2JhZjc=\",\"sha\":\"f6bdfa173958cec0ad21da5b9451be3eab6cbaf7\",\"__typename\":\"Commit\"},\"id\":\"MDM6UmVmMjA3NTcwODkwOmNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxl\",\"name\":\"cms/1970-01-01-first-title\",\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\"},\"__typename\":\"Ref\"},\"__typename\":\"UpdateRefPayload\"}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"statues\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"f6bdfa173958cec0ad21da5b9451be3eab6cbaf7\"},\"query\":\"query statues($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n status {\\n id\\n contexts {\\n id\\n context\\n state\\n target_url: targetUrl\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:46:26 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4924", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7AB9:244E7:118479F:155F8F4:5D77A931", + "content-length": "276", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDY6Q29tbWl0MjA3NTcwODkwOmY2YmRmYTE3Mzk1OGNlYzBhZDIxZGE1Yjk0NTFiZTNlYWI2Y2JhZjc=\",\"sha\":\"f6bdfa173958cec0ad21da5b9451be3eab6cbaf7\",\"__typename\":\"Commit\",\"status\":null}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"unpublishedPrBranches\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\"},\"query\":\"query unpublishedPrBranches($owner: String!, $name: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n refs(refPrefix: \\\"refs/heads/cms/\\\", last: 50) {\\n nodes {\\n id\\n associatedPullRequests(last: 50, states: OPEN) {\\n nodes {\\n id\\n headRef {\\n id\\n name\\n prefix\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:46:26 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4923", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7ABA:2B1F:1206A61:15FE9E1:5D77A932", + "content-length": "518", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"refs\":{\"nodes\":[{\"id\":\"MDM6UmVmMjA3NTcwODkwOjE5NzAtMDEtMDEtZmlyc3QtdGl0bGU=\",\"associatedPullRequests\":{\"nodes\":[{\"id\":\"MDExOlB1bGxSZXF1ZXN0MzE2MDAyODk4\",\"headRef\":{\"id\":\"MDM6UmVmMjA3NTcwODkwOmNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxl\",\"name\":\"cms/1970-01-01-first-title\",\"prefix\":\"refs/heads/\",\"__typename\":\"Ref\"},\"__typename\":\"PullRequest\"}],\"__typename\":\"PullRequestConnection\"},\"__typename\":\"Ref\"}],\"__typename\":\"RefConnection\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"unpublishedBranchFile\",\"variables\":{\"headOwner\":\"owner\",\"headRepoName\":\"repo\",\"headExpression\":\"cms/1970-01-01-first-title:content/posts/1970-01-01-first-title.md\",\"baseOwner\":\"owner\",\"baseRepoName\":\"repo\",\"baseExpression\":\"master:content/posts/1970-01-01-first-title.md\"},\"query\":\"query unpublishedBranchFile($headOwner: String!, $headRepoName: String!, $headExpression: String!, $baseOwner: String!, $baseRepoName: String!, $baseExpression: String!) {\\n head: repository(owner: $headOwner, name: $headRepoName) {\\n ...RepositoryParts\\n object(expression: $headExpression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n base: repository(owner: $baseOwner, name: $baseRepoName) {\\n ...RepositoryParts\\n object(expression: $baseExpression) {\\n ... on Blob {\\n id\\n oid\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:46:27 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4922", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7ABC:B4DE:11D2453:15B0DD2:5D77A933", + "content-length": "500", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"head\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzU3MDg5MDozZTU2NzZjODI4NWE0NTZhNjYwNDYwMzA0MmI1NDI4ODgzZjUwNDE3\",\"text\":\"---\\ntemplate: post\\ntitle: second title\\ndraft: true\\ndate: 1970-01-01T00:00:00.000Z\\ndescription: second description\\ncategory: second category\\ntags:\\n - tag2\\n---\\nsecond body\\n\",\"is_binary\":false,\"__typename\":\"Blob\"}},\"base\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"object\":null}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"statues\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"f6bdfa173958cec0ad21da5b9451be3eab6cbaf7\"},\"query\":\"query statues($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n status {\\n id\\n contexts {\\n id\\n context\\n state\\n target_url: targetUrl\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:46:32 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4921", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7AC7:3ED82:1852565:1D95CD9:5D77A937", + "content-length": "276", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDY6Q29tbWl0MjA3NTcwODkwOmY2YmRmYTE3Mzk1OGNlYzBhZDIxZGE1Yjk0NTFiZTNlYWI2Y2JhZjc=\",\"sha\":\"f6bdfa173958cec0ad21da5b9451be3eab6cbaf7\",\"__typename\":\"Commit\",\"status\":null}}}}\n", + "status": 200 + } +] \ No newline at end of file diff --git a/cypress/fixtures/Github Backend Editorial Workflow - GraphQL API__can update workflow status from within the editor.json b/cypress/fixtures/Github Backend Editorial Workflow - GraphQL API__can update workflow status from within the editor.json new file mode 100644 index 00000000..53a5faf6 --- /dev/null +++ b/cypress/fixtures/Github Backend Editorial Workflow - GraphQL API__can update workflow status from within the editor.json @@ -0,0 +1,1704 @@ +[ + { + "body": "{\"operationName\":null,\"variables\":{},\"query\":\"{\\n viewer {\\n id\\n avatar_url: avatarUrl\\n name\\n login\\n __typename\\n }\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:51:17 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4771", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7A55:2B0F:19D302:1FA144:5D77AA55", + "content-length": "179", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"viewer\":{\"id\":\"MDQ6VXNlcjI2NzYwNTcx\",\"avatar_url\":\"https://avatars1.githubusercontent.com/u/7892489?v=4\",\"name\":\"owner\",\"login\":\"owner\",\"__typename\":\"User\"}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"repoPermission\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\"},\"query\":\"query repoPermission($owner: String!, $name: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n viewerPermission\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:51:18 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4770", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7A56:244DF:1A4BE8:200445:5D77AA56", + "content-length": "119", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"viewerPermission\":\"ADMIN\"}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"files\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"master:content/posts\"},\"query\":\"query files($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...FileEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment FileEntryParts on TreeEntry {\\n name\\n sha: oid\\n type\\n blob: object {\\n ... on Blob {\\n size: byteSize\\n __typename\\n }\\n __typename\\n }\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:51:19 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4769", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7A59:9D21:172F92C:1C3ED5B:5D77AA56", + "content-length": "1218", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6VHJlZTIwNzU3MDg5MDozNDg5MjU3NWUyMTZjMDZlNzU3MDkzZjAzNmJkOGUwNTdjNzhhNTJm\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"__typename\":\"Tree\",\"entries\":[{\"name\":\"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\"sha\":\"6d51a38aed7139d2117724b1e307657b6ff2d043\",\"type\":\"blob\",\"blob\":{\"size\":1707,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\"sha\":\"d0582dd245a3f408fb3fe2333bf01400007476e9\",\"type\":\"blob\",\"blob\":{\"size\":2565,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2016-02-02---A-Brief-History-of-Typography.md\",\"sha\":\"0eea554365f002d0f1572af9a58522d335a794d5\",\"type\":\"blob\",\"blob\":{\"size\":2786,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2017-18-08---The-Birth-of-Movable-Type.md\",\"sha\":\"44f78c474d04273185a95821426f75affc9b0044\",\"type\":\"blob\",\"blob\":{\"size\":16071,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\"sha\":\"a532f0a9445cdf90a19c6812cff89d1674991774\",\"type\":\"blob\",\"blob\":{\"size\":7465,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"}]}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"files\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"master:static/media\"},\"query\":\"query files($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...FileEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment FileEntryParts on TreeEntry {\\n name\\n sha: oid\\n type\\n blob: object {\\n ... on Blob {\\n size: byteSize\\n __typename\\n }\\n __typename\\n }\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:51:19 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4768", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7A5A:1510F:12283DC:1608C72:5D77AA56", + "content-length": "1837", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6VHJlZTIwNzU3MDg5MDo5Yjc2OTliNTdlMTQzMDkxMGRiODI4MzFkY2Y2YjhhMWQxZGJkYWM5\",\"sha\":\"9b7699b57e1430910db82831dcf6b8a1d1dbdac9\",\"__typename\":\"Tree\",\"entries\":[{\"name\":\"42-line-bible.jpg\",\"sha\":\"41c8d12f9ca5864beb827c381fbeff935209d5fb\",\"type\":\"blob\",\"blob\":{\"size\":671242,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"gutenberg.jpg\",\"sha\":\"04315e355873ea5d358d9c371c39a6845c1ae4ae\",\"type\":\"blob\",\"blob\":{\"size\":155002,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-0.jpg\",\"sha\":\"b70a1b64fd4fa9635823231a0ba92c6dc9393f16\",\"type\":\"blob\",\"blob\":{\"size\":660287,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-1.jpg\",\"sha\":\"05eedae372b829c62501ac751b2d42dcc432541b\",\"type\":\"blob\",\"blob\":{\"size\":392411,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-2.jpg\",\"sha\":\"53845ed35faf8939bea242bb85eda7c324b1be0b\",\"type\":\"blob\",\"blob\":{\"size\":99147,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-3.jpg\",\"sha\":\"8b2339d97069e826fae1f156212e40ae458454e3\",\"type\":\"blob\",\"blob\":{\"size\":358022,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-4.jpg\",\"sha\":\"a8f6f21253a67a4284b5a953b2fe633d44152ecd\",\"type\":\"blob\",\"blob\":{\"size\":114837,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"movable-type.jpg\",\"sha\":\"57b4e925ea00bd8e195cf4418eb6eb2995ea5f10\",\"type\":\"blob\",\"blob\":{\"size\":559028,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"printing-press.jpg\",\"sha\":\"d27f56c9437d9becd2f56cc627c9322c2f1f61f6\",\"type\":\"blob\",\"blob\":{\"size\":279283,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"type-through-time.jpg\",\"sha\":\"3f08366a805c51a60ec5056010f22de4ba08abaa\",\"type\":\"blob\",\"blob\":{\"size\":117689,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"}]}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"d0582dd245a3f408fb3fe2333bf01400007476e9\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:51:19 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4766", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7A5F:9D1B:24EE6:2DCEC:5D77AA57", + "content-length": "2866", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzU3MDg5MDpkMDU4MmRkMjQ1YTNmNDA4ZmIzZmUyMzMzYmYwMTQwMDAwNzQ3NmU5\",\"text\":\"---\\ntitle: The Origins of Social Stationery Lettering\\ndate: \\\"2016-12-01T22:40:32.169Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Design Culture\\\"\\ndescription: \\\"Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante.\\\"\\ncanonical: ''\\n---\\n\\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \\n\\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\\n\\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-3.jpg)\\n\\n## Header Level 2\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \\n\\n
\\n\\t
\\n\\t\\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\\n\\t\\t
\\n\\t\\t\\t— Aliquam tincidunt mauris eu risus.\\n\\t\\t
\\n\\t
\\n
\\n\\n### Header Level 3\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\\n\\n```css\\n#header h1 a {\\n display: block;\\n width: 300px;\\n height: 80px;\\n}\\n```\\n\\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"6d51a38aed7139d2117724b1e307657b6ff2d043\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:51:19 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4767", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7A5C:1510D:46C54D:56C7AC:5D77AA57", + "content-length": "1973", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzU3MDg5MDo2ZDUxYTM4YWVkNzEzOWQyMTE3NzI0YjFlMzA3NjU3YjZmZjJkMDQz\",\"text\":\"---\\ntitle: Perfecting the Art of Perfection\\ndate: \\\"2016-09-01T23:46:37.121Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Design Inspiration\\\"\\ntags:\\n - \\\"Handwriting\\\"\\n - \\\"Learning to write\\\"\\ndescription: \\\"Quisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\\\"\\ncanonical: ''\\n---\\n\\nQuisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\\n\\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-2.jpg)\\n\\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. \\n\\nPraesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"0eea554365f002d0f1572af9a58522d335a794d5\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:51:20 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4765", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7A78:1510F:1228511:1608DE1:5D77AA57", + "content-length": "3102", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzU3MDg5MDowZWVhNTU0MzY1ZjAwMmQwZjE1NzJhZjlhNTg1MjJkMzM1YTc5NGQ1\",\"text\":\"---\\ntitle: \\\"A Brief History of Typography\\\"\\ndate: \\\"2016-02-02T22:40:32.169Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Design Inspiration\\\"\\ntags:\\n - \\\"Linotype\\\"\\n - \\\"Monotype\\\"\\n - \\\"History of typography\\\"\\n - \\\"Helvetica\\\"\\ndescription: \\\"Morbi in sem quis dui placerat ornare. Pellentesque odio nisi, euismod in, pharetra a, ultricies in, diam. Sed arcu. Cras consequat.\\\"\\ncanonical: ''\\n---\\n\\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \\n\\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\\n\\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-0.jpg)\\n\\n## Header Level 2\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \\n\\n
\\n\\t
\\n\\t\\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\\n\\t\\t
\\n\\t\\t\\t— Aliquam tincidunt mauris eu risus.\\n\\t\\t
\\n\\t
\\n
\\n\\n### Header Level 3\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\\n\\n```css\\n#header h1 a {\\n display: block;\\n width: 300px;\\n height: 80px;\\n}\\n```\\n\\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"a532f0a9445cdf90a19c6812cff89d1674991774\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:51:21 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4764", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7A7A:2B19:A8CF9C:CD77DB:5D77AA58", + "content-length": "7803", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzU3MDg5MDphNTMyZjBhOTQ0NWNkZjkwYTE5YzY4MTJjZmY4OWQxNjc0OTkxNzc0\",\"text\":\"---\\ntitle: Humane Typography in the Digital Age\\ndate: \\\"2017-08-19T22:40:32.169Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Typography\\\"\\ntags:\\n - \\\"Design\\\"\\n - \\\"Typography\\\"\\n - \\\"Web Development\\\"\\ndescription: \\\"An Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\\\"\\ncanonical: ''\\n---\\n\\n- [The first transition](#the-first-transition)\\n- [The digital age](#the-digital-age)\\n- [Loss of humanity through transitions](#loss-of-humanity-through-transitions)\\n- [Chasing perfection](#chasing-perfection)\\n\\nAn Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\\n\\nThe typography of this industrial age was no longer handcrafted. Mass production and profit became more important. Quantity mattered more than the quality. The books and printed works in general lost a part of its humanity. The typefaces were not produced by craftsmen anymore. It was the machines printing and tying the books together now. The craftsmen had to let go of their craft and became a cog in the process. An extension of the industrial machine.\\n\\nBut the victory of the industrialism didn’t mean that the craftsmen were completely extinct. The two worlds continued to coexist independently. Each recognising the good in the other — the power of industrialism and the humanity of craftsmanship. This was the second transition that would strip typography of a part of its humanity. We have to go 500 years back in time to meet the first one.\\n\\n## The first transition\\n\\nA similar conflict emerged after the invention of the first printing press in Europe. Johannes Gutenberg invented movable type and used it to produce different compositions. His workshop could print up to 240 impressions per hour. Until then, the books were being copied by hand. All the books were handwritten and decorated with hand drawn ornaments and figures. A process of copying a book was long but each book, even a copy, was a work of art.\\n\\nThe first printed books were, at first, perceived as inferior to the handwritten ones. They were smaller and cheaper to produce. Movable type provided the printers with flexibility that allowed them to print books in languages other than Latin. Gill describes the transition to industrialism as something that people needed and wanted. Something similar happened after the first printed books emerged. People wanted books in a language they understood and they wanted books they could take with them. They were hungry for knowledge and printed books satisfied this hunger.\\n\\n![42-line-bible.jpg](/media/42-line-bible.jpg)\\n\\n*The 42–Line Bible, printed by Gutenberg.*\\n\\nBut, through this transition, the book lost a large part of its humanity. The machine took over most of the process but craftsmanship was still a part of it. The typefaces were cut manually by the first punch cutters. The paper was made by hand. The illustrations and ornaments were still being hand drawn. These were the remains of the craftsmanship that went almost extinct in the times of Eric Gill.\\n\\n## The digital age\\n\\nThe first transition took away a large part of humanity from written communication. Industrialisation, the second transition described by Eric Gill, took away most of what was left. But it’s the third transition that stripped it naked. Typefaces are faceless these days. They’re just fonts on our computers. Hardly anyone knows their stories. Hardly anyone cares. Flicking through thousands of typefaces and finding the “right one” is a matter of minutes.\\n\\n> In the new computer age the proliferation of typefaces and type manipulations represents a new level of visual pollution threatening our culture. Out of thousands of typefaces, all we need are a few basic ones, and trash the rest.\\n>\\n— Massimo Vignelli\\n\\nTypography is not about typefaces. It’s not about what looks best, it’s about what feels right. What communicates the message best. Typography, in its essence, is about the message. “Typographical design should perform optically what the speaker creates through voice and gesture of his thoughts.”, as El Lissitzky, a famous Russian typographer, put it.\\n\\n## Loss of humanity through transitions\\n\\nEach transition took away a part of humanity from written language. Handwritten books being the most humane form and the digital typefaces being the least. Overuse of Helvetica is a good example. Messages are being told in a typeface just because it’s a safe option. It’s always there. Everyone knows it but yet, nobody knows it. Stop someone on the street and ask him what Helvetica is? Ask a designer the same question. Ask him where it came from, when, why and who designed it. Most of them will fail to answer these questions. Most of them used it in their precious projects but they still don’t spot it in the street.\\n\\n
\\n\\t
\\n\\t\\t

Knowledge of the quality of a typeface is of the greatest importance for the functional, aesthetic and psychological effect.

\\n\\t\\t
\\n\\t\\t\\t— Josef Mueller-Brockmann\\n\\t\\t
\\n\\t
\\n
\\n\\nTypefaces don’t look handmade these days. And that’s all right. They don’t have to. Industrialism took that away from them and we’re fine with it. We’ve traded that part of humanity for a process that produces more books that are easier to read. That can’t be bad. And it isn’t.\\n\\n> Humane typography will often be comparatively rough and even uncouth; but while a certain uncouthness does not seriously matter in humane works, uncouthness has no excuse whatever in the productions of the machine.\\n>\\n> — Eric Gill\\n\\nWe’ve come close to “perfection” in the last five centuries. The letters are crisp and without rough edges. We print our compositions with high–precision printers on a high quality, machine made paper.\\n\\n![type-through-time.jpg](/media/type-through-time.jpg)\\n\\n*Type through 5 centuries.*\\n\\nWe lost a part of ourselves because of this chase after perfection. We forgot about the craftsmanship along the way. And the worst part is that we don’t care. The transition to the digital age made that clear. We choose typefaces like clueless zombies. There’s no meaning in our work. Type sizes, leading, margins… It’s all just a few clicks or lines of code. The message isn’t important anymore. There’s no more “why” behind the “what”.\\n\\n## Chasing perfection\\n\\nHuman beings aren’t perfect. Perfection is something that will always elude us. There will always be a small part of humanity in everything we do. No matter how small that part, we should make sure that it transcends the limits of the medium. We have to think about the message first. What typeface should we use and why? Does the typeface match the message and what we want to communicate with it? What will be the leading and why? Will there be more typefaces in our design? On what ground will they be combined? What makes our design unique and why? This is the part of humanity that is left in typography. It might be the last part. Are we really going to give it up?\\n\\n*Originally published by [Matej Latin](http://matejlatin.co.uk/) on [Medium](https://medium.com/design-notes/humane-typography-in-the-digital-age-9bd5c16199bd?ref=webdesignernews.com#.lygo82z0x).*\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"44f78c474d04273185a95821426f75affc9b0044\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:51:22 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4763", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7A7C:2B1F:121DE11:161B7D6:5D77AA59", + "content-length": "16478", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzU3MDg5MDo0NGY3OGM0NzRkMDQyNzMxODVhOTU4MjE0MjZmNzVhZmZjOWIwMDQ0\",\"text\":\"---\\ntitle: \\\"Johannes Gutenberg: The Birth of Movable Type\\\"\\ndate: \\\"2017-08-18T22:12:03.284Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Typography\\\"\\ntags:\\n - \\\"Open source\\\"\\n - \\\"Gatsby\\\"\\n - \\\"Typography\\\"\\ndescription: \\\"German inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\\\"\\ncanonical: ''\\n---\\n\\nGerman inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\\n\\n**Johannes Gensfleisch zur Laden zum Gutenberg** (c. 1398 – 1468) was a German blacksmith, goldsmith, printer, and publisher who introduced printing to Europe. His invention of mechanical movable type printing started the Printing Revolution and is widely regarded as the most important event of the modern period. It played a key role in the development of the Renaissance, Reformation, the Age of Enlightenment, and the Scientific revolution and laid the material basis for the modern knowledge-based economy and the spread of learning to the masses.\\n\\n
\\n\\t\\\"Gutenberg\\\"\\n\\t
Johannes Gutenberg
\\n
\\n\\nWith his invention of the printing press, Gutenberg was the first European to use movable type printing, in around 1439. Among his many contributions to printing are: the invention of a process for mass-producing movable type; the use of oil-based ink; and the use of a wooden printing press similar to the agricultural screw presses of the period. His truly epochal invention was the combination of these elements into a practical system that allowed the mass production of printed books and was economically viable for printers and readers alike. Gutenberg's method for making type is traditionally considered to have included a type metal alloy and a hand mould for casting type. The alloy was a mixture of lead, tin, and antimony that melted at a relatively low temperature for faster and more economical casting, cast well, and created a durable type.\\n\\nIn Renaissance Europe, the arrival of mechanical movable type printing introduced the era of mass communication which permanently altered the structure of society. The relatively unrestricted circulation of information — including revolutionary ideas — transcended borders, captured the masses in the Reformation and threatened the power of political and religious authorities; the sharp increase in literacy broke the monopoly of the literate elite on education and learning and bolstered the emerging middle class. Across Europe, the increasing cultural self-awareness of its people led to the rise of proto-nationalism, accelerated by the flowering of the European vernacular languages to the detriment of Latin's status as lingua franca. In the 19th century, the replacement of the hand-operated Gutenberg-style press by steam-powered rotary presses allowed printing on an industrial scale, while Western-style printing was adopted all over the world, becoming practically the sole medium for modern bulk printing.\\n\\nThe use of movable type was a marked improvement on the handwritten manuscript, which was the existing method of book production in Europe, and upon woodblock printing, and revolutionized European book-making. Gutenberg's printing technology spread rapidly throughout Europe and later the world.\\n\\nHis major work, the Gutenberg Bible (also known as the 42-line Bible), has been acclaimed for its high aesthetic and technical quality.\\n\\n## Printing Press\\n\\nAround 1439, Gutenberg was involved in a financial misadventure making polished metal mirrors (which were believed to capture holy light from religious relics) for sale to pilgrims to Aachen: in 1439 the city was planning to exhibit its collection of relics from Emperor Charlemagne but the event was delayed by one year due to a severe flood and the capital already spent could not be repaid. When the question of satisfying the investors came up, Gutenberg is said to have promised to share a “secret”. It has been widely speculated that this secret may have been the idea of printing with movable type. Also around 1439–1440, the Dutch Laurens Janszoon Coster came up with the idea of printing. Legend has it that the idea came to him “like a ray of light”.\\n\\n
\\n\\t\\\"Early\\n\\t
Early wooden printing press as depicted in 1568.
\\n
\\n\\nUntil at least 1444 he lived in Strasbourg, most likely in the St. Arbogast parish. It was in Strasbourg in 1440 that Gutenberg is said to have perfected and unveiled the secret of printing based on his research, mysteriously entitled Kunst und Aventur (art and enterprise). It is not clear what work he was engaged in, or whether some early trials with printing from movable type may have been conducted there. After this, there is a gap of four years in the record. In 1448, he was back in Mainz, where he took out a loan from his brother-in-law Arnold Gelthus, quite possibly for a printing press or related paraphernalia. By this date, Gutenberg may have been familiar with intaglio printing; it is claimed that he had worked on copper engravings with an artist known as the Master of Playing Cards.\\n\\nBy 1450, the press was in operation, and a German poem had been printed, possibly the first item to be printed there. Gutenberg was able to convince the wealthy moneylender Johann Fust for a loan of 800 guilders. Peter Schöffer, who became Fust’s son-in-law, also joined the enterprise. Schöffer had worked as a scribe in Paris and is believed to have designed some of the first typefaces.\\n\\n
\\n\\t
\\n\\t\\t

All that has been written to me about that marvelous man seen at Frankfurt is true. I have not seen complete Bibles but only a number of quires of various books of the Bible. The script was very neat and legible, not at all difficult to follow—your grace would be able to read it without effort, and indeed without glasses.

\\n\\t\\t
\\n\\t\\t\\t—Future pope Pius II in a letter to Cardinal Carvajal, March 1455\\n\\t\\t
\\n\\t
\\n
\\n\\nGutenberg's workshop was set up at Hof Humbrecht, a property belonging to a distant relative. It is not clear when Gutenberg conceived the Bible project, but for this he borrowed another 800 guilders from Fust, and work commenced in 1452. At the same time, the press was also printing other, more lucrative texts (possibly Latin grammars). There is also some speculation that there may have been two presses, one for the pedestrian texts, and one for the Bible. One of the profit-making enterprises of the new press was the printing of thousands of indulgences for the church, documented from 1454–55.\\n\\nIn 1455 Gutenberg completed his 42-line Bible, known as the Gutenberg Bible. About 180 copies were printed, most on paper and some on vellum.\\n\\n## Court Case\\n\\nSome time in 1456, there was a dispute between Gutenberg and Fust, and Fust demanded his money back, accusing Gutenberg of misusing the funds. Meanwhile the expenses of the Bible project had proliferated, and Gutenberg's debt now exceeded 20,000 guilders. Fust sued at the archbishop's court. A November 1455 legal document records that there was a partnership for a \\\"project of the books,\\\" the funds for which Gutenberg had used for other purposes, according to Fust. The court decided in favor of Fust, giving him control over the Bible printing workshop and half of all printed Bibles.\\n\\nThus Gutenberg was effectively bankrupt, but it appears he retained (or re-started) a small printing shop, and participated in the printing of a Bible in the town of Bamberg around 1459, for which he seems at least to have supplied the type. But since his printed books never carry his name or a date, it is difficult to be certain, and there is consequently a considerable scholarly debate on this subject. It is also possible that the large Catholicon dictionary, 300 copies of 754 pages, printed in Mainz in 1460, may have been executed in his workshop.\\n\\nMeanwhile, the Fust–Schöffer shop was the first in Europe to bring out a book with the printer's name and date, the Mainz Psalter of August 1457, and while proudly proclaiming the mechanical process by which it had been produced, it made no mention of Gutenberg.\\n\\n## Later Life\\n\\nIn 1462, during a conflict between two archbishops, Mainz was sacked by archbishop Adolph von Nassau, and Gutenberg was exiled. An old man by now, he moved to Eltville where he may have initiated and supervised a new printing press belonging to the brothers Bechtermünze.\\n\\nIn January 1465, Gutenberg's achievements were recognized and he was given the title Hofmann (gentleman of the court) by von Nassau. This honor included a stipend, an annual court outfit, as well as 2,180 litres of grain and 2,000 litres of wine tax-free. It is believed he may have moved back to Mainz around this time, but this is not certain.\\n\\n***\\n\\nGutenberg died in 1468 and was buried in the Franciscan church at Mainz, his contributions largely unknown. This church and the cemetery were later destroyed, and Gutenberg's grave is now lost.\\n\\nIn 1504, he was mentioned as the inventor of typography in a book by Professor Ivo Wittig. It was not until 1567 that the first portrait of Gutenberg, almost certainly an imaginary reconstruction, appeared in Heinrich Pantaleon's biography of famous Germans.\\n\\n## Printing Method With Movable Type\\n\\nGutenberg's early printing process, and what tests he may have made with movable type, are not known in great detail. His later Bibles were printed in such a way as to have required large quantities of type, some estimates suggesting as many as 100,000 individual sorts. Setting each page would take, perhaps, half a day, and considering all the work in loading the press, inking the type, pulling the impressions, hanging up the sheets, distributing the type, etc., it is thought that the Gutenberg–Fust shop might have employed as many as 25 craftsmen.\\n\\n![Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5](/media/movable-type.jpg)\\n\\n*Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5*\\n\\nGutenberg's technique of making movable type remains unclear. In the following decades, punches and copper matrices became standardized in the rapidly disseminating printing presses across Europe. Whether Gutenberg used this sophisticated technique or a somewhat primitive version has been the subject of considerable debate.\\n\\nIn the standard process of making type, a hard metal punch (made by punchcutting, with the letter carved back to front) is hammered into a softer copper bar, creating a matrix. This is then placed into a hand-held mould and a piece of type, or \\\"sort\\\", is cast by filling the mould with molten type-metal; this cools almost at once, and the resulting piece of type can be removed from the mould. The matrix can be reused to create hundreds, or thousands, of identical sorts so that the same character appearing anywhere within the book will appear very uniform, giving rise, over time, to the development of distinct styles of typefaces or fonts. After casting, the sorts are arranged into type-cases, and used to make up pages which are inked and printed, a procedure which can be repeated hundreds, or thousands, of times. The sorts can be reused in any combination, earning the process the name of “movable type”.\\n\\nThe invention of the making of types with punch, matrix and mold has been widely attributed to Gutenberg. However, recent evidence suggests that Gutenberg's process was somewhat different. If he used the punch and matrix approach, all his letters should have been nearly identical, with some variations due to miscasting and inking. However, the type used in Gutenberg's earliest work shows other variations.\\n\\n
\\n\\t
\\n\\t\\t

It is a press, certainly, but a press from which shall flow in inexhaustible streams… Through it, god will spread his word.

\\n\\t\\t
\\n\\t\\t\\t—Johannes Gutenberg\\n\\t\\t
\\n\\t
\\n
\\n\\nIn 2001, the physicist Blaise Agüera y Arcas and Princeton librarian Paul Needham, used digital scans of a Papal bull in the Scheide Library, Princeton, to carefully compare the same letters (types) appearing in different parts of the printed text. The irregularities in Gutenberg's type, particularly in simple characters such as the hyphen, suggested that the variations could not have come from either ink smear or from wear and damage on the pieces of metal on the types themselves. While some identical types are clearly used on other pages, other variations, subjected to detailed image analysis, suggested that they could not have been produced from the same matrix. Transmitted light pictures of the page also appeared to reveal substructures in the type that could not arise from traditional punchcutting techniques. They hypothesized that the method may have involved impressing simple shapes to create alphabets in “cuneiform” style in a matrix made of some soft material, perhaps sand. Casting the type would destroy the mould, and the matrix would need to be recreated to make each additional sort. This could explain the variations in the type, as well as the substructures observed in the printed images.\\n\\nThus, they feel that “the decisive factor for the birth of typography”, the use of reusable moulds for casting type, might have been a more progressive process than was previously thought. They suggest that the additional step of using the punch to create a mould that could be reused many times was not taken until twenty years later, in the 1470s. Others have not accepted some or all of their suggestions, and have interpreted the evidence in other ways, and the truth of the matter remains very uncertain.\\n\\nA 1568 history by Hadrianus Junius of Holland claims that the basic idea of the movable type came to Gutenberg from Laurens Janszoon Coster via Fust, who was apprenticed to Coster in the 1430s and may have brought some of his equipment from Haarlem to Mainz. While Coster appears to have experimented with moulds and castable metal type, there is no evidence that he had actually printed anything with this technology. He was an inventor and a goldsmith. However, there is one indirect supporter of the claim that Coster might be the inventor. The author of the Cologne Chronicle of 1499 quotes Ulrich Zell, the first printer of Cologne, that printing was performed in Mainz in 1450, but that some type of printing of lower quality had previously occurred in the Netherlands. However, the chronicle does not mention the name of Coster, while it actually credits Gutenberg as the \\\"first inventor of printing\\\" in the very same passage (fol. 312). The first securely dated book by Dutch printers is from 1471, and the Coster connection is today regarded as a mere legend.\\n\\nThe 19th century printer and typefounder Fournier Le Jeune suggested that Gutenberg might not have been using type cast with a reusable matrix, but possibly wooden types that were carved individually. A similar suggestion was made by Nash in 2004. This remains possible, albeit entirely unproven.\\n\\nIt has also been questioned whether Gutenberg used movable types at all. In 2004, Italian professor Bruno Fabbiani claimed that examination of the 42-line Bible revealed an overlapping of letters, suggesting that Gutenberg did not in fact use movable type (individual cast characters) but rather used whole plates made from a system somewhat like a modern typewriter, whereby the letters were stamped successively into the plate and then printed. However, most specialists regard the occasional overlapping of type as caused by paper movement over pieces of type of slightly unequal height.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/1970-01-01-first-title.json?ts=300&ref=refs/meta/_netlify_cms", + "headers": { + "Date": "Tue, 10 Sep 2019 13:51:23 GMT", + "Content-Type": "application/vnd.github.VERSION.raw; charset=utf-8", + "Content-Length": "462", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4665", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"d08207b5f6f04533d32911a9a291f71b7f58deae\"", + "Last-Modified": "Tue, 10 Sep 2019 13:51:04 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A7E:9D20:1147BE1:15216AF:5D77AA5B", + "connection": "keep-alive" + }, + "response": "{\"type\":\"PR\",\"pr\":{\"number\":8,\"head\":\"3253a630f5a262a8d3e74df8bb8021177d36e7ea\"},\"user\":\"owner\",\"status\":\"draft\",\"branch\":\"cms/1970-01-01-first-title\",\"collection\":\"posts\",\"commitMessage\":\"Create Post “1970-01-01-first-title”\",\"title\":\"first title\",\"description\":\"first description\",\"objects\":{\"entry\":{\"path\":\"content/posts/1970-01-01-first-title.md\",\"sha\":\"a041245814892e3f73f63ca54333fda649b7fc0b\"},\"files\":[]},\"timeStamp\":\"1970-01-01T00:00:00.300Z\"}", + "status": 200 + }, + { + "body": "{\"operationName\":\"unpublishedBranchFile\",\"variables\":{\"headOwner\":\"owner\",\"headRepoName\":\"repo\",\"headExpression\":\"cms/1970-01-01-first-title:content/posts/1970-01-01-first-title.md\",\"baseOwner\":\"owner\",\"baseRepoName\":\"repo\",\"baseExpression\":\"master:content/posts/1970-01-01-first-title.md\"},\"query\":\"query unpublishedBranchFile($headOwner: String!, $headRepoName: String!, $headExpression: String!, $baseOwner: String!, $baseRepoName: String!, $baseExpression: String!) {\\n head: repository(owner: $headOwner, name: $headRepoName) {\\n ...RepositoryParts\\n object(expression: $headExpression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n base: repository(owner: $baseOwner, name: $baseRepoName) {\\n ...RepositoryParts\\n object(expression: $baseExpression) {\\n ... on Blob {\\n id\\n oid\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:51:24 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4762", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7A81:2B24:17BC0A3:1CDA053:5D77AA5B", + "content-length": "189", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"head\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"object\":null},\"base\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"object\":null}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"master:content/posts/1970-01-01-first-title.md\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:51:24 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4761", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7A82:1510E:ABD91D:D1631B:5D77AA5C", + "content-length": "106", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"object\":null}}}\n", + "status": 200 + }, + { + "body": "{\"content\":\"LS0tCnRlbXBsYXRlOiBwb3N0CnRpdGxlOiBmaXJzdCB0aXRsZQpkcmFmdDogdHJ1ZQpkYXRlOiAxOTcwLTAxLTAxVDAwOjAwOjAwLjAwMFoKZGVzY3JpcHRpb246IGZpcnN0IGRlc2NyaXB0aW9uCmNhdGVnb3J5OiBmaXJzdCBjYXRlZ29yeQp0YWdzOgogIC0gdGFnMQotLS0KZmlyc3QgYm9keQo=\",\"encoding\":\"base64\"}", + "method": "POST", + "url": "/repos/owner/repo/git/blobs?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:51:25 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "206", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4664", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"a5ec4a37015a9eeb405300b3095fb5c9\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A84:3ED7B:125A669:164A6F4:5D77AA5D", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"a041245814892e3f73f63ca54333fda649b7fc0b\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b\"\n}\n", + "status": 201 + }, + { + "body": "{\"operationName\":\"branch\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"qualifiedName\":\"refs/heads/master\"},\"query\":\"query branch($owner: String!, $name: String!, $qualifiedName: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n branch: ref(qualifiedName: $qualifiedName) {\\n ...BranchParts\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BranchParts on Ref {\\n commit: target {\\n ...ObjectParts\\n __typename\\n }\\n id\\n name\\n repository {\\n ...RepositoryParts\\n __typename\\n }\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:51:26 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4760", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7A86:9D21:1730379:1C3FA2A:5D77AA5D", + "content-length": "429", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"branch\":{\"commit\":{\"id\":\"MDY6Q29tbWl0MjA3NTcwODkwOjcyNjE3MmRlYWU5OWM4YTJjZWE0YzcxZTczNGEwMmE3OTNkNGQ5ZTU=\",\"sha\":\"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\"__typename\":\"Commit\"},\"id\":\"MDM6UmVmMjA3NTcwODkwOm1hc3Rlcg==\",\"name\":\"master\",\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\"},\"__typename\":\"Ref\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"commitTree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"726172deae99c8a2cea4c71e734a02a793d4d9e5\"},\"query\":\"query commitTree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n commit: object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n tree {\\n ...ObjectParts\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:51:26 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4759", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7A8A:15110:1875194:1DB68D8:5D77AA5E", + "content-length": "5040", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"commit\":{\"id\":\"MDY6Q29tbWl0MjA3NTcwODkwOjcyNjE3MmRlYWU5OWM4YTJjZWE0YzcxZTczNGEwMmE3OTNkNGQ5ZTU=\",\"sha\":\"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\"__typename\":\"Commit\",\"tree\":{\"id\":\"MDQ6VHJlZTIwNzU3MDg5MDpjNWI3ZjZkNjc0YmExOTNiYjdiNGE1ZmNmNDkzMzAzNGUxYjdmMmI3\",\"sha\":\"c5b7f6d674ba193bb7b4a5fcf4933034e1b7f2b7\",\"__typename\":\"Tree\",\"entries\":[{\"path\":\".circleci\",\"sha\":\"e5e9af3301cac61f120b8e4d40b1733c7a45685a\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\".eslintignore\",\"sha\":\"80b4531b026d19f8fa589efd122e76199d23f967\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".eslintrc.js\",\"sha\":\"370684994aaed5b858da3a006f48cfa57e88fd27\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".flowconfig\",\"sha\":\"14aa2ac4cc0e15223ad98630a6f1325fc81f8043\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".gitattributes\",\"sha\":\"10a369ddf4f603337cabc6f21646508323941ce1\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".github\",\"sha\":\"4ebeece548b52b20af59622354530a6d33b50b43\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\".gitignore\",\"sha\":\"c071ba35b0e49899bab6d610a68eef667dbbf157\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".prettierignore\",\"sha\":\"393f050e123d998cf8c8b362ff95cc8ac4d250e5\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".prettierrc\",\"sha\":\"e52ad05bb13b084d7949dd76e1b2517455162150\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".stylelintrc.json\",\"sha\":\"4b4c9698d10d756f5faa025659b86375428ed0a7\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\".vscode\",\"sha\":\"286e97ec0113ea8242b41ac222e2c3e8077e6f1e\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"CHANGELOG.md\",\"sha\":\"070a5d4f0eacd2dc0be81ae8996f8982de43046e\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"CODE_OF_CONDUCT.md\",\"sha\":\"92bc7565ff0ee145a0041b5179a820f14f39ab22\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"CONTRIBUTING.md\",\"sha\":\"8552aa241254a61258e1ff9666ab36f32fb1e3b9\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"LICENSE\",\"sha\":\"42d85938357b49977c126ca03b199129082d4fb8\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"README.md\",\"sha\":\"19df50a78654c8d757ca7f38447aa3d09c7abcce\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"backend\",\"sha\":\"b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"config.js\",\"sha\":\"58afd573bbb69fcca000efd0f5d90b93c93a98dd\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"content\",\"sha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"flow-typed\",\"sha\":\"86c32fd6c3118be5e0dbbb231a834447357236c6\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"flow\",\"sha\":\"0af45ad00d155c8d8c7407d913ff85278244c9ce\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"gatsby-browser.js\",\"sha\":\"9bd2c9dce175f04980e91cd9dc295a299e3cdb80\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"gatsby-config.js\",\"sha\":\"353a109dad62e3f25bf9f5e6a2167f21a6c8b459\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"gatsby-node.js\",\"sha\":\"14a207883c2093d2cc071bc5a464e165bcc1fead\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"gatsby\",\"sha\":\"4f23c06cd1740bf78304d2c0b29bf6bfdf427981\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"jest\",\"sha\":\"5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"netlify.toml\",\"sha\":\"599b99cc5700404fde316a7ede829776f23e7d45\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"package.json\",\"sha\":\"9d777616438b90a18f1a4ebfd5f114b4c06c6f17\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"postcss-config.js\",\"sha\":\"d216501e9b351a72e00ba0b7459a6500e27e7da2\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"renovate.json\",\"sha\":\"dcc309398785698b8870545c32051a3d72dd8271\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"serverless-scripts\",\"sha\":\"ee3701f2fbfc7196ba340f6481d1387d20527898\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"serverless-single-page-app-plugin\",\"sha\":\"08763fcfba643a06a452398517019bea4a5850ba\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"serverless.yml\",\"sha\":\"20b22c5fad229f35d029bf6614d333d82fe8a987\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"src\",\"sha\":\"8cdb35a88232c0f32f12f130c92c7cc55f97f471\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"static\",\"sha\":\"53c6380a600a030d3722bff7ecde36f749fb6964\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"utils\",\"sha\":\"a592549c9f74db40b51efefcda2fd76810405f27\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"yarn.lock\",\"sha\":\"475c9c1924ca752a0686303e2fdeb7b13ad75f57\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"}]}}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"tree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"726172deae99c8a2cea4c71e734a02a793d4d9e5\"},\"query\":\"query tree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n tree: object(oid: $sha) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:51:26 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4758", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7A89:9D21:1730465:1C3FB38:5D77AA5E", + "content-length": "260", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"tree\":{\"id\":\"MDY6Q29tbWl0MjA3NTcwODkwOjcyNjE3MmRlYWU5OWM4YTJjZWE0YzcxZTczNGEwMmE3OTNkNGQ5ZTU=\",\"sha\":\"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\"__typename\":\"Commit\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"commitTree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\"},\"query\":\"query commitTree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n commit: object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n tree {\\n ...ObjectParts\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:51:27 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4757", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7A8C:244E7:119AC6D:157B742:5D77AA5F", + "content-length": "256", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"commit\":{\"id\":\"MDQ6VHJlZTIwNzU3MDg5MDowMjk0ZWYxMDZjNTg3NDM5MDdhNWM4NTVkYTFlYjBmODdiMGI2ZGZj\",\"sha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\"__typename\":\"Tree\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"tree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\"},\"query\":\"query tree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n tree: object(oid: $sha) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:51:27 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4756", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7A8E:3ED82:1872552:1DBD239:5D77AA5F", + "content-length": "502", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"tree\":{\"id\":\"MDQ6VHJlZTIwNzU3MDg5MDowMjk0ZWYxMDZjNTg3NDM5MDdhNWM4NTVkYTFlYjBmODdiMGI2ZGZj\",\"sha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\"__typename\":\"Tree\",\"entries\":[{\"path\":\"pages\",\"sha\":\"1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"},{\"path\":\"posts\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"type\":\"tree\",\"mode\":16384,\"__typename\":\"TreeEntry\"}]}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"commitTree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\"},\"query\":\"query commitTree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n commit: object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n tree {\\n ...ObjectParts\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:51:28 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4755", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7A90:2B0F:19D4AE:1FA344:5D77AA5F", + "content-length": "256", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"commit\":{\"id\":\"MDQ6VHJlZTIwNzU3MDg5MDozNDg5MjU3NWUyMTZjMDZlNzU3MDkzZjAzNmJkOGUwNTdjNzhhNTJm\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"__typename\":\"Tree\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"tree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\"},\"query\":\"query tree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n tree: object(oid: $sha) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:51:28 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4754", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7A92:3ED77:AB261A:CF7165:5D77AA5F", + "content-length": "1075", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"tree\":{\"id\":\"MDQ6VHJlZTIwNzU3MDg5MDozNDg5MjU3NWUyMTZjMDZlNzU3MDkzZjAzNmJkOGUwNTdjNzhhNTJm\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"__typename\":\"Tree\",\"entries\":[{\"path\":\"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\"sha\":\"6d51a38aed7139d2117724b1e307657b6ff2d043\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\"sha\":\"d0582dd245a3f408fb3fe2333bf01400007476e9\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"2016-02-02---A-Brief-History-of-Typography.md\",\"sha\":\"0eea554365f002d0f1572af9a58522d335a794d5\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"2017-18-08---The-Birth-of-Movable-Type.md\",\"sha\":\"44f78c474d04273185a95821426f75affc9b0044\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\"sha\":\"a532f0a9445cdf90a19c6812cff89d1674991774\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"}]}}}}\n", + "status": 200 + }, + { + "body": "{\"base_tree\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"tree\":[{\"path\":\"1970-01-01-first-title.md\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"a041245814892e3f73f63ca54333fda649b7fc0b\"}]}", + "method": "POST", + "url": "/repos/owner/repo/git/trees?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:51:29 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "2355", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4663", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"04d8c1d18d9458006d19b6d3b470f959\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A94:2B15:4DE787:5E8B7B:5D77AA60", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a041245814892e3f73f63ca54333fda649b7fc0b\",\n \"size\": 167,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b\"\n },\n {\n \"path\": \"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"size\": 1707,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\"\n },\n {\n \"path\": \"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"size\": 2565,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\"\n },\n {\n \"path\": \"2016-02-02---A-Brief-History-of-Typography.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"0eea554365f002d0f1572af9a58522d335a794d5\",\n \"size\": 2786,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\"\n },\n {\n \"path\": \"2017-18-08---The-Birth-of-Movable-Type.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"44f78c474d04273185a95821426f75affc9b0044\",\n \"size\": 16071,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\"\n },\n {\n \"path\": \"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"size\": 7465,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"base_tree\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\"tree\":[{\"path\":\"posts\",\"mode\":\"040000\",\"type\":\"tree\",\"sha\":\"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\"parentSha\":\"34892575e216c06e757093f036bd8e057c78a52f\"}]}", + "method": "POST", + "url": "/repos/owner/repo/git/trees?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:51:30 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "828", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4662", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"44a8b3dc9f6d05e9ab92c5a4b2a88d1c\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A98:3ED82:18728EF:1DBD6B2:5D77AA61", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"tree\": [\n {\n \"path\": \"pages\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\"\n },\n {\n \"path\": \"posts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"base_tree\":\"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\"tree\":[{\"path\":\"content\",\"mode\":\"040000\",\"type\":\"tree\",\"sha\":\"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\"parentSha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\"}]}", + "method": "POST", + "url": "/repos/owner/repo/git/trees?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:51:30 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "11731", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4661", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"a4b7f86984e19e3dea0bb083fa1dce76\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/trees/daee8d5d15d144e8779955166a2afeccde2770e1", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A99:2B19:A8D6EF:CD80DC:5D77AA62", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"daee8d5d15d144e8779955166a2afeccde2770e1\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/daee8d5d15d144e8779955166a2afeccde2770e1\",\n \"tree\": [\n {\n \"path\": \".circleci\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"e5e9af3301cac61f120b8e4d40b1733c7a45685a\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/e5e9af3301cac61f120b8e4d40b1733c7a45685a\"\n },\n {\n \"path\": \".eslintignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"80b4531b026d19f8fa589efd122e76199d23f967\",\n \"size\": 39,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/80b4531b026d19f8fa589efd122e76199d23f967\"\n },\n {\n \"path\": \".eslintrc.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"370684994aaed5b858da3a006f48cfa57e88fd27\",\n \"size\": 414,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/370684994aaed5b858da3a006f48cfa57e88fd27\"\n },\n {\n \"path\": \".flowconfig\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14aa2ac4cc0e15223ad98630a6f1325fc81f8043\",\n \"size\": 283,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14aa2ac4cc0e15223ad98630a6f1325fc81f8043\"\n },\n {\n \"path\": \".gitattributes\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"10a369ddf4f603337cabc6f21646508323941ce1\",\n \"size\": 135,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/10a369ddf4f603337cabc6f21646508323941ce1\"\n },\n {\n \"path\": \".github\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4ebeece548b52b20af59622354530a6d33b50b43\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4ebeece548b52b20af59622354530a6d33b50b43\"\n },\n {\n \"path\": \".gitignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"c071ba35b0e49899bab6d610a68eef667dbbf157\",\n \"size\": 169,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/c071ba35b0e49899bab6d610a68eef667dbbf157\"\n },\n {\n \"path\": \".prettierignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"393f050e123d998cf8c8b362ff95cc8ac4d250e5\",\n \"size\": 45,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/393f050e123d998cf8c8b362ff95cc8ac4d250e5\"\n },\n {\n \"path\": \".prettierrc\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e52ad05bb13b084d7949dd76e1b2517455162150\",\n \"size\": 223,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/e52ad05bb13b084d7949dd76e1b2517455162150\"\n },\n {\n \"path\": \".stylelintrc.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"4b4c9698d10d756f5faa025659b86375428ed0a7\",\n \"size\": 718,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/4b4c9698d10d756f5faa025659b86375428ed0a7\"\n },\n {\n \"path\": \".vscode\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"286e97ec0113ea8242b41ac222e2c3e8077e6f1e\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/286e97ec0113ea8242b41ac222e2c3e8077e6f1e\"\n },\n {\n \"path\": \"CHANGELOG.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"070a5d4f0eacd2dc0be81ae8996f8982de43046e\",\n \"size\": 2113,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/070a5d4f0eacd2dc0be81ae8996f8982de43046e\"\n },\n {\n \"path\": \"CODE_OF_CONDUCT.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"92bc7565ff0ee145a0041b5179a820f14f39ab22\",\n \"size\": 3355,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/92bc7565ff0ee145a0041b5179a820f14f39ab22\"\n },\n {\n \"path\": \"CONTRIBUTING.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"8552aa241254a61258e1ff9666ab36f32fb1e3b9\",\n \"size\": 3548,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/8552aa241254a61258e1ff9666ab36f32fb1e3b9\"\n },\n {\n \"path\": \"LICENSE\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"42d85938357b49977c126ca03b199129082d4fb8\",\n \"size\": 1091,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/42d85938357b49977c126ca03b199129082d4fb8\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"19df50a78654c8d757ca7f38447aa3d09c7abcce\",\n \"size\": 3698,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/19df50a78654c8d757ca7f38447aa3d09c7abcce\"\n },\n {\n \"path\": \"backend\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\"\n },\n {\n \"path\": \"config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"58afd573bbb69fcca000efd0f5d90b93c93a98dd\",\n \"size\": 853,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/58afd573bbb69fcca000efd0f5d90b93c93a98dd\"\n },\n {\n \"path\": \"content\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639\"\n },\n {\n \"path\": \"flow-typed\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"86c32fd6c3118be5e0dbbb231a834447357236c6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/86c32fd6c3118be5e0dbbb231a834447357236c6\"\n },\n {\n \"path\": \"flow\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"0af45ad00d155c8d8c7407d913ff85278244c9ce\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/0af45ad00d155c8d8c7407d913ff85278244c9ce\"\n },\n {\n \"path\": \"gatsby-browser.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9bd2c9dce175f04980e91cd9dc295a299e3cdb80\",\n \"size\": 90,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9bd2c9dce175f04980e91cd9dc295a299e3cdb80\"\n },\n {\n \"path\": \"gatsby-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"353a109dad62e3f25bf9f5e6a2167f21a6c8b459\",\n \"size\": 7228,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/353a109dad62e3f25bf9f5e6a2167f21a6c8b459\"\n },\n {\n \"path\": \"gatsby-node.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14a207883c2093d2cc071bc5a464e165bcc1fead\",\n \"size\": 409,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14a207883c2093d2cc071bc5a464e165bcc1fead\"\n },\n {\n \"path\": \"gatsby\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4f23c06cd1740bf78304d2c0b29bf6bfdf427981\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4f23c06cd1740bf78304d2c0b29bf6bfdf427981\"\n },\n {\n \"path\": \"jest\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\"\n },\n {\n \"path\": \"netlify.toml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"599b99cc5700404fde316a7ede829776f23e7d45\",\n \"size\": 137,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/599b99cc5700404fde316a7ede829776f23e7d45\"\n },\n {\n \"path\": \"package.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9d777616438b90a18f1a4ebfd5f114b4c06c6f17\",\n \"size\": 6855,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9d777616438b90a18f1a4ebfd5f114b4c06c6f17\"\n },\n {\n \"path\": \"postcss-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d216501e9b351a72e00ba0b7459a6500e27e7da2\",\n \"size\": 703,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d216501e9b351a72e00ba0b7459a6500e27e7da2\"\n },\n {\n \"path\": \"renovate.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"dcc309398785698b8870545c32051a3d72dd8271\",\n \"size\": 460,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/dcc309398785698b8870545c32051a3d72dd8271\"\n },\n {\n \"path\": \"serverless-scripts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ee3701f2fbfc7196ba340f6481d1387d20527898\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ee3701f2fbfc7196ba340f6481d1387d20527898\"\n },\n {\n \"path\": \"serverless-single-page-app-plugin\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"08763fcfba643a06a452398517019bea4a5850ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/08763fcfba643a06a452398517019bea4a5850ba\"\n },\n {\n \"path\": \"serverless.yml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"20b22c5fad229f35d029bf6614d333d82fe8a987\",\n \"size\": 7803,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/20b22c5fad229f35d029bf6614d333d82fe8a987\"\n },\n {\n \"path\": \"src\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"8cdb35a88232c0f32f12f130c92c7cc55f97f471\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/8cdb35a88232c0f32f12f130c92c7cc55f97f471\"\n },\n {\n \"path\": \"static\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"53c6380a600a030d3722bff7ecde36f749fb6964\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/53c6380a600a030d3722bff7ecde36f749fb6964\"\n },\n {\n \"path\": \"utils\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"a592549c9f74db40b51efefcda2fd76810405f27\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/a592549c9f74db40b51efefcda2fd76810405f27\"\n },\n {\n \"path\": \"yarn.lock\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"475c9c1924ca752a0686303e2fdeb7b13ad75f57\",\n \"size\": 793903,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/475c9c1924ca752a0686303e2fdeb7b13ad75f57\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"message\":\"Create Post “1970-01-01-first-title”\",\"tree\":\"daee8d5d15d144e8779955166a2afeccde2770e1\",\"parents\":[\"726172deae99c8a2cea4c71e734a02a793d4d9e5\"]}", + "method": "POST", + "url": "/repos/owner/repo/git/commits?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:51:31 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "1499", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4660", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"ec59f25481f11b97d2fa5d482ddb56c8\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/commits/ce456dd7a5e95408664a7489f65fbbcb566d1be1", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A9A:15110:1875967:1DB7294:5D77AA63", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"ce456dd7a5e95408664a7489f65fbbcb566d1be1\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NTcwODkwOmNlNDU2ZGQ3YTVlOTU0MDg2NjRhNzQ4OWY2NWZiYmNiNTY2ZDFiZTE=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/ce456dd7a5e95408664a7489f65fbbcb566d1be1\",\n \"html_url\": \"https://github.com/owner/repo/commit/ce456dd7a5e95408664a7489f65fbbcb566d1be1\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T13:51:31Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T13:51:31Z\"\n },\n \"tree\": {\n \"sha\": \"daee8d5d15d144e8779955166a2afeccde2770e1\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/daee8d5d15d144e8779955166a2afeccde2770e1\"\n },\n \"message\": \"Create Post “1970-01-01-first-title”\",\n \"parents\": [\n {\n \"sha\": \"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"html_url\": \"https://github.com/owner/repo/commit/726172deae99c8a2cea4c71e734a02a793d4d9e5\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "status": 201 + }, + { + "body": "{\"operationName\":\"createBranchAndPullRequest\",\"variables\":{\"createRefInput\":{\"name\":\"refs/heads/cms/1970-01-01-first-title\",\"oid\":\"ce456dd7a5e95408664a7489f65fbbcb566d1be1\",\"repositoryId\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\"},\"createPullRequestInput\":{\"baseRefName\":\"master\",\"body\":\"Automatically generated by Netlify CMS\",\"title\":\"Create Post “1970-01-01-first-title”\",\"headRefName\":\"cms/1970-01-01-first-title\",\"repositoryId\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\"}},\"query\":\"mutation createBranchAndPullRequest($createRefInput: CreateRefInput!, $createPullRequestInput: CreatePullRequestInput!) {\\n createRef(input: $createRefInput) {\\n branch: ref {\\n ...BranchParts\\n __typename\\n }\\n __typename\\n }\\n createPullRequest(input: $createPullRequestInput) {\\n clientMutationId\\n pullRequest {\\n ...PullRequestParts\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment BranchParts on Ref {\\n commit: target {\\n ...ObjectParts\\n __typename\\n }\\n id\\n name\\n repository {\\n ...RepositoryParts\\n __typename\\n }\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment PullRequestParts on PullRequest {\\n id\\n baseRefName\\n body\\n headRefName\\n headRefOid\\n number\\n state\\n title\\n merged_at: mergedAt\\n repository {\\n ...RepositoryParts\\n __typename\\n }\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:51:33 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4753", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7A9C:244E4:AE94DF:D38A1C:5D77AA63", + "content-length": "952", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"createRef\":{\"branch\":{\"commit\":{\"id\":\"MDY6Q29tbWl0MjA3NTcwODkwOmNlNDU2ZGQ3YTVlOTU0MDg2NjRhNzQ4OWY2NWZiYmNiNTY2ZDFiZTE=\",\"sha\":\"ce456dd7a5e95408664a7489f65fbbcb566d1be1\",\"__typename\":\"Commit\"},\"id\":\"MDM6UmVmMjA3NTcwODkwOmNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxl\",\"name\":\"cms/1970-01-01-first-title\",\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\"},\"__typename\":\"Ref\"},\"__typename\":\"CreateRefPayload\"},\"createPullRequest\":{\"clientMutationId\":null,\"pullRequest\":{\"id\":\"MDExOlB1bGxSZXF1ZXN0MzE2MDA1NjY1\",\"baseRefName\":\"master\",\"body\":\"Automatically generated by Netlify CMS\",\"headRefName\":\"cms/1970-01-01-first-title\",\"headRefOid\":\"ce456dd7a5e95408664a7489f65fbbcb566d1be1\",\"number\":9,\"state\":\"OPEN\",\"title\":\"Create Post “1970-01-01-first-title”\",\"merged_at\":null,\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\"},\"__typename\":\"PullRequest\"},\"__typename\":\"CreatePullRequestPayload\"}}}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:51:34 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4659", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"1a07ea0b25439cc53d4dcc7f69cbda7e\"", + "Last-Modified": "Tue, 10 Sep 2019 13:50:39 GMT", + "X-Poll-Interval": "300", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A9E:2B15:4DE98B:5E8DEB:5D77AA65", + "content-length": "482", + "connection": "keep-alive" + }, + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NTcwODkwOnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"a1790e9cb2f4a8416cd69f1fde7a2504fc00baf3\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/a1790e9cb2f4a8416cd69f1fde7a2504fc00baf3\"\n }\n}\n", + "status": 200 + }, + { + "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjksImhlYWQiOiJjZTQ1NmRkN2E1ZTk1NDA4NjY0YTc0ODlmNjVmYmJjYjU2NmQxYmUxIn0sInVzZXIiOiJvd25lciIsInN0YXR1cyI6ImRyYWZ0IiwiYnJhbmNoIjoiY21zLzE5NzAtMDEtMDEtZmlyc3QtdGl0bGUiLCJjb2xsZWN0aW9uIjoicG9zdHMiLCJjb21taXRNZXNzYWdlIjoiQ3JlYXRlIFBvc3Qg4oCcMTk3MC0wMS0wMS1maXJzdC10aXRsZeKAnSIsInRpdGxlIjoiZmlyc3QgdGl0bGUiLCJkZXNjcmlwdGlvbiI6ImZpcnN0IGRlc2NyaXB0aW9uIiwib2JqZWN0cyI6eyJlbnRyeSI6eyJwYXRoIjoiY29udGVudC9wb3N0cy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxlLm1kIiwic2hhIjoiYTA0MTI0NTgxNDg5MmUzZjczZjYzY2E1NDMzM2ZkYTY0OWI3ZmMwYiJ9LCJmaWxlcyI6W119LCJ0aW1lU3RhbXAiOiIxOTcwLTAxLTAxVDAwOjAwOjAwLjMwMFoifQ==\",\"encoding\":\"base64\"}", + "method": "POST", + "url": "/repos/owner/repo/git/blobs?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:51:35 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "206", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4658", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"cff466ddbffb0e684eded7aaf882abc5\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/blobs/ef56ca26f63c65bf2edd4846f7f84443f7a6dc9c", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7AA0:B4DE:11EA08A:15CE77E:5D77AA66", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"ef56ca26f63c65bf2edd4846f7f84443f7a6dc9c\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/ef56ca26f63c65bf2edd4846f7f84443f7a6dc9c\"\n}\n", + "status": 201 + }, + { + "body": "{\"operationName\":\"commitTree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"a1790e9cb2f4a8416cd69f1fde7a2504fc00baf3\"},\"query\":\"query commitTree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n commit: object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n tree {\\n ...ObjectParts\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:51:35 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4752", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7AA7:B4E0:16AC252:1B981EB:5D77AA67", + "content-length": "979", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"commit\":{\"id\":\"MDY6Q29tbWl0MjA3NTcwODkwOmExNzkwZTljYjJmNGE4NDE2Y2Q2OWYxZmRlN2EyNTA0ZmMwMGJhZjM=\",\"sha\":\"a1790e9cb2f4a8416cd69f1fde7a2504fc00baf3\",\"__typename\":\"Commit\",\"tree\":{\"id\":\"MDQ6VHJlZTIwNzU3MDg5MDpkZWVkNjA5MzY2OTE5NjllYjk5NDlkZThjMGViNWUwNDBkN2ZiZWEx\",\"sha\":\"deed60936691969eb9949de8c0eb5e040d7fbea1\",\"__typename\":\"Tree\",\"entries\":[{\"path\":\"1970-01-01-first-title.json\",\"sha\":\"d08207b5f6f04533d32911a9a291f71b7f58deae\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"1970-01-01-second-title.json\",\"sha\":\"2c4876a5ca0015882b38a97c0b6afc7572afe5fe\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"1970-01-01-third-title.json\",\"sha\":\"20cfb011c8b3ec9936eb58c0fb1e2ffe54d52986\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"README.md\",\"sha\":\"98787d1bd948850444433e91a43091a76c4eb455\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"}]}}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"tree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"a1790e9cb2f4a8416cd69f1fde7a2504fc00baf3\"},\"query\":\"query tree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n tree: object(oid: $sha) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:51:35 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4751", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7AA8:244E4:AE9716:D38CF1:5D77AA67", + "content-length": "260", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"tree\":{\"id\":\"MDY6Q29tbWl0MjA3NTcwODkwOmExNzkwZTljYjJmNGE4NDE2Y2Q2OWYxZmRlN2EyNTA0ZmMwMGJhZjM=\",\"sha\":\"a1790e9cb2f4a8416cd69f1fde7a2504fc00baf3\",\"__typename\":\"Commit\"}}}}\n", + "status": 200 + }, + { + "body": "{\"base_tree\":\"a1790e9cb2f4a8416cd69f1fde7a2504fc00baf3\",\"tree\":[{\"path\":\"1970-01-01-first-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"ef56ca26f63c65bf2edd4846f7f84443f7a6dc9c\"}]}", + "method": "POST", + "url": "/repos/owner/repo/git/trees?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:51:36 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "1559", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4657", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"1f93711b29865755698db6a6f9c01cb1\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/trees/828f79f6f0a74d61b4f6fd3904d96927f7955bbc", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7AAE:B4E0:16AC3F3:1B983DB:5D77AA68", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"828f79f6f0a74d61b4f6fd3904d96927f7955bbc\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/828f79f6f0a74d61b4f6fd3904d96927f7955bbc\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"ef56ca26f63c65bf2edd4846f7f84443f7a6dc9c\",\n \"size\": 462,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/ef56ca26f63c65bf2edd4846f7f84443f7a6dc9c\"\n },\n {\n \"path\": \"1970-01-01-second-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"2c4876a5ca0015882b38a97c0b6afc7572afe5fe\",\n \"size\": 477,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/2c4876a5ca0015882b38a97c0b6afc7572afe5fe\"\n },\n {\n \"path\": \"1970-01-01-third-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"20cfb011c8b3ec9936eb58c0fb1e2ffe54d52986\",\n \"size\": 472,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/20cfb011c8b3ec9936eb58c0fb1e2ffe54d52986\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"message\":\"Updating “1970-01-01-first-title” metadata\",\"tree\":\"828f79f6f0a74d61b4f6fd3904d96927f7955bbc\",\"parents\":[\"a1790e9cb2f4a8416cd69f1fde7a2504fc00baf3\"]}", + "method": "POST", + "url": "/repos/owner/repo/git/commits?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:51:37 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "1505", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4656", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"3fd502f3d3a84f467a6ec026752202dd\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/commits/49d9dc4b15b0d9ce97c12d5f60d468785363d740", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7AB0:B4DE:11EA395:15CEB47:5D77AA68", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"49d9dc4b15b0d9ce97c12d5f60d468785363d740\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NTcwODkwOjQ5ZDlkYzRiMTViMGQ5Y2U5N2MxMmQ1ZjYwZDQ2ODc4NTM2M2Q3NDA=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/49d9dc4b15b0d9ce97c12d5f60d468785363d740\",\n \"html_url\": \"https://github.com/owner/repo/commit/49d9dc4b15b0d9ce97c12d5f60d468785363d740\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T13:51:37Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T13:51:37Z\"\n },\n \"tree\": {\n \"sha\": \"828f79f6f0a74d61b4f6fd3904d96927f7955bbc\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/828f79f6f0a74d61b4f6fd3904d96927f7955bbc\"\n },\n \"message\": \"Updating “1970-01-01-first-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"a1790e9cb2f4a8416cd69f1fde7a2504fc00baf3\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/a1790e9cb2f4a8416cd69f1fde7a2504fc00baf3\",\n \"html_url\": \"https://github.com/owner/repo/commit/a1790e9cb2f4a8416cd69f1fde7a2504fc00baf3\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "status": 201 + }, + { + "body": "{\"sha\":\"49d9dc4b15b0d9ce97c12d5f60d468785363d740\",\"force\":false}", + "method": "PATCH", + "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:51:38 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4655", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"1b371f2f7cb19fafc446eaa555e91618\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7AB2:2B1F:121EEEF:161CD1D:5D77AA69", + "content-length": "482", + "connection": "keep-alive" + }, + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NTcwODkwOnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"49d9dc4b15b0d9ce97c12d5f60d468785363d740\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/49d9dc4b15b0d9ce97c12d5f60d468785363d740\"\n }\n}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"unpublishedBranchFile\",\"variables\":{\"headOwner\":\"owner\",\"headRepoName\":\"repo\",\"headExpression\":\"cms/1970-01-01-first-title:content/posts/1970-01-01-first-title.md\",\"baseOwner\":\"owner\",\"baseRepoName\":\"repo\",\"baseExpression\":\"master:content/posts/1970-01-01-first-title.md\"},\"query\":\"query unpublishedBranchFile($headOwner: String!, $headRepoName: String!, $headExpression: String!, $baseOwner: String!, $baseRepoName: String!, $baseExpression: String!) {\\n head: repository(owner: $headOwner, name: $headRepoName) {\\n ...RepositoryParts\\n object(expression: $headExpression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n base: repository(owner: $baseOwner, name: $baseRepoName) {\\n ...RepositoryParts\\n object(expression: $baseExpression) {\\n ... on Blob {\\n id\\n oid\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:51:40 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4750", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7AB4:2B0F:19D6EE:1FA60C:5D77AA6B", + "content-length": "496", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"head\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzU3MDg5MDphMDQxMjQ1ODE0ODkyZTNmNzNmNjNjYTU0MzMzZmRhNjQ5YjdmYzBi\",\"text\":\"---\\ntemplate: post\\ntitle: first title\\ndraft: true\\ndate: 1970-01-01T00:00:00.000Z\\ndescription: first description\\ncategory: first category\\ntags:\\n - tag1\\n---\\nfirst body\\n\",\"is_binary\":false,\"__typename\":\"Blob\"}},\"base\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"object\":null}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"statues\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"ce456dd7a5e95408664a7489f65fbbcb566d1be1\"},\"query\":\"query statues($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n status {\\n id\\n contexts {\\n id\\n context\\n state\\n target_url: targetUrl\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:51:40 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4749", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7AB7:9D21:1731990:1C415E0:5D77AA6C", + "content-length": "276", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDY6Q29tbWl0MjA3NTcwODkwOmNlNDU2ZGQ3YTVlOTU0MDg2NjRhNzQ4OWY2NWZiYmNiNTY2ZDFiZTE=\",\"sha\":\"ce456dd7a5e95408664a7489f65fbbcb566d1be1\",\"__typename\":\"Commit\",\"status\":null}}}}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:51:41 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4654", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"1b371f2f7cb19fafc446eaa555e91618\"", + "Last-Modified": "Tue, 10 Sep 2019 13:50:39 GMT", + "X-Poll-Interval": "300", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7AB8:B4E0:16ACBE3:1B98DD1:5D77AA6D", + "content-length": "482", + "connection": "keep-alive" + }, + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NTcwODkwOnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"49d9dc4b15b0d9ce97c12d5f60d468785363d740\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/49d9dc4b15b0d9ce97c12d5f60d468785363d740\"\n }\n}\n", + "status": 200 + }, + { + "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjksImhlYWQiOiJjZTQ1NmRkN2E1ZTk1NDA4NjY0YTc0ODlmNjVmYmJjYjU2NmQxYmUxIn0sInVzZXIiOiJvd25lciIsInN0YXR1cyI6InBlbmRpbmdfcmV2aWV3IiwiYnJhbmNoIjoiY21zLzE5NzAtMDEtMDEtZmlyc3QtdGl0bGUiLCJjb2xsZWN0aW9uIjoicG9zdHMiLCJjb21taXRNZXNzYWdlIjoiQ3JlYXRlIFBvc3Qg4oCcMTk3MC0wMS0wMS1maXJzdC10aXRsZeKAnSIsInRpdGxlIjoiZmlyc3QgdGl0bGUiLCJkZXNjcmlwdGlvbiI6ImZpcnN0IGRlc2NyaXB0aW9uIiwib2JqZWN0cyI6eyJlbnRyeSI6eyJwYXRoIjoiY29udGVudC9wb3N0cy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxlLm1kIiwic2hhIjoiYTA0MTI0NTgxNDg5MmUzZjczZjYzY2E1NDMzM2ZkYTY0OWI3ZmMwYiJ9LCJmaWxlcyI6W119LCJ0aW1lU3RhbXAiOiIxOTcwLTAxLTAxVDAwOjAwOjAwLjMwMFoifQ==\",\"encoding\":\"base64\"}", + "method": "POST", + "url": "/repos/owner/repo/git/blobs?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:51:43 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "206", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4653", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"89043d7fe47e79f9acad4757ca0053af\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/blobs/4c344e402b3df520c3b1748da3959bd2eb050d65", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7ABA:2B24:17BDE8D:1CDC51D:5D77AA6E", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"4c344e402b3df520c3b1748da3959bd2eb050d65\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/4c344e402b3df520c3b1748da3959bd2eb050d65\"\n}\n", + "status": 201 + }, + { + "body": "{\"operationName\":\"commitTree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"49d9dc4b15b0d9ce97c12d5f60d468785363d740\"},\"query\":\"query commitTree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n commit: object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n tree {\\n ...ObjectParts\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:51:43 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4748", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7ABC:B4E0:16ACE5F:1B990DF:5D77AA6F", + "content-length": "979", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"commit\":{\"id\":\"MDY6Q29tbWl0MjA3NTcwODkwOjQ5ZDlkYzRiMTViMGQ5Y2U5N2MxMmQ1ZjYwZDQ2ODc4NTM2M2Q3NDA=\",\"sha\":\"49d9dc4b15b0d9ce97c12d5f60d468785363d740\",\"__typename\":\"Commit\",\"tree\":{\"id\":\"MDQ6VHJlZTIwNzU3MDg5MDo4MjhmNzlmNmYwYTc0ZDYxYjRmNmZkMzkwNGQ5NjkyN2Y3OTU1YmJj\",\"sha\":\"828f79f6f0a74d61b4f6fd3904d96927f7955bbc\",\"__typename\":\"Tree\",\"entries\":[{\"path\":\"1970-01-01-first-title.json\",\"sha\":\"ef56ca26f63c65bf2edd4846f7f84443f7a6dc9c\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"1970-01-01-second-title.json\",\"sha\":\"2c4876a5ca0015882b38a97c0b6afc7572afe5fe\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"1970-01-01-third-title.json\",\"sha\":\"20cfb011c8b3ec9936eb58c0fb1e2ffe54d52986\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"README.md\",\"sha\":\"98787d1bd948850444433e91a43091a76c4eb455\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"}]}}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"tree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"49d9dc4b15b0d9ce97c12d5f60d468785363d740\"},\"query\":\"query tree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n tree: object(oid: $sha) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:51:43 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4747", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7ABE:2B1F:121F4AC:161D483:5D77AA6F", + "content-length": "260", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"tree\":{\"id\":\"MDY6Q29tbWl0MjA3NTcwODkwOjQ5ZDlkYzRiMTViMGQ5Y2U5N2MxMmQ1ZjYwZDQ2ODc4NTM2M2Q3NDA=\",\"sha\":\"49d9dc4b15b0d9ce97c12d5f60d468785363d740\",\"__typename\":\"Commit\"}}}}\n", + "status": 200 + }, + { + "body": "{\"base_tree\":\"49d9dc4b15b0d9ce97c12d5f60d468785363d740\",\"tree\":[{\"path\":\"1970-01-01-first-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"4c344e402b3df520c3b1748da3959bd2eb050d65\"}]}", + "method": "POST", + "url": "/repos/owner/repo/git/trees?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:51:44 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "1559", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4652", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"0d5c66fc68c76c9faaaba94b59075d72\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/trees/9bb450801547081fde6ec614206e65ef818e1731", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7AC1:3ED82:1874107:1DBF477:5D77AA6F", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"9bb450801547081fde6ec614206e65ef818e1731\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/9bb450801547081fde6ec614206e65ef818e1731\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"4c344e402b3df520c3b1748da3959bd2eb050d65\",\n \"size\": 471,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/4c344e402b3df520c3b1748da3959bd2eb050d65\"\n },\n {\n \"path\": \"1970-01-01-second-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"2c4876a5ca0015882b38a97c0b6afc7572afe5fe\",\n \"size\": 477,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/2c4876a5ca0015882b38a97c0b6afc7572afe5fe\"\n },\n {\n \"path\": \"1970-01-01-third-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"20cfb011c8b3ec9936eb58c0fb1e2ffe54d52986\",\n \"size\": 472,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/20cfb011c8b3ec9936eb58c0fb1e2ffe54d52986\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"message\":\"Updating “1970-01-01-first-title” metadata\",\"tree\":\"9bb450801547081fde6ec614206e65ef818e1731\",\"parents\":[\"49d9dc4b15b0d9ce97c12d5f60d468785363d740\"]}", + "method": "POST", + "url": "/repos/owner/repo/git/commits?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:51:45 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "1505", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4651", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"a5b5ccbd5e8b1d95196cfce0694a0e06\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/commits/e0c87517bf67cd737cf499ddccfc4a41bafa5849", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7AC4:2B24:17BE269:1CDC9F1:5D77AA70", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"e0c87517bf67cd737cf499ddccfc4a41bafa5849\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NTcwODkwOmUwYzg3NTE3YmY2N2NkNzM3Y2Y0OTlkZGNjZmM0YTQxYmFmYTU4NDk=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/e0c87517bf67cd737cf499ddccfc4a41bafa5849\",\n \"html_url\": \"https://github.com/owner/repo/commit/e0c87517bf67cd737cf499ddccfc4a41bafa5849\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T13:51:44Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T13:51:44Z\"\n },\n \"tree\": {\n \"sha\": \"9bb450801547081fde6ec614206e65ef818e1731\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/9bb450801547081fde6ec614206e65ef818e1731\"\n },\n \"message\": \"Updating “1970-01-01-first-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"49d9dc4b15b0d9ce97c12d5f60d468785363d740\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/49d9dc4b15b0d9ce97c12d5f60d468785363d740\",\n \"html_url\": \"https://github.com/owner/repo/commit/49d9dc4b15b0d9ce97c12d5f60d468785363d740\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "status": 201 + }, + { + "body": "{\"operationName\":\"statues\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"ce456dd7a5e95408664a7489f65fbbcb566d1be1\"},\"query\":\"query statues($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n status {\\n id\\n contexts {\\n id\\n context\\n state\\n target_url: targetUrl\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:51:46 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4746", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7AC9:B4DC:AB675C:D07C59:5D77AA72", + "content-length": "276", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDY6Q29tbWl0MjA3NTcwODkwOmNlNDU2ZGQ3YTVlOTU0MDg2NjRhNzQ4OWY2NWZiYmNiNTY2ZDFiZTE=\",\"sha\":\"ce456dd7a5e95408664a7489f65fbbcb566d1be1\",\"__typename\":\"Commit\",\"status\":null}}}}\n", + "status": 200 + }, + { + "body": "{\"sha\":\"e0c87517bf67cd737cf499ddccfc4a41bafa5849\",\"force\":false}", + "method": "PATCH", + "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:51:46 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4650", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"d96a8164ee204462a5d8887bd869b100\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7AC7:3ED7B:125BDFA:164C4B7:5D77AA71", + "content-length": "482", + "connection": "keep-alive" + }, + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NTcwODkwOnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"e0c87517bf67cd737cf499ddccfc4a41bafa5849\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/e0c87517bf67cd737cf499ddccfc4a41bafa5849\"\n }\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:51:49 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4649", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"d96a8164ee204462a5d8887bd869b100\"", + "Last-Modified": "Tue, 10 Sep 2019 13:50:39 GMT", + "X-Poll-Interval": "300", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7ACB:244EB:1800DD1:1D27575:5D77AA74", + "content-length": "482", + "connection": "keep-alive" + }, + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NTcwODkwOnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"e0c87517bf67cd737cf499ddccfc4a41bafa5849\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/e0c87517bf67cd737cf499ddccfc4a41bafa5849\"\n }\n}\n", + "status": 200 + }, + { + "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjksImhlYWQiOiJjZTQ1NmRkN2E1ZTk1NDA4NjY0YTc0ODlmNjVmYmJjYjU2NmQxYmUxIn0sInVzZXIiOiJvd25lciIsInN0YXR1cyI6InBlbmRpbmdfcHVibGlzaCIsImJyYW5jaCI6ImNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxlIiwiY29sbGVjdGlvbiI6InBvc3RzIiwiY29tbWl0TWVzc2FnZSI6IkNyZWF0ZSBQb3N0IOKAnDE5NzAtMDEtMDEtZmlyc3QtdGl0bGXigJ0iLCJ0aXRsZSI6ImZpcnN0IHRpdGxlIiwiZGVzY3JpcHRpb24iOiJmaXJzdCBkZXNjcmlwdGlvbiIsIm9iamVjdHMiOnsiZW50cnkiOnsicGF0aCI6ImNvbnRlbnQvcG9zdHMvMTk3MC0wMS0wMS1maXJzdC10aXRsZS5tZCIsInNoYSI6ImEwNDEyNDU4MTQ4OTJlM2Y3M2Y2M2NhNTQzMzNmZGE2NDliN2ZjMGIifSwiZmlsZXMiOltdfSwidGltZVN0YW1wIjoiMTk3MC0wMS0wMVQwMDowMDowMC4zMDBaIn0=\",\"encoding\":\"base64\"}", + "method": "POST", + "url": "/repos/owner/repo/git/blobs?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:51:49 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "206", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4648", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"ad308d5f8053cc1ee56785497849ff5f\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/blobs/05ccff604258e4d14de1ca4c4cf776071941b053", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7ACC:B4DA:524C97:64643D:5D77AA75", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"05ccff604258e4d14de1ca4c4cf776071941b053\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/05ccff604258e4d14de1ca4c4cf776071941b053\"\n}\n", + "status": 201 + }, + { + "body": "{\"operationName\":\"commitTree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"e0c87517bf67cd737cf499ddccfc4a41bafa5849\"},\"query\":\"query commitTree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n commit: object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n tree {\\n ...ObjectParts\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:51:50 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4745", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7ACE:244E4:AEA2AC:D39B70:5D77AA76", + "content-length": "979", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"commit\":{\"id\":\"MDY6Q29tbWl0MjA3NTcwODkwOmUwYzg3NTE3YmY2N2NkNzM3Y2Y0OTlkZGNjZmM0YTQxYmFmYTU4NDk=\",\"sha\":\"e0c87517bf67cd737cf499ddccfc4a41bafa5849\",\"__typename\":\"Commit\",\"tree\":{\"id\":\"MDQ6VHJlZTIwNzU3MDg5MDo5YmI0NTA4MDE1NDcwODFmZGU2ZWM2MTQyMDZlNjVlZjgxOGUxNzMx\",\"sha\":\"9bb450801547081fde6ec614206e65ef818e1731\",\"__typename\":\"Tree\",\"entries\":[{\"path\":\"1970-01-01-first-title.json\",\"sha\":\"4c344e402b3df520c3b1748da3959bd2eb050d65\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"1970-01-01-second-title.json\",\"sha\":\"2c4876a5ca0015882b38a97c0b6afc7572afe5fe\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"1970-01-01-third-title.json\",\"sha\":\"20cfb011c8b3ec9936eb58c0fb1e2ffe54d52986\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"},{\"path\":\"README.md\",\"sha\":\"98787d1bd948850444433e91a43091a76c4eb455\",\"type\":\"blob\",\"mode\":33188,\"__typename\":\"TreeEntry\"}]}}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"tree\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"e0c87517bf67cd737cf499ddccfc4a41bafa5849\"},\"query\":\"query tree($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n tree: object(oid: $sha) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...TreeEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment TreeEntryParts on TreeEntry {\\n path: name\\n sha: oid\\n type\\n mode\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:51:50 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4744", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7AD0:9D20:1149D2B:1524017:5D77AA76", + "content-length": "260", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"tree\":{\"id\":\"MDY6Q29tbWl0MjA3NTcwODkwOmUwYzg3NTE3YmY2N2NkNzM3Y2Y0OTlkZGNjZmM0YTQxYmFmYTU4NDk=\",\"sha\":\"e0c87517bf67cd737cf499ddccfc4a41bafa5849\",\"__typename\":\"Commit\"}}}}\n", + "status": 200 + }, + { + "body": "{\"base_tree\":\"e0c87517bf67cd737cf499ddccfc4a41bafa5849\",\"tree\":[{\"path\":\"1970-01-01-first-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"05ccff604258e4d14de1ca4c4cf776071941b053\"}]}", + "method": "POST", + "url": "/repos/owner/repo/git/trees?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:51:51 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "1559", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4647", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"236382da1b5efc5176a4356d27de3b4e\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/trees/9db3a2109ec3788b44f7be1f63ee69c8ab78f0a5", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7AD2:244E7:119C796:157D995:5D77AA76", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"9db3a2109ec3788b44f7be1f63ee69c8ab78f0a5\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/9db3a2109ec3788b44f7be1f63ee69c8ab78f0a5\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"05ccff604258e4d14de1ca4c4cf776071941b053\",\n \"size\": 472,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/05ccff604258e4d14de1ca4c4cf776071941b053\"\n },\n {\n \"path\": \"1970-01-01-second-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"2c4876a5ca0015882b38a97c0b6afc7572afe5fe\",\n \"size\": 477,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/2c4876a5ca0015882b38a97c0b6afc7572afe5fe\"\n },\n {\n \"path\": \"1970-01-01-third-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"20cfb011c8b3ec9936eb58c0fb1e2ffe54d52986\",\n \"size\": 472,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/20cfb011c8b3ec9936eb58c0fb1e2ffe54d52986\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"message\":\"Updating “1970-01-01-first-title” metadata\",\"tree\":\"9db3a2109ec3788b44f7be1f63ee69c8ab78f0a5\",\"parents\":[\"e0c87517bf67cd737cf499ddccfc4a41bafa5849\"]}", + "method": "POST", + "url": "/repos/owner/repo/git/commits?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:51:51 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "1505", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4646", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"40acc4ea2000e7aca72326baba91795c\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/commits/f400a547807ec0cbe4e7e331a7503fef40ca1052", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7AD4:9D21:173299E:1C42A1D:5D77AA77", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"f400a547807ec0cbe4e7e331a7503fef40ca1052\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NTcwODkwOmY0MDBhNTQ3ODA3ZWMwY2JlNGU3ZTMzMWE3NTAzZmVmNDBjYTEwNTI=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/f400a547807ec0cbe4e7e331a7503fef40ca1052\",\n \"html_url\": \"https://github.com/owner/repo/commit/f400a547807ec0cbe4e7e331a7503fef40ca1052\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T13:51:51Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T13:51:51Z\"\n },\n \"tree\": {\n \"sha\": \"9db3a2109ec3788b44f7be1f63ee69c8ab78f0a5\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/9db3a2109ec3788b44f7be1f63ee69c8ab78f0a5\"\n },\n \"message\": \"Updating “1970-01-01-first-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"e0c87517bf67cd737cf499ddccfc4a41bafa5849\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/e0c87517bf67cd737cf499ddccfc4a41bafa5849\",\n \"html_url\": \"https://github.com/owner/repo/commit/e0c87517bf67cd737cf499ddccfc4a41bafa5849\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "status": 201 + }, + { + "body": "{\"operationName\":\"statues\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"sha\":\"ce456dd7a5e95408664a7489f65fbbcb566d1be1\"},\"query\":\"query statues($owner: String!, $name: String!, $sha: GitObjectID!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(oid: $sha) {\\n ...ObjectParts\\n ... on Commit {\\n status {\\n id\\n contexts {\\n id\\n context\\n state\\n target_url: targetUrl\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:51:52 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4743", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7AD6:244E4:AEA44D:D39D61:5D77AA78", + "content-length": "276", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDY6Q29tbWl0MjA3NTcwODkwOmNlNDU2ZGQ3YTVlOTU0MDg2NjRhNzQ4OWY2NWZiYmNiNTY2ZDFiZTE=\",\"sha\":\"ce456dd7a5e95408664a7489f65fbbcb566d1be1\",\"__typename\":\"Commit\",\"status\":null}}}}\n", + "status": 200 + }, + { + "body": "{\"sha\":\"f400a547807ec0cbe4e7e331a7503fef40ca1052\",\"force\":false}", + "method": "PATCH", + "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:51:53 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4645", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"d4aa22e112e34ba73f0a618cfc0ac427\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7AD8:B4E0:16ADBC4:1B9A1A7:5D77AA78", + "content-length": "482", + "connection": "keep-alive" + }, + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NTcwODkwOnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"f400a547807ec0cbe4e7e331a7503fef40ca1052\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/f400a547807ec0cbe4e7e331a7503fef40ca1052\"\n }\n}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"unpublishedPrBranches\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\"},\"query\":\"query unpublishedPrBranches($owner: String!, $name: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n refs(refPrefix: \\\"refs/heads/cms/\\\", last: 50) {\\n nodes {\\n id\\n associatedPullRequests(last: 50, states: OPEN) {\\n nodes {\\n id\\n headRef {\\n id\\n name\\n prefix\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:51:55 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4742", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7ADE:9D21:1732F03:1C430D8:5D77AA7B", + "content-length": "518", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"refs\":{\"nodes\":[{\"id\":\"MDM6UmVmMjA3NTcwODkwOjE5NzAtMDEtMDEtZmlyc3QtdGl0bGU=\",\"associatedPullRequests\":{\"nodes\":[{\"id\":\"MDExOlB1bGxSZXF1ZXN0MzE2MDA1NjY1\",\"headRef\":{\"id\":\"MDM6UmVmMjA3NTcwODkwOmNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxl\",\"name\":\"cms/1970-01-01-first-title\",\"prefix\":\"refs/heads/\",\"__typename\":\"Ref\"},\"__typename\":\"PullRequest\"}],\"__typename\":\"PullRequestConnection\"},\"__typename\":\"Ref\"}],\"__typename\":\"RefConnection\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"unpublishedBranchFile\",\"variables\":{\"headOwner\":\"owner\",\"headRepoName\":\"repo\",\"headExpression\":\"cms/1970-01-01-first-title:content/posts/1970-01-01-first-title.md\",\"baseOwner\":\"owner\",\"baseRepoName\":\"repo\",\"baseExpression\":\"master:content/posts/1970-01-01-first-title.md\"},\"query\":\"query unpublishedBranchFile($headOwner: String!, $headRepoName: String!, $headExpression: String!, $baseOwner: String!, $baseRepoName: String!, $baseExpression: String!) {\\n head: repository(owner: $headOwner, name: $headRepoName) {\\n ...RepositoryParts\\n object(expression: $headExpression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n base: repository(owner: $baseOwner, name: $baseRepoName) {\\n ...RepositoryParts\\n object(expression: $baseExpression) {\\n ... on Blob {\\n id\\n oid\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:51:56 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4741", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7ADF:3ED82:18754A9:1DC0C93:5D77AA7B", + "content-length": "496", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"head\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzU3MDg5MDphMDQxMjQ1ODE0ODkyZTNmNzNmNjNjYTU0MzMzZmRhNjQ5YjdmYzBi\",\"text\":\"---\\ntemplate: post\\ntitle: first title\\ndraft: true\\ndate: 1970-01-01T00:00:00.000Z\\ndescription: first description\\ncategory: first category\\ntags:\\n - tag1\\n---\\nfirst body\\n\",\"is_binary\":false,\"__typename\":\"Blob\"}},\"base\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"object\":null}}}\n", + "status": 200 + } +] \ No newline at end of file diff --git a/cypress/fixtures/Github Backend Editorial Workflow - GraphQL API__successfully loads.json b/cypress/fixtures/Github Backend Editorial Workflow - GraphQL API__successfully loads.json new file mode 100644 index 00000000..6cab5b5d --- /dev/null +++ b/cypress/fixtures/Github Backend Editorial Workflow - GraphQL API__successfully loads.json @@ -0,0 +1,290 @@ +[ + { + "body": "{\"operationName\":null,\"variables\":{},\"query\":\"{\\n viewer {\\n id\\n avatar_url: avatarUrl\\n name\\n login\\n __typename\\n }\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:44:20 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4999", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7B03:3ED76:4763FD:577C17:5D77A8B3", + "content-length": "179", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"viewer\":{\"id\":\"MDQ6VXNlcjI2NzYwNTcx\",\"avatar_url\":\"https://avatars1.githubusercontent.com/u/7892489?v=4\",\"name\":\"owner\",\"login\":\"owner\",\"__typename\":\"User\"}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"repoPermission\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\"},\"query\":\"query repoPermission($owner: String!, $name: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n viewerPermission\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:44:21 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4998", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7B05:2B1F:11FC361:15F1C4B:5D77A8B4", + "content-length": "119", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"viewerPermission\":\"ADMIN\"}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"files\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"master:content/posts\"},\"query\":\"query files($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...FileEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment FileEntryParts on TreeEntry {\\n name\\n sha: oid\\n type\\n blob: object {\\n ... on Blob {\\n size: byteSize\\n __typename\\n }\\n __typename\\n }\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:44:22 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4997", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7B0D:244EB:17D1F73:1CEDA4E:5D77A8B5", + "content-length": "1218", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6VHJlZTIwNzU3MDg5MDozNDg5MjU3NWUyMTZjMDZlNzU3MDkzZjAzNmJkOGUwNTdjNzhhNTJm\",\"sha\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"__typename\":\"Tree\",\"entries\":[{\"name\":\"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\"sha\":\"6d51a38aed7139d2117724b1e307657b6ff2d043\",\"type\":\"blob\",\"blob\":{\"size\":1707,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\"sha\":\"d0582dd245a3f408fb3fe2333bf01400007476e9\",\"type\":\"blob\",\"blob\":{\"size\":2565,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2016-02-02---A-Brief-History-of-Typography.md\",\"sha\":\"0eea554365f002d0f1572af9a58522d335a794d5\",\"type\":\"blob\",\"blob\":{\"size\":2786,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2017-18-08---The-Birth-of-Movable-Type.md\",\"sha\":\"44f78c474d04273185a95821426f75affc9b0044\",\"type\":\"blob\",\"blob\":{\"size\":16071,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\"sha\":\"a532f0a9445cdf90a19c6812cff89d1674991774\",\"type\":\"blob\",\"blob\":{\"size\":7465,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"}]}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"files\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"master:static/media\"},\"query\":\"query files($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ...ObjectParts\\n ... on Tree {\\n entries {\\n ...FileEntryParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment ObjectParts on GitObject {\\n id\\n sha: oid\\n __typename\\n}\\n\\nfragment FileEntryParts on TreeEntry {\\n name\\n sha: oid\\n type\\n blob: object {\\n ... on Blob {\\n size: byteSize\\n __typename\\n }\\n __typename\\n }\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:44:23 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4996", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7B3F:244EB:17D215B:1CEDCD3:5D77A8B6", + "content-length": "1837", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6VHJlZTIwNzU3MDg5MDo5Yjc2OTliNTdlMTQzMDkxMGRiODI4MzFkY2Y2YjhhMWQxZGJkYWM5\",\"sha\":\"9b7699b57e1430910db82831dcf6b8a1d1dbdac9\",\"__typename\":\"Tree\",\"entries\":[{\"name\":\"42-line-bible.jpg\",\"sha\":\"41c8d12f9ca5864beb827c381fbeff935209d5fb\",\"type\":\"blob\",\"blob\":{\"size\":671242,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"gutenberg.jpg\",\"sha\":\"04315e355873ea5d358d9c371c39a6845c1ae4ae\",\"type\":\"blob\",\"blob\":{\"size\":155002,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-0.jpg\",\"sha\":\"b70a1b64fd4fa9635823231a0ba92c6dc9393f16\",\"type\":\"blob\",\"blob\":{\"size\":660287,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-1.jpg\",\"sha\":\"05eedae372b829c62501ac751b2d42dcc432541b\",\"type\":\"blob\",\"blob\":{\"size\":392411,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-2.jpg\",\"sha\":\"53845ed35faf8939bea242bb85eda7c324b1be0b\",\"type\":\"blob\",\"blob\":{\"size\":99147,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-3.jpg\",\"sha\":\"8b2339d97069e826fae1f156212e40ae458454e3\",\"type\":\"blob\",\"blob\":{\"size\":358022,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"image-4.jpg\",\"sha\":\"a8f6f21253a67a4284b5a953b2fe633d44152ecd\",\"type\":\"blob\",\"blob\":{\"size\":114837,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"movable-type.jpg\",\"sha\":\"57b4e925ea00bd8e195cf4418eb6eb2995ea5f10\",\"type\":\"blob\",\"blob\":{\"size\":559028,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"printing-press.jpg\",\"sha\":\"d27f56c9437d9becd2f56cc627c9322c2f1f61f6\",\"type\":\"blob\",\"blob\":{\"size\":279283,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"},{\"name\":\"type-through-time.jpg\",\"sha\":\"3f08366a805c51a60ec5056010f22de4ba08abaa\",\"type\":\"blob\",\"blob\":{\"size\":117689,\"__typename\":\"Blob\"},\"__typename\":\"TreeEntry\"}]}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"6d51a38aed7139d2117724b1e307657b6ff2d043\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:44:23 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4995", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7B44:1510F:120732F:15DFF38:5D77A8B7", + "content-length": "1973", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzU3MDg5MDo2ZDUxYTM4YWVkNzEzOWQyMTE3NzI0YjFlMzA3NjU3YjZmZjJkMDQz\",\"text\":\"---\\ntitle: Perfecting the Art of Perfection\\ndate: \\\"2016-09-01T23:46:37.121Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Design Inspiration\\\"\\ntags:\\n - \\\"Handwriting\\\"\\n - \\\"Learning to write\\\"\\ndescription: \\\"Quisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\\\"\\ncanonical: ''\\n---\\n\\nQuisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\\n\\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-2.jpg)\\n\\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. \\n\\nPraesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"44f78c474d04273185a95821426f75affc9b0044\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:44:26 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4994", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7B4E:3ED7B:12388AC:1620B6D:5D77A8B9", + "content-length": "16478", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzU3MDg5MDo0NGY3OGM0NzRkMDQyNzMxODVhOTU4MjE0MjZmNzVhZmZjOWIwMDQ0\",\"text\":\"---\\ntitle: \\\"Johannes Gutenberg: The Birth of Movable Type\\\"\\ndate: \\\"2017-08-18T22:12:03.284Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Typography\\\"\\ntags:\\n - \\\"Open source\\\"\\n - \\\"Gatsby\\\"\\n - \\\"Typography\\\"\\ndescription: \\\"German inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\\\"\\ncanonical: ''\\n---\\n\\nGerman inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\\n\\n**Johannes Gensfleisch zur Laden zum Gutenberg** (c. 1398 – 1468) was a German blacksmith, goldsmith, printer, and publisher who introduced printing to Europe. His invention of mechanical movable type printing started the Printing Revolution and is widely regarded as the most important event of the modern period. It played a key role in the development of the Renaissance, Reformation, the Age of Enlightenment, and the Scientific revolution and laid the material basis for the modern knowledge-based economy and the spread of learning to the masses.\\n\\n
\\n\\t\\\"Gutenberg\\\"\\n\\t
Johannes Gutenberg
\\n
\\n\\nWith his invention of the printing press, Gutenberg was the first European to use movable type printing, in around 1439. Among his many contributions to printing are: the invention of a process for mass-producing movable type; the use of oil-based ink; and the use of a wooden printing press similar to the agricultural screw presses of the period. His truly epochal invention was the combination of these elements into a practical system that allowed the mass production of printed books and was economically viable for printers and readers alike. Gutenberg's method for making type is traditionally considered to have included a type metal alloy and a hand mould for casting type. The alloy was a mixture of lead, tin, and antimony that melted at a relatively low temperature for faster and more economical casting, cast well, and created a durable type.\\n\\nIn Renaissance Europe, the arrival of mechanical movable type printing introduced the era of mass communication which permanently altered the structure of society. The relatively unrestricted circulation of information — including revolutionary ideas — transcended borders, captured the masses in the Reformation and threatened the power of political and religious authorities; the sharp increase in literacy broke the monopoly of the literate elite on education and learning and bolstered the emerging middle class. Across Europe, the increasing cultural self-awareness of its people led to the rise of proto-nationalism, accelerated by the flowering of the European vernacular languages to the detriment of Latin's status as lingua franca. In the 19th century, the replacement of the hand-operated Gutenberg-style press by steam-powered rotary presses allowed printing on an industrial scale, while Western-style printing was adopted all over the world, becoming practically the sole medium for modern bulk printing.\\n\\nThe use of movable type was a marked improvement on the handwritten manuscript, which was the existing method of book production in Europe, and upon woodblock printing, and revolutionized European book-making. Gutenberg's printing technology spread rapidly throughout Europe and later the world.\\n\\nHis major work, the Gutenberg Bible (also known as the 42-line Bible), has been acclaimed for its high aesthetic and technical quality.\\n\\n## Printing Press\\n\\nAround 1439, Gutenberg was involved in a financial misadventure making polished metal mirrors (which were believed to capture holy light from religious relics) for sale to pilgrims to Aachen: in 1439 the city was planning to exhibit its collection of relics from Emperor Charlemagne but the event was delayed by one year due to a severe flood and the capital already spent could not be repaid. When the question of satisfying the investors came up, Gutenberg is said to have promised to share a “secret”. It has been widely speculated that this secret may have been the idea of printing with movable type. Also around 1439–1440, the Dutch Laurens Janszoon Coster came up with the idea of printing. Legend has it that the idea came to him “like a ray of light”.\\n\\n
\\n\\t\\\"Early\\n\\t
Early wooden printing press as depicted in 1568.
\\n
\\n\\nUntil at least 1444 he lived in Strasbourg, most likely in the St. Arbogast parish. It was in Strasbourg in 1440 that Gutenberg is said to have perfected and unveiled the secret of printing based on his research, mysteriously entitled Kunst und Aventur (art and enterprise). It is not clear what work he was engaged in, or whether some early trials with printing from movable type may have been conducted there. After this, there is a gap of four years in the record. In 1448, he was back in Mainz, where he took out a loan from his brother-in-law Arnold Gelthus, quite possibly for a printing press or related paraphernalia. By this date, Gutenberg may have been familiar with intaglio printing; it is claimed that he had worked on copper engravings with an artist known as the Master of Playing Cards.\\n\\nBy 1450, the press was in operation, and a German poem had been printed, possibly the first item to be printed there. Gutenberg was able to convince the wealthy moneylender Johann Fust for a loan of 800 guilders. Peter Schöffer, who became Fust’s son-in-law, also joined the enterprise. Schöffer had worked as a scribe in Paris and is believed to have designed some of the first typefaces.\\n\\n
\\n\\t
\\n\\t\\t

All that has been written to me about that marvelous man seen at Frankfurt is true. I have not seen complete Bibles but only a number of quires of various books of the Bible. The script was very neat and legible, not at all difficult to follow—your grace would be able to read it without effort, and indeed without glasses.

\\n\\t\\t
\\n\\t\\t\\t—Future pope Pius II in a letter to Cardinal Carvajal, March 1455\\n\\t\\t
\\n\\t
\\n
\\n\\nGutenberg's workshop was set up at Hof Humbrecht, a property belonging to a distant relative. It is not clear when Gutenberg conceived the Bible project, but for this he borrowed another 800 guilders from Fust, and work commenced in 1452. At the same time, the press was also printing other, more lucrative texts (possibly Latin grammars). There is also some speculation that there may have been two presses, one for the pedestrian texts, and one for the Bible. One of the profit-making enterprises of the new press was the printing of thousands of indulgences for the church, documented from 1454–55.\\n\\nIn 1455 Gutenberg completed his 42-line Bible, known as the Gutenberg Bible. About 180 copies were printed, most on paper and some on vellum.\\n\\n## Court Case\\n\\nSome time in 1456, there was a dispute between Gutenberg and Fust, and Fust demanded his money back, accusing Gutenberg of misusing the funds. Meanwhile the expenses of the Bible project had proliferated, and Gutenberg's debt now exceeded 20,000 guilders. Fust sued at the archbishop's court. A November 1455 legal document records that there was a partnership for a \\\"project of the books,\\\" the funds for which Gutenberg had used for other purposes, according to Fust. The court decided in favor of Fust, giving him control over the Bible printing workshop and half of all printed Bibles.\\n\\nThus Gutenberg was effectively bankrupt, but it appears he retained (or re-started) a small printing shop, and participated in the printing of a Bible in the town of Bamberg around 1459, for which he seems at least to have supplied the type. But since his printed books never carry his name or a date, it is difficult to be certain, and there is consequently a considerable scholarly debate on this subject. It is also possible that the large Catholicon dictionary, 300 copies of 754 pages, printed in Mainz in 1460, may have been executed in his workshop.\\n\\nMeanwhile, the Fust–Schöffer shop was the first in Europe to bring out a book with the printer's name and date, the Mainz Psalter of August 1457, and while proudly proclaiming the mechanical process by which it had been produced, it made no mention of Gutenberg.\\n\\n## Later Life\\n\\nIn 1462, during a conflict between two archbishops, Mainz was sacked by archbishop Adolph von Nassau, and Gutenberg was exiled. An old man by now, he moved to Eltville where he may have initiated and supervised a new printing press belonging to the brothers Bechtermünze.\\n\\nIn January 1465, Gutenberg's achievements were recognized and he was given the title Hofmann (gentleman of the court) by von Nassau. This honor included a stipend, an annual court outfit, as well as 2,180 litres of grain and 2,000 litres of wine tax-free. It is believed he may have moved back to Mainz around this time, but this is not certain.\\n\\n***\\n\\nGutenberg died in 1468 and was buried in the Franciscan church at Mainz, his contributions largely unknown. This church and the cemetery were later destroyed, and Gutenberg's grave is now lost.\\n\\nIn 1504, he was mentioned as the inventor of typography in a book by Professor Ivo Wittig. It was not until 1567 that the first portrait of Gutenberg, almost certainly an imaginary reconstruction, appeared in Heinrich Pantaleon's biography of famous Germans.\\n\\n## Printing Method With Movable Type\\n\\nGutenberg's early printing process, and what tests he may have made with movable type, are not known in great detail. His later Bibles were printed in such a way as to have required large quantities of type, some estimates suggesting as many as 100,000 individual sorts. Setting each page would take, perhaps, half a day, and considering all the work in loading the press, inking the type, pulling the impressions, hanging up the sheets, distributing the type, etc., it is thought that the Gutenberg–Fust shop might have employed as many as 25 craftsmen.\\n\\n![Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5](/media/movable-type.jpg)\\n\\n*Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5*\\n\\nGutenberg's technique of making movable type remains unclear. In the following decades, punches and copper matrices became standardized in the rapidly disseminating printing presses across Europe. Whether Gutenberg used this sophisticated technique or a somewhat primitive version has been the subject of considerable debate.\\n\\nIn the standard process of making type, a hard metal punch (made by punchcutting, with the letter carved back to front) is hammered into a softer copper bar, creating a matrix. This is then placed into a hand-held mould and a piece of type, or \\\"sort\\\", is cast by filling the mould with molten type-metal; this cools almost at once, and the resulting piece of type can be removed from the mould. The matrix can be reused to create hundreds, or thousands, of identical sorts so that the same character appearing anywhere within the book will appear very uniform, giving rise, over time, to the development of distinct styles of typefaces or fonts. After casting, the sorts are arranged into type-cases, and used to make up pages which are inked and printed, a procedure which can be repeated hundreds, or thousands, of times. The sorts can be reused in any combination, earning the process the name of “movable type”.\\n\\nThe invention of the making of types with punch, matrix and mold has been widely attributed to Gutenberg. However, recent evidence suggests that Gutenberg's process was somewhat different. If he used the punch and matrix approach, all his letters should have been nearly identical, with some variations due to miscasting and inking. However, the type used in Gutenberg's earliest work shows other variations.\\n\\n
\\n\\t
\\n\\t\\t

It is a press, certainly, but a press from which shall flow in inexhaustible streams… Through it, god will spread his word.

\\n\\t\\t
\\n\\t\\t\\t—Johannes Gutenberg\\n\\t\\t
\\n\\t
\\n
\\n\\nIn 2001, the physicist Blaise Agüera y Arcas and Princeton librarian Paul Needham, used digital scans of a Papal bull in the Scheide Library, Princeton, to carefully compare the same letters (types) appearing in different parts of the printed text. The irregularities in Gutenberg's type, particularly in simple characters such as the hyphen, suggested that the variations could not have come from either ink smear or from wear and damage on the pieces of metal on the types themselves. While some identical types are clearly used on other pages, other variations, subjected to detailed image analysis, suggested that they could not have been produced from the same matrix. Transmitted light pictures of the page also appeared to reveal substructures in the type that could not arise from traditional punchcutting techniques. They hypothesized that the method may have involved impressing simple shapes to create alphabets in “cuneiform” style in a matrix made of some soft material, perhaps sand. Casting the type would destroy the mould, and the matrix would need to be recreated to make each additional sort. This could explain the variations in the type, as well as the substructures observed in the printed images.\\n\\nThus, they feel that “the decisive factor for the birth of typography”, the use of reusable moulds for casting type, might have been a more progressive process than was previously thought. They suggest that the additional step of using the punch to create a mould that could be reused many times was not taken until twenty years later, in the 1470s. Others have not accepted some or all of their suggestions, and have interpreted the evidence in other ways, and the truth of the matter remains very uncertain.\\n\\nA 1568 history by Hadrianus Junius of Holland claims that the basic idea of the movable type came to Gutenberg from Laurens Janszoon Coster via Fust, who was apprenticed to Coster in the 1430s and may have brought some of his equipment from Haarlem to Mainz. While Coster appears to have experimented with moulds and castable metal type, there is no evidence that he had actually printed anything with this technology. He was an inventor and a goldsmith. However, there is one indirect supporter of the claim that Coster might be the inventor. The author of the Cologne Chronicle of 1499 quotes Ulrich Zell, the first printer of Cologne, that printing was performed in Mainz in 1450, but that some type of printing of lower quality had previously occurred in the Netherlands. However, the chronicle does not mention the name of Coster, while it actually credits Gutenberg as the \\\"first inventor of printing\\\" in the very same passage (fol. 312). The first securely dated book by Dutch printers is from 1471, and the Coster connection is today regarded as a mere legend.\\n\\nThe 19th century printer and typefounder Fournier Le Jeune suggested that Gutenberg might not have been using type cast with a reusable matrix, but possibly wooden types that were carved individually. A similar suggestion was made by Nash in 2004. This remains possible, albeit entirely unproven.\\n\\nIt has also been questioned whether Gutenberg used movable types at all. In 2004, Italian professor Bruno Fabbiani claimed that examination of the 42-line Bible revealed an overlapping of letters, suggesting that Gutenberg did not in fact use movable type (individual cast characters) but rather used whole plates made from a system somewhat like a modern typewriter, whereby the letters were stamped successively into the plate and then printed. However, most specialists regard the occasional overlapping of type as caused by paper movement over pieces of type of slightly unequal height.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"a532f0a9445cdf90a19c6812cff89d1674991774\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:44:26 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4993", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7B4D:2B1F:11FC986:15F23ED:5D77A8B9", + "content-length": "7803", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzU3MDg5MDphNTMyZjBhOTQ0NWNkZjkwYTE5YzY4MTJjZmY4OWQxNjc0OTkxNzc0\",\"text\":\"---\\ntitle: Humane Typography in the Digital Age\\ndate: \\\"2017-08-19T22:40:32.169Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Typography\\\"\\ntags:\\n - \\\"Design\\\"\\n - \\\"Typography\\\"\\n - \\\"Web Development\\\"\\ndescription: \\\"An Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\\\"\\ncanonical: ''\\n---\\n\\n- [The first transition](#the-first-transition)\\n- [The digital age](#the-digital-age)\\n- [Loss of humanity through transitions](#loss-of-humanity-through-transitions)\\n- [Chasing perfection](#chasing-perfection)\\n\\nAn Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\\n\\nThe typography of this industrial age was no longer handcrafted. Mass production and profit became more important. Quantity mattered more than the quality. The books and printed works in general lost a part of its humanity. The typefaces were not produced by craftsmen anymore. It was the machines printing and tying the books together now. The craftsmen had to let go of their craft and became a cog in the process. An extension of the industrial machine.\\n\\nBut the victory of the industrialism didn’t mean that the craftsmen were completely extinct. The two worlds continued to coexist independently. Each recognising the good in the other — the power of industrialism and the humanity of craftsmanship. This was the second transition that would strip typography of a part of its humanity. We have to go 500 years back in time to meet the first one.\\n\\n## The first transition\\n\\nA similar conflict emerged after the invention of the first printing press in Europe. Johannes Gutenberg invented movable type and used it to produce different compositions. His workshop could print up to 240 impressions per hour. Until then, the books were being copied by hand. All the books were handwritten and decorated with hand drawn ornaments and figures. A process of copying a book was long but each book, even a copy, was a work of art.\\n\\nThe first printed books were, at first, perceived as inferior to the handwritten ones. They were smaller and cheaper to produce. Movable type provided the printers with flexibility that allowed them to print books in languages other than Latin. Gill describes the transition to industrialism as something that people needed and wanted. Something similar happened after the first printed books emerged. People wanted books in a language they understood and they wanted books they could take with them. They were hungry for knowledge and printed books satisfied this hunger.\\n\\n![42-line-bible.jpg](/media/42-line-bible.jpg)\\n\\n*The 42–Line Bible, printed by Gutenberg.*\\n\\nBut, through this transition, the book lost a large part of its humanity. The machine took over most of the process but craftsmanship was still a part of it. The typefaces were cut manually by the first punch cutters. The paper was made by hand. The illustrations and ornaments were still being hand drawn. These were the remains of the craftsmanship that went almost extinct in the times of Eric Gill.\\n\\n## The digital age\\n\\nThe first transition took away a large part of humanity from written communication. Industrialisation, the second transition described by Eric Gill, took away most of what was left. But it’s the third transition that stripped it naked. Typefaces are faceless these days. They’re just fonts on our computers. Hardly anyone knows their stories. Hardly anyone cares. Flicking through thousands of typefaces and finding the “right one” is a matter of minutes.\\n\\n> In the new computer age the proliferation of typefaces and type manipulations represents a new level of visual pollution threatening our culture. Out of thousands of typefaces, all we need are a few basic ones, and trash the rest.\\n>\\n— Massimo Vignelli\\n\\nTypography is not about typefaces. It’s not about what looks best, it’s about what feels right. What communicates the message best. Typography, in its essence, is about the message. “Typographical design should perform optically what the speaker creates through voice and gesture of his thoughts.”, as El Lissitzky, a famous Russian typographer, put it.\\n\\n## Loss of humanity through transitions\\n\\nEach transition took away a part of humanity from written language. Handwritten books being the most humane form and the digital typefaces being the least. Overuse of Helvetica is a good example. Messages are being told in a typeface just because it’s a safe option. It’s always there. Everyone knows it but yet, nobody knows it. Stop someone on the street and ask him what Helvetica is? Ask a designer the same question. Ask him where it came from, when, why and who designed it. Most of them will fail to answer these questions. Most of them used it in their precious projects but they still don’t spot it in the street.\\n\\n
\\n\\t
\\n\\t\\t

Knowledge of the quality of a typeface is of the greatest importance for the functional, aesthetic and psychological effect.

\\n\\t\\t
\\n\\t\\t\\t— Josef Mueller-Brockmann\\n\\t\\t
\\n\\t
\\n
\\n\\nTypefaces don’t look handmade these days. And that’s all right. They don’t have to. Industrialism took that away from them and we’re fine with it. We’ve traded that part of humanity for a process that produces more books that are easier to read. That can’t be bad. And it isn’t.\\n\\n> Humane typography will often be comparatively rough and even uncouth; but while a certain uncouthness does not seriously matter in humane works, uncouthness has no excuse whatever in the productions of the machine.\\n>\\n> — Eric Gill\\n\\nWe’ve come close to “perfection” in the last five centuries. The letters are crisp and without rough edges. We print our compositions with high–precision printers on a high quality, machine made paper.\\n\\n![type-through-time.jpg](/media/type-through-time.jpg)\\n\\n*Type through 5 centuries.*\\n\\nWe lost a part of ourselves because of this chase after perfection. We forgot about the craftsmanship along the way. And the worst part is that we don’t care. The transition to the digital age made that clear. We choose typefaces like clueless zombies. There’s no meaning in our work. Type sizes, leading, margins… It’s all just a few clicks or lines of code. The message isn’t important anymore. There’s no more ��why” behind the “what”.\\n\\n## Chasing perfection\\n\\nHuman beings aren’t perfect. Perfection is something that will always elude us. There will always be a small part of humanity in everything we do. No matter how small that part, we should make sure that it transcends the limits of the medium. We have to think about the message first. What typeface should we use and why? Does the typeface match the message and what we want to communicate with it? What will be the leading and why? Will there be more typefaces in our design? On what ground will they be combined? What makes our design unique and why? This is the part of humanity that is left in typography. It might be the last part. Are we really going to give it up?\\n\\n*Originally published by [Matej Latin](http://matejlatin.co.uk/) on [Medium](https://medium.com/design-notes/humane-typography-in-the-digital-age-9bd5c16199bd?ref=webdesignernews.com#.lygo82z0x).*\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"0eea554365f002d0f1572af9a58522d335a794d5\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:44:26 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4992", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7B4A:244EB:17D26B9:1CEE32D:5D77A8B9", + "content-length": "3102", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzU3MDg5MDowZWVhNTU0MzY1ZjAwMmQwZjE1NzJhZjlhNTg1MjJkMzM1YTc5NGQ1\",\"text\":\"---\\ntitle: \\\"A Brief History of Typography\\\"\\ndate: \\\"2016-02-02T22:40:32.169Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Design Inspiration\\\"\\ntags:\\n - \\\"Linotype\\\"\\n - \\\"Monotype\\\"\\n - \\\"History of typography\\\"\\n - \\\"Helvetica\\\"\\ndescription: \\\"Morbi in sem quis dui placerat ornare. Pellentesque odio nisi, euismod in, pharetra a, ultricies in, diam. Sed arcu. Cras consequat.\\\"\\ncanonical: ''\\n---\\n\\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \\n\\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\\n\\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-0.jpg)\\n\\n## Header Level 2\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \\n\\n
\\n\\t
\\n\\t\\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\\n\\t\\t
\\n\\t\\t\\t— Aliquam tincidunt mauris eu risus.\\n\\t\\t
\\n\\t
\\n
\\n\\n### Header Level 3\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\\n\\n```css\\n#header h1 a {\\n display: block;\\n width: 300px;\\n height: 80px;\\n}\\n```\\n\\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "status": 200 + }, + { + "body": "{\"operationName\":\"blob\",\"variables\":{\"owner\":\"owner\",\"name\":\"repo\",\"expression\":\"d0582dd245a3f408fb3fe2333bf01400007476e9\"},\"query\":\"query blob($owner: String!, $name: String!, $expression: String!) {\\n repository(owner: $owner, name: $name) {\\n ...RepositoryParts\\n object(expression: $expression) {\\n ... on Blob {\\n ...BlobWithTextParts\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment RepositoryParts on Repository {\\n id\\n __typename\\n}\\n\\nfragment BlobWithTextParts on Blob {\\n id\\n text\\n is_binary: isBinary\\n __typename\\n}\\n\"}", + "method": "POST", + "url": "/graphql", + "headers": { + "Date": "Tue, 10 Sep 2019 13:44:26 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "Cache-Control": "no-cache", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v4; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4991", + "X-RateLimit-Reset": "1568126660", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7B48:2B1F:11FC98B:15F23F2:5D77A8B9", + "content-length": "2866", + "connection": "keep-alive" + }, + "response": "{\"data\":{\"repository\":{\"id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzA4OTA=\",\"__typename\":\"Repository\",\"object\":{\"id\":\"MDQ6QmxvYjIwNzU3MDg5MDpkMDU4MmRkMjQ1YTNmNDA4ZmIzZmUyMzMzYmYwMTQwMDAwNzQ3NmU5\",\"text\":\"---\\ntitle: The Origins of Social Stationery Lettering\\ndate: \\\"2016-12-01T22:40:32.169Z\\\"\\ntemplate: \\\"post\\\"\\ndraft: false\\ncategory: \\\"Design Culture\\\"\\ndescription: \\\"Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante.\\\"\\ncanonical: ''\\n---\\n\\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \\n\\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\\n\\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-3.jpg)\\n\\n## Header Level 2\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \\n\\n
\\n\\t
\\n\\t\\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\\n\\t\\t
\\n\\t\\t\\t— Aliquam tincidunt mauris eu risus.\\n\\t\\t
\\n\\t
\\n
\\n\\n### Header Level 3\\n\\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\n+ Aliquam tincidunt mauris eu risus.\\n\\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\\n\\n```css\\n#header h1 a {\\n display: block;\\n width: 300px;\\n height: 80px;\\n}\\n```\\n\\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.\",\"is_binary\":false,\"__typename\":\"Blob\"}}}}\n", + "status": 200 + } +] \ No newline at end of file diff --git a/cypress/fixtures/Github Backend Editorial Workflow - REST API - Open Authoring__can change entry status from fork.json b/cypress/fixtures/Github Backend Editorial Workflow - REST API - Open Authoring__can change entry status from fork.json new file mode 100644 index 00000000..40d18c27 --- /dev/null +++ b/cypress/fixtures/Github Backend Editorial Workflow - REST API - Open Authoring__can change entry status from fork.json @@ -0,0 +1,1469 @@ +[ + { + "method": "GET", + "url": "/user", + "headers": { + "Date": "Tue, 10 Sep 2019 13:58:27 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4746", + "X-RateLimit-Reset": "1568127500", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"306a7697fb3e2ba7e728a792014e91b8\"", + "Last-Modified": "Sun, 01 Sep 2019 18:04:11 GMT", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B79:244EB:18283FB:1D584A8:5D77AC03", + "content-length": "1333", + "connection": "keep-alive" + }, + "response": "{\"login\":\"forkOwner\",\"id\":2,\"avatar_url\":\"https://avatars1.githubusercontent.com/u/7892489?v=4\",\"name\":\"forkOwner\"}", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/collaborators/forkOwner/permission", + "headers": { + "Date": "Tue, 10 Sep 2019 13:58:28 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "403 Forbidden", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4745", + "X-RateLimit-Reset": "1568127500", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B7A:2B1F:123CF66:164299A:5D77AC04", + "content-length": "185", + "connection": "keep-alive" + }, + "response": "{\n \"message\": \"Must have push access to view collaborator permission.\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/collaborators/#review-a-users-permission-level\"\n}\n", + "status": 403 + }, + { + "method": "POST", + "url": "/repos/owner/repo/forks", + "headers": { + "Date": "Tue, 10 Sep 2019 13:58:29 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "22055", + "Server": "GitHub.com", + "Status": "202 Accepted", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4744", + "X-RateLimit-Reset": "1568127500", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B7C:9D1F:A3BE32:C7D180:5D77AC04", + "connection": "keep-alive" + }, + "response": "{\n \"id\": 207574049,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NzQwNDk=\",\n \"name\": \"repo\",\n \"full_name\": \"forkOwner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"forkOwner\",\n \"id\": 53494188,\n \"node_id\": \"MDQ6VXNlcjUzNDk0MTg4\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/forkOwner\",\n \"html_url\": \"https://github.com/forkOwner\",\n \"followers_url\": \"https://api.github.com/users/forkOwner/followers\",\n \"following_url\": \"https://api.github.com/users/forkOwner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/forkOwner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/forkOwner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/forkOwner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/forkOwner/orgs\",\n \"repos_url\": \"https://api.github.com/users/forkOwner/repos\",\n \"events_url\": \"https://api.github.com/users/forkOwner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/forkOwner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/forkOwner/repo\",\n \"description\": null,\n \"fork\": true,\n \"url\": \"https://api.github.com/repos/forkOwner/repo\",\n \"forks_url\": \"https://api.github.com/repos/forkOwner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/forkOwner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/forkOwner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/forkOwner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/forkOwner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/forkOwner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/forkOwner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/forkOwner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/forkOwner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/forkOwner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/forkOwner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/forkOwner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/forkOwner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/forkOwner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/forkOwner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/forkOwner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/forkOwner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/forkOwner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/forkOwner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/forkOwner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/forkOwner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/forkOwner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/forkOwner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/forkOwner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/forkOwner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/forkOwner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/forkOwner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/forkOwner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/forkOwner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/forkOwner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/forkOwner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/forkOwner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/forkOwner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/forkOwner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/forkOwner/repo/deployments\",\n \"created_at\": \"2019-09-10T13:56:28Z\",\n \"updated_at\": \"2019-09-10T13:56:30Z\",\n \"pushed_at\": \"2019-09-10T13:57:16Z\",\n \"git_url\": \"git://github.com/forkOwner/repo.git\",\n \"ssh_url\": \"git@github.com:forkOwner/repo.git\",\n \"clone_url\": \"https://github.com/forkOwner/repo.git\",\n \"svn_url\": \"https://github.com/forkOwner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": null,\n \"has_issues\": false,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\",\n \"permissions\": {\n \"admin\": true,\n \"push\": true,\n \"pull\": true\n },\n \"parent\": {\n \"id\": 207573159,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NzMxNTk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-10T13:52:54Z\",\n \"updated_at\": \"2019-09-10T13:56:22Z\",\n \"pushed_at\": \"2019-09-10T13:58:17Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n },\n \"source\": {\n \"id\": 207573159,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NzMxNTk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-10T13:52:54Z\",\n \"updated_at\": \"2019-09-10T13:56:22Z\",\n \"pushed_at\": \"2019-09-10T13:58:17Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n },\n \"network_count\": 1,\n \"subscribers_count\": 0\n}\n", + "status": 202 + }, + { + "method": "GET", + "url": "/repos/forkOwner/repo", + "headers": { + "Date": "Tue, 10 Sep 2019 13:58:29 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4743", + "X-RateLimit-Reset": "1568127500", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"451b92f75c40431b5cb9dd39f8272710\"", + "Last-Modified": "Tue, 10 Sep 2019 13:56:30 GMT", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B7E:1510F:124978D:16321B4:5D77AC05", + "content-length": "22145", + "connection": "keep-alive" + }, + "response": "{\n \"id\": 207574049,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NzQwNDk=\",\n \"name\": \"repo\",\n \"full_name\": \"forkOwner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"forkOwner\",\n \"id\": 53494188,\n \"node_id\": \"MDQ6VXNlcjUzNDk0MTg4\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/forkOwner\",\n \"html_url\": \"https://github.com/forkOwner\",\n \"followers_url\": \"https://api.github.com/users/forkOwner/followers\",\n \"following_url\": \"https://api.github.com/users/forkOwner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/forkOwner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/forkOwner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/forkOwner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/forkOwner/orgs\",\n \"repos_url\": \"https://api.github.com/users/forkOwner/repos\",\n \"events_url\": \"https://api.github.com/users/forkOwner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/forkOwner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/forkOwner/repo\",\n \"description\": null,\n \"fork\": true,\n \"url\": \"https://api.github.com/repos/forkOwner/repo\",\n \"forks_url\": \"https://api.github.com/repos/forkOwner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/forkOwner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/forkOwner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/forkOwner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/forkOwner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/forkOwner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/forkOwner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/forkOwner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/forkOwner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/forkOwner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/forkOwner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/forkOwner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/forkOwner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/forkOwner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/forkOwner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/forkOwner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/forkOwner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/forkOwner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/forkOwner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/forkOwner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/forkOwner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/forkOwner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/forkOwner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/forkOwner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/forkOwner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/forkOwner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/forkOwner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/forkOwner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/forkOwner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/forkOwner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/forkOwner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/forkOwner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/forkOwner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/forkOwner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/forkOwner/repo/deployments\",\n \"created_at\": \"2019-09-10T13:56:28Z\",\n \"updated_at\": \"2019-09-10T13:56:30Z\",\n \"pushed_at\": \"2019-09-10T13:57:16Z\",\n \"git_url\": \"git://github.com/forkOwner/repo.git\",\n \"ssh_url\": \"git@github.com:forkOwner/repo.git\",\n \"clone_url\": \"https://github.com/forkOwner/repo.git\",\n \"svn_url\": \"https://github.com/forkOwner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": null,\n \"has_issues\": false,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\",\n \"permissions\": {\n \"admin\": true,\n \"push\": true,\n \"pull\": true\n },\n \"allow_squash_merge\": true,\n \"allow_merge_commit\": true,\n \"allow_rebase_merge\": true,\n \"parent\": {\n \"id\": 207573159,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NzMxNTk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-10T13:52:54Z\",\n \"updated_at\": \"2019-09-10T13:56:22Z\",\n \"pushed_at\": \"2019-09-10T13:58:17Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n },\n \"source\": {\n \"id\": 207573159,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NzMxNTk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-10T13:52:54Z\",\n \"updated_at\": \"2019-09-10T13:56:22Z\",\n \"pushed_at\": \"2019-09-10T13:58:17Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n },\n \"network_count\": 1,\n \"subscribers_count\": 0\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/user?ts=0", + "headers": { + "Date": "Tue, 10 Sep 2019 13:58:30 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4742", + "X-RateLimit-Reset": "1568127500", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"306a7697fb3e2ba7e728a792014e91b8\"", + "Last-Modified": "Sun, 01 Sep 2019 18:04:11 GMT", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B81:2B24:17E8756:1D10B99:5D77AC06", + "content-length": "1333", + "connection": "keep-alive" + }, + "response": "{\"login\":\"forkOwner\",\"id\":2,\"avatar_url\":\"https://avatars1.githubusercontent.com/u/7892489?v=4\",\"name\":\"forkOwner\"}", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/forkOwner/repo?ts=0", + "headers": { + "Date": "Tue, 10 Sep 2019 13:58:31 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4741", + "X-RateLimit-Reset": "1568127500", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"451b92f75c40431b5cb9dd39f8272710\"", + "Last-Modified": "Tue, 10 Sep 2019 13:56:30 GMT", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B82:B4DE:1209C4C:15F5D1C:5D77AC06", + "content-length": "22145", + "connection": "keep-alive" + }, + "response": "{\n \"id\": 207574049,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NzQwNDk=\",\n \"name\": \"repo\",\n \"full_name\": \"forkOwner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"forkOwner\",\n \"id\": 53494188,\n \"node_id\": \"MDQ6VXNlcjUzNDk0MTg4\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/forkOwner\",\n \"html_url\": \"https://github.com/forkOwner\",\n \"followers_url\": \"https://api.github.com/users/forkOwner/followers\",\n \"following_url\": \"https://api.github.com/users/forkOwner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/forkOwner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/forkOwner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/forkOwner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/forkOwner/orgs\",\n \"repos_url\": \"https://api.github.com/users/forkOwner/repos\",\n \"events_url\": \"https://api.github.com/users/forkOwner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/forkOwner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/forkOwner/repo\",\n \"description\": null,\n \"fork\": true,\n \"url\": \"https://api.github.com/repos/forkOwner/repo\",\n \"forks_url\": \"https://api.github.com/repos/forkOwner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/forkOwner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/forkOwner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/forkOwner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/forkOwner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/forkOwner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/forkOwner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/forkOwner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/forkOwner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/forkOwner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/forkOwner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/forkOwner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/forkOwner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/forkOwner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/forkOwner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/forkOwner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/forkOwner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/forkOwner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/forkOwner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/forkOwner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/forkOwner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/forkOwner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/forkOwner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/forkOwner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/forkOwner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/forkOwner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/forkOwner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/forkOwner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/forkOwner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/forkOwner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/forkOwner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/forkOwner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/forkOwner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/forkOwner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/forkOwner/repo/deployments\",\n \"created_at\": \"2019-09-10T13:56:28Z\",\n \"updated_at\": \"2019-09-10T13:56:30Z\",\n \"pushed_at\": \"2019-09-10T13:57:16Z\",\n \"git_url\": \"git://github.com/forkOwner/repo.git\",\n \"ssh_url\": \"git@github.com:forkOwner/repo.git\",\n \"clone_url\": \"https://github.com/forkOwner/repo.git\",\n \"svn_url\": \"https://github.com/forkOwner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": null,\n \"has_issues\": false,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\",\n \"permissions\": {\n \"admin\": true,\n \"push\": true,\n \"pull\": true\n },\n \"allow_squash_merge\": true,\n \"allow_merge_commit\": true,\n \"allow_rebase_merge\": true,\n \"parent\": {\n \"id\": 207573159,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NzMxNTk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-10T13:52:54Z\",\n \"updated_at\": \"2019-09-10T13:56:22Z\",\n \"pushed_at\": \"2019-09-10T13:58:17Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n },\n \"source\": {\n \"id\": 207573159,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NzMxNTk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-10T13:52:54Z\",\n \"updated_at\": \"2019-09-10T13:56:22Z\",\n \"pushed_at\": \"2019-09-10T13:58:17Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n },\n \"network_count\": 1,\n \"subscribers_count\": 0\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/content/posts?ts=0&ref=master", + "headers": { + "Date": "Tue, 10 Sep 2019 13:58:31 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4740", + "X-RateLimit-Reset": "1568127500", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"c5b7f6d674ba193bb7b4a5fcf4933034e1b7f2b7\"", + "Last-Modified": "Tue, 10 Sep 2019 13:56:22 GMT", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B84:1510F:1249A17:16324E3:5D77AC07", + "content-length": "7422", + "connection": "keep-alive" + }, + "response": "[\n {\n \"name\": \"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"path\": \"content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"sha\": \"6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"size\": 1707,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"html\": \"https://github.com/owner/repo/blob/master/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md\"\n }\n },\n {\n \"name\": \"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"path\": \"content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"sha\": \"d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"size\": 2565,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"html\": \"https://github.com/owner/repo/blob/master/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\"\n }\n },\n {\n \"name\": \"2016-02-02---A-Brief-History-of-Typography.md\",\n \"path\": \"content/posts/2016-02-02---A-Brief-History-of-Typography.md\",\n \"sha\": \"0eea554365f002d0f1572af9a58522d335a794d5\",\n \"size\": 2786,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2016-02-02---A-Brief-History-of-Typography.md?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/content/posts/2016-02-02---A-Brief-History-of-Typography.md\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/content/posts/2016-02-02---A-Brief-History-of-Typography.md\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2016-02-02---A-Brief-History-of-Typography.md?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\",\n \"html\": \"https://github.com/owner/repo/blob/master/content/posts/2016-02-02---A-Brief-History-of-Typography.md\"\n }\n },\n {\n \"name\": \"2017-18-08---The-Birth-of-Movable-Type.md\",\n \"path\": \"content/posts/2017-18-08---The-Birth-of-Movable-Type.md\",\n \"sha\": \"44f78c474d04273185a95821426f75affc9b0044\",\n \"size\": 16071,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2017-18-08---The-Birth-of-Movable-Type.md?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/content/posts/2017-18-08---The-Birth-of-Movable-Type.md\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/content/posts/2017-18-08---The-Birth-of-Movable-Type.md\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2017-18-08---The-Birth-of-Movable-Type.md?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\",\n \"html\": \"https://github.com/owner/repo/blob/master/content/posts/2017-18-08---The-Birth-of-Movable-Type.md\"\n }\n },\n {\n \"name\": \"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"path\": \"content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"sha\": \"a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"size\": 7465,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"html\": \"https://github.com/owner/repo/blob/master/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md\"\n }\n }\n]\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/forkOwner/repo/contents/static/media?ts=0&ref=master", + "headers": { + "Date": "Tue, 10 Sep 2019 13:58:31 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4739", + "X-RateLimit-Reset": "1568127500", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"c5b7f6d674ba193bb7b4a5fcf4933034e1b7f2b7\"", + "Last-Modified": "Tue, 10 Sep 2019 13:56:30 GMT", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B86:244EB:1828A28:1D58C6D:5D77AC07", + "content-length": "12712", + "connection": "keep-alive" + }, + "response": "[\n {\n \"name\": \"42-line-bible.jpg\",\n \"path\": \"static/media/42-line-bible.jpg\",\n \"sha\": \"41c8d12f9ca5864beb827c381fbeff935209d5fb\",\n \"size\": 671242,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/contents/static/media/42-line-bible.jpg?ref=master\",\n \"html_url\": \"https://github.com/forkOwner/repo/blob/master/static/media/42-line-bible.jpg\",\n \"git_url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/41c8d12f9ca5864beb827c381fbeff935209d5fb\",\n \"download_url\": \"https://raw.githubusercontent.com/forkOwner/repo/master/static/media/42-line-bible.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/forkOwner/repo/contents/static/media/42-line-bible.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/41c8d12f9ca5864beb827c381fbeff935209d5fb\",\n \"html\": \"https://github.com/forkOwner/repo/blob/master/static/media/42-line-bible.jpg\"\n }\n },\n {\n \"name\": \"gutenberg.jpg\",\n \"path\": \"static/media/gutenberg.jpg\",\n \"sha\": \"04315e355873ea5d358d9c371c39a6845c1ae4ae\",\n \"size\": 155002,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/contents/static/media/gutenberg.jpg?ref=master\",\n \"html_url\": \"https://github.com/forkOwner/repo/blob/master/static/media/gutenberg.jpg\",\n \"git_url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/04315e355873ea5d358d9c371c39a6845c1ae4ae\",\n \"download_url\": \"https://raw.githubusercontent.com/forkOwner/repo/master/static/media/gutenberg.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/forkOwner/repo/contents/static/media/gutenberg.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/04315e355873ea5d358d9c371c39a6845c1ae4ae\",\n \"html\": \"https://github.com/forkOwner/repo/blob/master/static/media/gutenberg.jpg\"\n }\n },\n {\n \"name\": \"image-0.jpg\",\n \"path\": \"static/media/image-0.jpg\",\n \"sha\": \"b70a1b64fd4fa9635823231a0ba92c6dc9393f16\",\n \"size\": 660287,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/contents/static/media/image-0.jpg?ref=master\",\n \"html_url\": \"https://github.com/forkOwner/repo/blob/master/static/media/image-0.jpg\",\n \"git_url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/b70a1b64fd4fa9635823231a0ba92c6dc9393f16\",\n \"download_url\": \"https://raw.githubusercontent.com/forkOwner/repo/master/static/media/image-0.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/forkOwner/repo/contents/static/media/image-0.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/b70a1b64fd4fa9635823231a0ba92c6dc9393f16\",\n \"html\": \"https://github.com/forkOwner/repo/blob/master/static/media/image-0.jpg\"\n }\n },\n {\n \"name\": \"image-1.jpg\",\n \"path\": \"static/media/image-1.jpg\",\n \"sha\": \"05eedae372b829c62501ac751b2d42dcc432541b\",\n \"size\": 392411,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/contents/static/media/image-1.jpg?ref=master\",\n \"html_url\": \"https://github.com/forkOwner/repo/blob/master/static/media/image-1.jpg\",\n \"git_url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/05eedae372b829c62501ac751b2d42dcc432541b\",\n \"download_url\": \"https://raw.githubusercontent.com/forkOwner/repo/master/static/media/image-1.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/forkOwner/repo/contents/static/media/image-1.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/05eedae372b829c62501ac751b2d42dcc432541b\",\n \"html\": \"https://github.com/forkOwner/repo/blob/master/static/media/image-1.jpg\"\n }\n },\n {\n \"name\": \"image-2.jpg\",\n \"path\": \"static/media/image-2.jpg\",\n \"sha\": \"53845ed35faf8939bea242bb85eda7c324b1be0b\",\n \"size\": 99147,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/contents/static/media/image-2.jpg?ref=master\",\n \"html_url\": \"https://github.com/forkOwner/repo/blob/master/static/media/image-2.jpg\",\n \"git_url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/53845ed35faf8939bea242bb85eda7c324b1be0b\",\n \"download_url\": \"https://raw.githubusercontent.com/forkOwner/repo/master/static/media/image-2.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/forkOwner/repo/contents/static/media/image-2.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/53845ed35faf8939bea242bb85eda7c324b1be0b\",\n \"html\": \"https://github.com/forkOwner/repo/blob/master/static/media/image-2.jpg\"\n }\n },\n {\n \"name\": \"image-3.jpg\",\n \"path\": \"static/media/image-3.jpg\",\n \"sha\": \"8b2339d97069e826fae1f156212e40ae458454e3\",\n \"size\": 358022,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/contents/static/media/image-3.jpg?ref=master\",\n \"html_url\": \"https://github.com/forkOwner/repo/blob/master/static/media/image-3.jpg\",\n \"git_url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/8b2339d97069e826fae1f156212e40ae458454e3\",\n \"download_url\": \"https://raw.githubusercontent.com/forkOwner/repo/master/static/media/image-3.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/forkOwner/repo/contents/static/media/image-3.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/8b2339d97069e826fae1f156212e40ae458454e3\",\n \"html\": \"https://github.com/forkOwner/repo/blob/master/static/media/image-3.jpg\"\n }\n },\n {\n \"name\": \"image-4.jpg\",\n \"path\": \"static/media/image-4.jpg\",\n \"sha\": \"a8f6f21253a67a4284b5a953b2fe633d44152ecd\",\n \"size\": 114837,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/contents/static/media/image-4.jpg?ref=master\",\n \"html_url\": \"https://github.com/forkOwner/repo/blob/master/static/media/image-4.jpg\",\n \"git_url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/a8f6f21253a67a4284b5a953b2fe633d44152ecd\",\n \"download_url\": \"https://raw.githubusercontent.com/forkOwner/repo/master/static/media/image-4.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/forkOwner/repo/contents/static/media/image-4.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/a8f6f21253a67a4284b5a953b2fe633d44152ecd\",\n \"html\": \"https://github.com/forkOwner/repo/blob/master/static/media/image-4.jpg\"\n }\n },\n {\n \"name\": \"movable-type.jpg\",\n \"path\": \"static/media/movable-type.jpg\",\n \"sha\": \"57b4e925ea00bd8e195cf4418eb6eb2995ea5f10\",\n \"size\": 559028,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/contents/static/media/movable-type.jpg?ref=master\",\n \"html_url\": \"https://github.com/forkOwner/repo/blob/master/static/media/movable-type.jpg\",\n \"git_url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/57b4e925ea00bd8e195cf4418eb6eb2995ea5f10\",\n \"download_url\": \"https://raw.githubusercontent.com/forkOwner/repo/master/static/media/movable-type.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/forkOwner/repo/contents/static/media/movable-type.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/57b4e925ea00bd8e195cf4418eb6eb2995ea5f10\",\n \"html\": \"https://github.com/forkOwner/repo/blob/master/static/media/movable-type.jpg\"\n }\n },\n {\n \"name\": \"printing-press.jpg\",\n \"path\": \"static/media/printing-press.jpg\",\n \"sha\": \"d27f56c9437d9becd2f56cc627c9322c2f1f61f6\",\n \"size\": 279283,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/contents/static/media/printing-press.jpg?ref=master\",\n \"html_url\": \"https://github.com/forkOwner/repo/blob/master/static/media/printing-press.jpg\",\n \"git_url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/d27f56c9437d9becd2f56cc627c9322c2f1f61f6\",\n \"download_url\": \"https://raw.githubusercontent.com/forkOwner/repo/master/static/media/printing-press.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/forkOwner/repo/contents/static/media/printing-press.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/d27f56c9437d9becd2f56cc627c9322c2f1f61f6\",\n \"html\": \"https://github.com/forkOwner/repo/blob/master/static/media/printing-press.jpg\"\n }\n },\n {\n \"name\": \"type-through-time.jpg\",\n \"path\": \"static/media/type-through-time.jpg\",\n \"sha\": \"3f08366a805c51a60ec5056010f22de4ba08abaa\",\n \"size\": 117689,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/contents/static/media/type-through-time.jpg?ref=master\",\n \"html_url\": \"https://github.com/forkOwner/repo/blob/master/static/media/type-through-time.jpg\",\n \"git_url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/3f08366a805c51a60ec5056010f22de4ba08abaa\",\n \"download_url\": \"https://raw.githubusercontent.com/forkOwner/repo/master/static/media/type-through-time.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/forkOwner/repo/contents/static/media/type-through-time.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/3f08366a805c51a60ec5056010f22de4ba08abaa\",\n \"html\": \"https://github.com/forkOwner/repo/blob/master/static/media/type-through-time.jpg\"\n }\n }\n]\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/forkOwner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9?ts=0", + "headers": { + "Date": "Tue, 10 Sep 2019 13:58:32 GMT", + "Content-Type": "text/plain; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4738", + "X-RateLimit-Reset": "1568127500", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"88b7f6d3ffbd2b089766cabe7b8bad3b\"", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B88:3ED82:189C18B:1DF140D:5D77AC08", + "content-length": "2565", + "connection": "keep-alive" + }, + "response": "---\ntitle: The Origins of Social Stationery Lettering\ndate: \"2016-12-01T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Design Culture\"\ndescription: \"Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante.\"\ncanonical: ''\n---\n\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\n\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-3.jpg)\n\n## Header Level 2\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \n\n
\n\t
\n\t\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\n\t\t
\n\t\t\t— Aliquam tincidunt mauris eu risus.\n\t\t
\n\t
\n
\n\n### Header Level 3\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\n\n```css\n#header h1 a {\n display: block;\n width: 300px;\n height: 80px;\n}\n```\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/forkOwner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5?ts=0", + "headers": { + "Date": "Tue, 10 Sep 2019 13:58:32 GMT", + "Content-Type": "text/plain; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4737", + "X-RateLimit-Reset": "1568127500", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"fd57f3a860149dad96a596e31398a809\"", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B90:3ED82:189C193:1DF1414:5D77AC08", + "content-length": "2786", + "connection": "keep-alive" + }, + "response": "---\ntitle: \"A Brief History of Typography\"\ndate: \"2016-02-02T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Design Inspiration\"\ntags:\n - \"Linotype\"\n - \"Monotype\"\n - \"History of typography\"\n - \"Helvetica\"\ndescription: \"Morbi in sem quis dui placerat ornare. Pellentesque odio nisi, euismod in, pharetra a, ultricies in, diam. Sed arcu. Cras consequat.\"\ncanonical: ''\n---\n\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\n\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-0.jpg)\n\n## Header Level 2\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \n\n
\n\t
\n\t\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\n\t\t
\n\t\t\t— Aliquam tincidunt mauris eu risus.\n\t\t
\n\t
\n
\n\n### Header Level 3\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\n\n```css\n#header h1 a {\n display: block;\n width: 300px;\n height: 80px;\n}\n```\n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/forkOwner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044?ts=0", + "headers": { + "Date": "Tue, 10 Sep 2019 13:58:32 GMT", + "Content-Type": "text/plain; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4736", + "X-RateLimit-Reset": "1568127500", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"3caef061a429c3338cb85faf62eacb0d\"", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B92:2B1F:123D477:1642FE1:5D77AC08", + "content-length": "16071", + "connection": "keep-alive" + }, + "response": "---\ntitle: \"Johannes Gutenberg: The Birth of Movable Type\"\ndate: \"2017-08-18T22:12:03.284Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Typography\"\ntags:\n - \"Open source\"\n - \"Gatsby\"\n - \"Typography\"\ndescription: \"German inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\"\ncanonical: ''\n---\n\nGerman inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\n\n**Johannes Gensfleisch zur Laden zum Gutenberg** (c. 1398 – 1468) was a German blacksmith, goldsmith, printer, and publisher who introduced printing to Europe. His invention of mechanical movable type printing started the Printing Revolution and is widely regarded as the most important event of the modern period. It played a key role in the development of the Renaissance, Reformation, the Age of Enlightenment, and the Scientific revolution and laid the material basis for the modern knowledge-based economy and the spread of learning to the masses.\n\n
\n\t\"Gutenberg\"\n\t
Johannes Gutenberg
\n
\n\nWith his invention of the printing press, Gutenberg was the first European to use movable type printing, in around 1439. Among his many contributions to printing are: the invention of a process for mass-producing movable type; the use of oil-based ink; and the use of a wooden printing press similar to the agricultural screw presses of the period. His truly epochal invention was the combination of these elements into a practical system that allowed the mass production of printed books and was economically viable for printers and readers alike. Gutenberg's method for making type is traditionally considered to have included a type metal alloy and a hand mould for casting type. The alloy was a mixture of lead, tin, and antimony that melted at a relatively low temperature for faster and more economical casting, cast well, and created a durable type.\n\nIn Renaissance Europe, the arrival of mechanical movable type printing introduced the era of mass communication which permanently altered the structure of society. The relatively unrestricted circulation of information — including revolutionary ideas — transcended borders, captured the masses in the Reformation and threatened the power of political and religious authorities; the sharp increase in literacy broke the monopoly of the literate elite on education and learning and bolstered the emerging middle class. Across Europe, the increasing cultural self-awareness of its people led to the rise of proto-nationalism, accelerated by the flowering of the European vernacular languages to the detriment of Latin's status as lingua franca. In the 19th century, the replacement of the hand-operated Gutenberg-style press by steam-powered rotary presses allowed printing on an industrial scale, while Western-style printing was adopted all over the world, becoming practically the sole medium for modern bulk printing.\n\nThe use of movable type was a marked improvement on the handwritten manuscript, which was the existing method of book production in Europe, and upon woodblock printing, and revolutionized European book-making. Gutenberg's printing technology spread rapidly throughout Europe and later the world.\n\nHis major work, the Gutenberg Bible (also known as the 42-line Bible), has been acclaimed for its high aesthetic and technical quality.\n\n## Printing Press\n\nAround 1439, Gutenberg was involved in a financial misadventure making polished metal mirrors (which were believed to capture holy light from religious relics) for sale to pilgrims to Aachen: in 1439 the city was planning to exhibit its collection of relics from Emperor Charlemagne but the event was delayed by one year due to a severe flood and the capital already spent could not be repaid. When the question of satisfying the investors came up, Gutenberg is said to have promised to share a “secret”. It has been widely speculated that this secret may have been the idea of printing with movable type. Also around 1439–1440, the Dutch Laurens Janszoon Coster came up with the idea of printing. Legend has it that the idea came to him “like a ray of light”.\n\n
\n\t\"Early\n\t
Early wooden printing press as depicted in 1568.
\n
\n\nUntil at least 1444 he lived in Strasbourg, most likely in the St. Arbogast parish. It was in Strasbourg in 1440 that Gutenberg is said to have perfected and unveiled the secret of printing based on his research, mysteriously entitled Kunst und Aventur (art and enterprise). It is not clear what work he was engaged in, or whether some early trials with printing from movable type may have been conducted there. After this, there is a gap of four years in the record. In 1448, he was back in Mainz, where he took out a loan from his brother-in-law Arnold Gelthus, quite possibly for a printing press or related paraphernalia. By this date, Gutenberg may have been familiar with intaglio printing; it is claimed that he had worked on copper engravings with an artist known as the Master of Playing Cards.\n\nBy 1450, the press was in operation, and a German poem had been printed, possibly the first item to be printed there. Gutenberg was able to convince the wealthy moneylender Johann Fust for a loan of 800 guilders. Peter Schöffer, who became Fust’s son-in-law, also joined the enterprise. Schöffer had worked as a scribe in Paris and is believed to have designed some of the first typefaces.\n\n
\n\t
\n\t\t

All that has been written to me about that marvelous man seen at Frankfurt is true. I have not seen complete Bibles but only a number of quires of various books of the Bible. The script was very neat and legible, not at all difficult to follow—your grace would be able to read it without effort, and indeed without glasses.

\n\t\t
\n\t\t\t—Future pope Pius II in a letter to Cardinal Carvajal, March 1455\n\t\t
\n\t
\n
\n\nGutenberg's workshop was set up at Hof Humbrecht, a property belonging to a distant relative. It is not clear when Gutenberg conceived the Bible project, but for this he borrowed another 800 guilders from Fust, and work commenced in 1452. At the same time, the press was also printing other, more lucrative texts (possibly Latin grammars). There is also some speculation that there may have been two presses, one for the pedestrian texts, and one for the Bible. One of the profit-making enterprises of the new press was the printing of thousands of indulgences for the church, documented from 1454–55.\n\nIn 1455 Gutenberg completed his 42-line Bible, known as the Gutenberg Bible. About 180 copies were printed, most on paper and some on vellum.\n\n## Court Case\n\nSome time in 1456, there was a dispute between Gutenberg and Fust, and Fust demanded his money back, accusing Gutenberg of misusing the funds. Meanwhile the expenses of the Bible project had proliferated, and Gutenberg's debt now exceeded 20,000 guilders. Fust sued at the archbishop's court. A November 1455 legal document records that there was a partnership for a \"project of the books,\" the funds for which Gutenberg had used for other purposes, according to Fust. The court decided in favor of Fust, giving him control over the Bible printing workshop and half of all printed Bibles.\n\nThus Gutenberg was effectively bankrupt, but it appears he retained (or re-started) a small printing shop, and participated in the printing of a Bible in the town of Bamberg around 1459, for which he seems at least to have supplied the type. But since his printed books never carry his name or a date, it is difficult to be certain, and there is consequently a considerable scholarly debate on this subject. It is also possible that the large Catholicon dictionary, 300 copies of 754 pages, printed in Mainz in 1460, may have been executed in his workshop.\n\nMeanwhile, the Fust–Schöffer shop was the first in Europe to bring out a book with the printer's name and date, the Mainz Psalter of August 1457, and while proudly proclaiming the mechanical process by which it had been produced, it made no mention of Gutenberg.\n\n## Later Life\n\nIn 1462, during a conflict between two archbishops, Mainz was sacked by archbishop Adolph von Nassau, and Gutenberg was exiled. An old man by now, he moved to Eltville where he may have initiated and supervised a new printing press belonging to the brothers Bechtermünze.\n\nIn January 1465, Gutenberg's achievements were recognized and he was given the title Hofmann (gentleman of the court) by von Nassau. This honor included a stipend, an annual court outfit, as well as 2,180 litres of grain and 2,000 litres of wine tax-free. It is believed he may have moved back to Mainz around this time, but this is not certain.\n\n***\n\nGutenberg died in 1468 and was buried in the Franciscan church at Mainz, his contributions largely unknown. This church and the cemetery were later destroyed, and Gutenberg's grave is now lost.\n\nIn 1504, he was mentioned as the inventor of typography in a book by Professor Ivo Wittig. It was not until 1567 that the first portrait of Gutenberg, almost certainly an imaginary reconstruction, appeared in Heinrich Pantaleon's biography of famous Germans.\n\n## Printing Method With Movable Type\n\nGutenberg's early printing process, and what tests he may have made with movable type, are not known in great detail. His later Bibles were printed in such a way as to have required large quantities of type, some estimates suggesting as many as 100,000 individual sorts. Setting each page would take, perhaps, half a day, and considering all the work in loading the press, inking the type, pulling the impressions, hanging up the sheets, distributing the type, etc., it is thought that the Gutenberg–Fust shop might have employed as many as 25 craftsmen.\n\n![Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5](/media/movable-type.jpg)\n\n*Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5*\n\nGutenberg's technique of making movable type remains unclear. In the following decades, punches and copper matrices became standardized in the rapidly disseminating printing presses across Europe. Whether Gutenberg used this sophisticated technique or a somewhat primitive version has been the subject of considerable debate.\n\nIn the standard process of making type, a hard metal punch (made by punchcutting, with the letter carved back to front) is hammered into a softer copper bar, creating a matrix. This is then placed into a hand-held mould and a piece of type, or \"sort\", is cast by filling the mould with molten type-metal; this cools almost at once, and the resulting piece of type can be removed from the mould. The matrix can be reused to create hundreds, or thousands, of identical sorts so that the same character appearing anywhere within the book will appear very uniform, giving rise, over time, to the development of distinct styles of typefaces or fonts. After casting, the sorts are arranged into type-cases, and used to make up pages which are inked and printed, a procedure which can be repeated hundreds, or thousands, of times. The sorts can be reused in any combination, earning the process the name of “movable type”.\n\nThe invention of the making of types with punch, matrix and mold has been widely attributed to Gutenberg. However, recent evidence suggests that Gutenberg's process was somewhat different. If he used the punch and matrix approach, all his letters should have been nearly identical, with some variations due to miscasting and inking. However, the type used in Gutenberg's earliest work shows other variations.\n\n
\n\t
\n\t\t

It is a press, certainly, but a press from which shall flow in inexhaustible streams… Through it, god will spread his word.

\n\t\t
\n\t\t\t—Johannes Gutenberg\n\t\t
\n\t
\n
\n\nIn 2001, the physicist Blaise Agüera y Arcas and Princeton librarian Paul Needham, used digital scans of a Papal bull in the Scheide Library, Princeton, to carefully compare the same letters (types) appearing in different parts of the printed text. The irregularities in Gutenberg's type, particularly in simple characters such as the hyphen, suggested that the variations could not have come from either ink smear or from wear and damage on the pieces of metal on the types themselves. While some identical types are clearly used on other pages, other variations, subjected to detailed image analysis, suggested that they could not have been produced from the same matrix. Transmitted light pictures of the page also appeared to reveal substructures in the type that could not arise from traditional punchcutting techniques. They hypothesized that the method may have involved impressing simple shapes to create alphabets in “cuneiform” style in a matrix made of some soft material, perhaps sand. Casting the type would destroy the mould, and the matrix would need to be recreated to make each additional sort. This could explain the variations in the type, as well as the substructures observed in the printed images.\n\nThus, they feel that “the decisive factor for the birth of typography”, the use of reusable moulds for casting type, might have been a more progressive process than was previously thought. They suggest that the additional step of using the punch to create a mould that could be reused many times was not taken until twenty years later, in the 1470s. Others have not accepted some or all of their suggestions, and have interpreted the evidence in other ways, and the truth of the matter remains very uncertain.\n\nA 1568 history by Hadrianus Junius of Holland claims that the basic idea of the movable type came to Gutenberg from Laurens Janszoon Coster via Fust, who was apprenticed to Coster in the 1430s and may have brought some of his equipment from Haarlem to Mainz. While Coster appears to have experimented with moulds and castable metal type, there is no evidence that he had actually printed anything with this technology. He was an inventor and a goldsmith. However, there is one indirect supporter of the claim that Coster might be the inventor. The author of the Cologne Chronicle of 1499 quotes Ulrich Zell, the first printer of Cologne, that printing was performed in Mainz in 1450, but that some type of printing of lower quality had previously occurred in the Netherlands. However, the chronicle does not mention the name of Coster, while it actually credits Gutenberg as the \"first inventor of printing\" in the very same passage (fol. 312). The first securely dated book by Dutch printers is from 1471, and the Coster connection is today regarded as a mere legend.\n\nThe 19th century printer and typefounder Fournier Le Jeune suggested that Gutenberg might not have been using type cast with a reusable matrix, but possibly wooden types that were carved individually. A similar suggestion was made by Nash in 2004. This remains possible, albeit entirely unproven.\n\nIt has also been questioned whether Gutenberg used movable types at all. In 2004, Italian professor Bruno Fabbiani claimed that examination of the 42-line Bible revealed an overlapping of letters, suggesting that Gutenberg did not in fact use movable type (individual cast characters) but rather used whole plates made from a system somewhat like a modern typewriter, whereby the letters were stamped successively into the plate and then printed. However, most specialists regard the occasional overlapping of type as caused by paper movement over pieces of type of slightly unequal height.", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/forkOwner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043?ts=0", + "headers": { + "Date": "Tue, 10 Sep 2019 13:58:32 GMT", + "Content-Type": "text/plain; charset=iso-8859-1", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4735", + "X-RateLimit-Reset": "1568127500", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"ea72b2ba12e74f7d20ccab737e3d3698\"", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B8A:244E4:AFE977:D52E24:5D77AC08", + "content-length": "1707", + "connection": "keep-alive" + }, + "response": "---\ntitle: Perfecting the Art of Perfection\ndate: \"2016-09-01T23:46:37.121Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Design Inspiration\"\ntags:\n - \"Handwriting\"\n - \"Learning to write\"\ndescription: \"Quisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\"\ncanonical: ''\n---\n\nQuisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\n\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-2.jpg)\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. \n\nPraesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/forkOwner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774?ts=0", + "headers": { + "Date": "Tue, 10 Sep 2019 13:58:32 GMT", + "Content-Type": "text/plain; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4734", + "X-RateLimit-Reset": "1568127500", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"3cd1cb72a7e61c4921ca6a2031ad36a4\"", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B98:15110:18A0E84:1DECC5D:5D77AC08", + "content-length": "7465", + "connection": "keep-alive" + }, + "response": "---\ntitle: Humane Typography in the Digital Age\ndate: \"2017-08-19T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Typography\"\ntags:\n - \"Design\"\n - \"Typography\"\n - \"Web Development\"\ndescription: \"An Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\"\ncanonical: ''\n---\n\n- [The first transition](#the-first-transition)\n- [The digital age](#the-digital-age)\n- [Loss of humanity through transitions](#loss-of-humanity-through-transitions)\n- [Chasing perfection](#chasing-perfection)\n\nAn Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\n\nThe typography of this industrial age was no longer handcrafted. Mass production and profit became more important. Quantity mattered more than the quality. The books and printed works in general lost a part of its humanity. The typefaces were not produced by craftsmen anymore. It was the machines printing and tying the books together now. The craftsmen had to let go of their craft and became a cog in the process. An extension of the industrial machine.\n\nBut the victory of the industrialism didn’t mean that the craftsmen were completely extinct. The two worlds continued to coexist independently. Each recognising the good in the other — the power of industrialism and the humanity of craftsmanship. This was the second transition that would strip typography of a part of its humanity. We have to go 500 years back in time to meet the first one.\n\n## The first transition\n\nA similar conflict emerged after the invention of the first printing press in Europe. Johannes Gutenberg invented movable type and used it to produce different compositions. His workshop could print up to 240 impressions per hour. Until then, the books were being copied by hand. All the books were handwritten and decorated with hand drawn ornaments and figures. A process of copying a book was long but each book, even a copy, was a work of art.\n\nThe first printed books were, at first, perceived as inferior to the handwritten ones. They were smaller and cheaper to produce. Movable type provided the printers with flexibility that allowed them to print books in languages other than Latin. Gill describes the transition to industrialism as something that people needed and wanted. Something similar happened after the first printed books emerged. People wanted books in a language they understood and they wanted books they could take with them. They were hungry for knowledge and printed books satisfied this hunger.\n\n![42-line-bible.jpg](/media/42-line-bible.jpg)\n\n*The 42–Line Bible, printed by Gutenberg.*\n\nBut, through this transition, the book lost a large part of its humanity. The machine took over most of the process but craftsmanship was still a part of it. The typefaces were cut manually by the first punch cutters. The paper was made by hand. The illustrations and ornaments were still being hand drawn. These were the remains of the craftsmanship that went almost extinct in the times of Eric Gill.\n\n## The digital age\n\nThe first transition took away a large part of humanity from written communication. Industrialisation, the second transition described by Eric Gill, took away most of what was left. But it’s the third transition that stripped it naked. Typefaces are faceless these days. They’re just fonts on our computers. Hardly anyone knows their stories. Hardly anyone cares. Flicking through thousands of typefaces and finding the “right one” is a matter of minutes.\n\n> In the new computer age the proliferation of typefaces and type manipulations represents a new level of visual pollution threatening our culture. Out of thousands of typefaces, all we need are a few basic ones, and trash the rest.\n>\n— Massimo Vignelli\n\nTypography is not about typefaces. It’s not about what looks best, it’s about what feels right. What communicates the message best. Typography, in its essence, is about the message. “Typographical design should perform optically what the speaker creates through voice and gesture of his thoughts.”, as El Lissitzky, a famous Russian typographer, put it.\n\n## Loss of humanity through transitions\n\nEach transition took away a part of humanity from written language. Handwritten books being the most humane form and the digital typefaces being the least. Overuse of Helvetica is a good example. Messages are being told in a typeface just because it’s a safe option. It’s always there. Everyone knows it but yet, nobody knows it. Stop someone on the street and ask him what Helvetica is? Ask a designer the same question. Ask him where it came from, when, why and who designed it. Most of them will fail to answer these questions. Most of them used it in their precious projects but they still don’t spot it in the street.\n\n
\n\t
\n\t\t

Knowledge of the quality of a typeface is of the greatest importance for the functional, aesthetic and psychological effect.

\n\t\t
\n\t\t\t— Josef Mueller-Brockmann\n\t\t
\n\t
\n
\n\nTypefaces don’t look handmade these days. And that’s all right. They don’t have to. Industrialism took that away from them and we’re fine with it. We’ve traded that part of humanity for a process that produces more books that are easier to read. That can’t be bad. And it isn’t.\n\n> Humane typography will often be comparatively rough and even uncouth; but while a certain uncouthness does not seriously matter in humane works, uncouthness has no excuse whatever in the productions of the machine.\n>\n> — Eric Gill\n\nWe’ve come close to “perfection” in the last five centuries. The letters are crisp and without rough edges. We print our compositions with high–precision printers on a high quality, machine made paper.\n\n![type-through-time.jpg](/media/type-through-time.jpg)\n\n*Type through 5 centuries.*\n\nWe lost a part of ourselves because of this chase after perfection. We forgot about the craftsmanship along the way. And the worst part is that we don’t care. The transition to the digital age made that clear. We choose typefaces like clueless zombies. There’s no meaning in our work. Type sizes, leading, margins… It’s all just a few clicks or lines of code. The message isn’t important anymore. There’s no more “why” behind the “what”.\n\n## Chasing perfection\n\nHuman beings aren’t perfect. Perfection is something that will always elude us. There will always be a small part of humanity in everything we do. No matter how small that part, we should make sure that it transcends the limits of the medium. We have to think about the message first. What typeface should we use and why? Does the typeface match the message and what we want to communicate with it? What will be the leading and why? Will there be more typefaces in our design? On what ground will they be combined? What makes our design unique and why? This is the part of humanity that is left in typography. It might be the last part. Are we really going to give it up?\n\n*Originally published by [Matej Latin](http://matejlatin.co.uk/) on [Medium](https://medium.com/design-notes/humane-typography-in-the-digital-age-9bd5c16199bd?ref=webdesignernews.com#.lygo82z0x).*", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/forkOwner/repo/contents/forkOwner/repo/posts/1970-01-01-first-title.json?ts=300&ref=refs/meta/_netlify_cms", + "headers": { + "Date": "Tue, 10 Sep 2019 13:58:36 GMT", + "Content-Type": "application/vnd.github.VERSION.raw; charset=utf-8", + "Content-Length": "468", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4733", + "X-RateLimit-Reset": "1568127500", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"82976a6de475d051a4819a4a72f8c983d062263f\"", + "Last-Modified": "Tue, 10 Sep 2019 13:57:08 GMT", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B9A:B4E0:16D5A98:1BCB5B9:5D77AC0B", + "connection": "keep-alive" + }, + "response": "{\"type\":\"PR\",\"user\":\"forkOwner\",\"status\":\"draft\",\"branch\":\"cms/forkOwner/repo/posts/1970-01-01-first-title\",\"collection\":\"posts\",\"commitMessage\":\"Create Post “1970-01-01-first-title”\",\"title\":\"first title\",\"description\":\"first description\",\"objects\":{\"entry\":{\"path\":\"content/posts/1970-01-01-first-title.md\",\"sha\":\"a041245814892e3f73f63ca54333fda649b7fc0b\"},\"files\":[]},\"timeStamp\":\"1970-01-01T00:00:00.300Z\"}", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/forkOwner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=cms/forkOwner/repo/posts/1970-01-01-first-title", + "headers": { + "Date": "Tue, 10 Sep 2019 13:58:37 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "404 Not Found", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4732", + "X-RateLimit-Reset": "1568127500", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B9D:9D20:1168D6E:154A5FC:5D77AC0C", + "content-length": "218", + "connection": "keep-alive" + }, + "response": "{\n \"message\": \"No commit found for the ref cms/forkOwner/repo/posts/1970-01-01-first-title\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/\"\n}\n", + "status": 404 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=master", + "headers": { + "Date": "Tue, 10 Sep 2019 13:58:37 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "404 Not Found", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4731", + "X-RateLimit-Reset": "1568127500", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B9F:2B19:AA3DD9:CF3A58:5D77AC0C", + "content-length": "116", + "connection": "keep-alive" + }, + "response": "{\n \"message\": \"Not Found\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/#get-contents\"\n}\n", + "status": 404 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=master", + "headers": { + "Date": "Tue, 10 Sep 2019 13:58:37 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "404 Not Found", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4730", + "X-RateLimit-Reset": "1568127500", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BA0:244E4:AFED85:D53340:5D77AC0D", + "content-length": "116", + "connection": "keep-alive" + }, + "response": "{\n \"message\": \"Not Found\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/#get-contents\"\n}\n", + "status": 404 + }, + { + "body": "{\"content\":\"LS0tCnRlbXBsYXRlOiBwb3N0CnRpdGxlOiBmaXJzdCB0aXRsZQpkcmFmdDogdHJ1ZQpkYXRlOiAxOTcwLTAxLTAxVDAwOjAwOjAwLjAwMFoKZGVzY3JpcHRpb246IGZpcnN0IGRlc2NyaXB0aW9uCmNhdGVnb3J5OiBmaXJzdCBjYXRlZ29yeQp0YWdzOgogIC0gdGFnMQotLS0KZmlyc3QgYm9keQo=\",\"encoding\":\"base64\"}", + "method": "POST", + "url": "/repos/forkOwner/repo/git/blobs?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:58:44 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "212", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4729", + "X-RateLimit-Reset": "1568127500", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"9110b0f43bac9b530937daefcc0fde5f\"", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/forkOwner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BA2:1510E:AD4D9B:D32D30:5D77AC0D", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"a041245814892e3f73f63ca54333fda649b7fc0b\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b\"\n}\n", + "status": 201 + }, + { + "method": "GET", + "url": "/repos/forkOwner/repo/branches/master?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:58:45 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4728", + "X-RateLimit-Reset": "1568127500", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"f77cc5d5061b3978c67296ca43107299\"", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BA4:9D21:1759CA2:1C73927:5D77AC15", + "content-length": "6021", + "connection": "keep-alive" + }, + "response": "{\n \"name\": \"master\",\n \"commit\": {\n \"sha\": \"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NTc0MDQ5OjcyNjE3MmRlYWU5OWM4YTJjZWE0YzcxZTczNGEwMmE3OTNkNGQ5ZTU=\",\n \"commit\": {\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-08T09:08:14Z\"\n },\n \"committer\": {\n \"name\": \"GitHub\",\n \"email\": \"noreply@github.com\",\n \"date\": \"2019-09-08T09:08:14Z\"\n },\n \"message\": \"Merge pull request #10 from owner/chore/update_dependencies\\n\\nChore: update dependencies\",\n \"tree\": {\n \"sha\": \"c5b7f6d674ba193bb7b4a5fcf4933034e1b7f2b7\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/c5b7f6d674ba193bb7b4a5fcf4933034e1b7f2b7\"\n },\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"comment_count\": 0,\n \"verification\": {\n \"verified\": true,\n \"reason\": \"valid\",\n \"signature\": \"-----BEGIN PGP SIGNATURE-----\\n\\nwsBcBAABCAAQBQJddMT+CRBK7hj4Ov3rIwAAdHIIABWcobVYZFMuqSPezceRaKDr\\npXGqxvB3WLiIrvsQiBz2si9SvufXxLUdq72iaYTbXMCqIAAIBDNwHLltOKcbUF9J\\nKa8pD6cq7jpNyZfhI8xlapMwEZPu53as0tSvwdOnl/0iL+WYjUZUFQR+vrWEmllu\\nhIES9QxU2nk5zcS7t8sFRA+sJdll8GzzhoWYkpw3wgqpxCzJdf5HJS0tWyVCZM5U\\nCgSpSgTvz9bALnQxu7YVrfLGEvi8S7LaOEz5HQc+TV1hNR2dfl5hhiHhWQ1Rsx5w\\nUECV01vItNWhx2dyMn77hIu/G+bTH89WZDU+CmifsNkmvkq90fk4eNt8Hg1mxn4=\\n=6ayM\\n-----END PGP SIGNATURE-----\\n\",\n \"payload\": \"tree c5b7f6d674ba193bb7b4a5fcf4933034e1b7f2b7\\nparent 8ade583d7c02e7769dd685ca64c10851c09f51cf\\nparent 4940957ff42b034d8c47d64b383c34548a34fbb5\\nauthor owner 1567933694 +0300\\ncommitter GitHub 1567933694 +0300\\n\\nMerge pull request #10 from owner/chore/update_dependencies\\n\\nChore: update dependencies\"\n }\n },\n \"url\": \"https://api.github.com/repos/forkOwner/repo/commits/726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"comments_url\": \"https://api.github.com/repos/forkOwner/repo/commits/726172deae99c8a2cea4c71e734a02a793d4d9e5/comments\",\n \"author\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"committer\": {\n \"login\": \"web-flow\",\n \"id\": 19864447,\n \"node_id\": \"MDQ6VXNlcjE5ODY0NDQ3\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/web-flow\",\n \"html_url\": \"https://github.com/web-flow\",\n \"followers_url\": \"https://api.github.com/users/web-flow/followers\",\n \"following_url\": \"https://api.github.com/users/web-flow/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/web-flow/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/web-flow/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/web-flow/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/web-flow/orgs\",\n \"repos_url\": \"https://api.github.com/users/web-flow/repos\",\n \"events_url\": \"https://api.github.com/users/web-flow/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/web-flow/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"parents\": [\n {\n \"sha\": \"8ade583d7c02e7769dd685ca64c10851c09f51cf\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/commits/8ade583d7c02e7769dd685ca64c10851c09f51cf\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/8ade583d7c02e7769dd685ca64c10851c09f51cf\"\n },\n {\n \"sha\": \"4940957ff42b034d8c47d64b383c34548a34fbb5\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/commits/4940957ff42b034d8c47d64b383c34548a34fbb5\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/4940957ff42b034d8c47d64b383c34548a34fbb5\"\n }\n ]\n },\n \"_links\": {\n \"self\": \"https://api.github.com/repos/forkOwner/repo/branches/master\",\n \"html\": \"https://github.com/forkOwner/repo/tree/master\"\n },\n \"protected\": false,\n \"protection\": {\n \"enabled\": false,\n \"required_status_checks\": {\n \"enforcement_level\": \"off\",\n \"contexts\": [\n\n ]\n }\n },\n \"protection_url\": \"https://api.github.com/repos/forkOwner/repo/branches/master/protection\"\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/forkOwner/repo/git/trees/726172deae99c8a2cea4c71e734a02a793d4d9e5?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:58:46 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4727", + "X-RateLimit-Reset": "1568127500", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"4cb59f98c7efebbb9d0b391d65868c46\"", + "Last-Modified": "Tue, 10 Sep 2019 13:56:30 GMT", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BA6:B4E0:16D6AEA:1BCC9D5:5D77AC15", + "content-length": "11959", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"tree\": [\n {\n \"path\": \".circleci\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"e5e9af3301cac61f120b8e4d40b1733c7a45685a\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/e5e9af3301cac61f120b8e4d40b1733c7a45685a\"\n },\n {\n \"path\": \".eslintignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"80b4531b026d19f8fa589efd122e76199d23f967\",\n \"size\": 39,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/80b4531b026d19f8fa589efd122e76199d23f967\"\n },\n {\n \"path\": \".eslintrc.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"370684994aaed5b858da3a006f48cfa57e88fd27\",\n \"size\": 414,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/370684994aaed5b858da3a006f48cfa57e88fd27\"\n },\n {\n \"path\": \".flowconfig\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14aa2ac4cc0e15223ad98630a6f1325fc81f8043\",\n \"size\": 283,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/14aa2ac4cc0e15223ad98630a6f1325fc81f8043\"\n },\n {\n \"path\": \".gitattributes\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"10a369ddf4f603337cabc6f21646508323941ce1\",\n \"size\": 135,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/10a369ddf4f603337cabc6f21646508323941ce1\"\n },\n {\n \"path\": \".github\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4ebeece548b52b20af59622354530a6d33b50b43\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/4ebeece548b52b20af59622354530a6d33b50b43\"\n },\n {\n \"path\": \".gitignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"c071ba35b0e49899bab6d610a68eef667dbbf157\",\n \"size\": 169,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/c071ba35b0e49899bab6d610a68eef667dbbf157\"\n },\n {\n \"path\": \".prettierignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"393f050e123d998cf8c8b362ff95cc8ac4d250e5\",\n \"size\": 45,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/393f050e123d998cf8c8b362ff95cc8ac4d250e5\"\n },\n {\n \"path\": \".prettierrc\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e52ad05bb13b084d7949dd76e1b2517455162150\",\n \"size\": 223,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/e52ad05bb13b084d7949dd76e1b2517455162150\"\n },\n {\n \"path\": \".stylelintrc.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"4b4c9698d10d756f5faa025659b86375428ed0a7\",\n \"size\": 718,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/4b4c9698d10d756f5faa025659b86375428ed0a7\"\n },\n {\n \"path\": \".vscode\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"286e97ec0113ea8242b41ac222e2c3e8077e6f1e\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/286e97ec0113ea8242b41ac222e2c3e8077e6f1e\"\n },\n {\n \"path\": \"CHANGELOG.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"070a5d4f0eacd2dc0be81ae8996f8982de43046e\",\n \"size\": 2113,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/070a5d4f0eacd2dc0be81ae8996f8982de43046e\"\n },\n {\n \"path\": \"CODE_OF_CONDUCT.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"92bc7565ff0ee145a0041b5179a820f14f39ab22\",\n \"size\": 3355,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/92bc7565ff0ee145a0041b5179a820f14f39ab22\"\n },\n {\n \"path\": \"CONTRIBUTING.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"8552aa241254a61258e1ff9666ab36f32fb1e3b9\",\n \"size\": 3548,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/8552aa241254a61258e1ff9666ab36f32fb1e3b9\"\n },\n {\n \"path\": \"LICENSE\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"42d85938357b49977c126ca03b199129082d4fb8\",\n \"size\": 1091,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/42d85938357b49977c126ca03b199129082d4fb8\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"19df50a78654c8d757ca7f38447aa3d09c7abcce\",\n \"size\": 3698,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/19df50a78654c8d757ca7f38447aa3d09c7abcce\"\n },\n {\n \"path\": \"backend\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\"\n },\n {\n \"path\": \"config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"58afd573bbb69fcca000efd0f5d90b93c93a98dd\",\n \"size\": 853,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/58afd573bbb69fcca000efd0f5d90b93c93a98dd\"\n },\n {\n \"path\": \"content\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/0294ef106c58743907a5c855da1eb0f87b0b6dfc\"\n },\n {\n \"path\": \"flow-typed\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"86c32fd6c3118be5e0dbbb231a834447357236c6\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/86c32fd6c3118be5e0dbbb231a834447357236c6\"\n },\n {\n \"path\": \"flow\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"0af45ad00d155c8d8c7407d913ff85278244c9ce\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/0af45ad00d155c8d8c7407d913ff85278244c9ce\"\n },\n {\n \"path\": \"gatsby-browser.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9bd2c9dce175f04980e91cd9dc295a299e3cdb80\",\n \"size\": 90,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/9bd2c9dce175f04980e91cd9dc295a299e3cdb80\"\n },\n {\n \"path\": \"gatsby-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"353a109dad62e3f25bf9f5e6a2167f21a6c8b459\",\n \"size\": 7228,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/353a109dad62e3f25bf9f5e6a2167f21a6c8b459\"\n },\n {\n \"path\": \"gatsby-node.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14a207883c2093d2cc071bc5a464e165bcc1fead\",\n \"size\": 409,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/14a207883c2093d2cc071bc5a464e165bcc1fead\"\n },\n {\n \"path\": \"gatsby\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4f23c06cd1740bf78304d2c0b29bf6bfdf427981\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/4f23c06cd1740bf78304d2c0b29bf6bfdf427981\"\n },\n {\n \"path\": \"jest\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\"\n },\n {\n \"path\": \"netlify.toml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"599b99cc5700404fde316a7ede829776f23e7d45\",\n \"size\": 137,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/599b99cc5700404fde316a7ede829776f23e7d45\"\n },\n {\n \"path\": \"package.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9d777616438b90a18f1a4ebfd5f114b4c06c6f17\",\n \"size\": 6855,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/9d777616438b90a18f1a4ebfd5f114b4c06c6f17\"\n },\n {\n \"path\": \"postcss-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d216501e9b351a72e00ba0b7459a6500e27e7da2\",\n \"size\": 703,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/d216501e9b351a72e00ba0b7459a6500e27e7da2\"\n },\n {\n \"path\": \"renovate.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"dcc309398785698b8870545c32051a3d72dd8271\",\n \"size\": 460,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/dcc309398785698b8870545c32051a3d72dd8271\"\n },\n {\n \"path\": \"serverless-scripts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ee3701f2fbfc7196ba340f6481d1387d20527898\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/ee3701f2fbfc7196ba340f6481d1387d20527898\"\n },\n {\n \"path\": \"serverless-single-page-app-plugin\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"08763fcfba643a06a452398517019bea4a5850ba\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/08763fcfba643a06a452398517019bea4a5850ba\"\n },\n {\n \"path\": \"serverless.yml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"20b22c5fad229f35d029bf6614d333d82fe8a987\",\n \"size\": 7803,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/20b22c5fad229f35d029bf6614d333d82fe8a987\"\n },\n {\n \"path\": \"src\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"8cdb35a88232c0f32f12f130c92c7cc55f97f471\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/8cdb35a88232c0f32f12f130c92c7cc55f97f471\"\n },\n {\n \"path\": \"static\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"53c6380a600a030d3722bff7ecde36f749fb6964\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/53c6380a600a030d3722bff7ecde36f749fb6964\"\n },\n {\n \"path\": \"utils\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"a592549c9f74db40b51efefcda2fd76810405f27\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/a592549c9f74db40b51efefcda2fd76810405f27\"\n },\n {\n \"path\": \"yarn.lock\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"475c9c1924ca752a0686303e2fdeb7b13ad75f57\",\n \"size\": 793903,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/475c9c1924ca752a0686303e2fdeb7b13ad75f57\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/forkOwner/repo/git/trees/0294ef106c58743907a5c855da1eb0f87b0b6dfc?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:58:46 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4726", + "X-RateLimit-Reset": "1568127500", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"145b65676fde9944237823c2b2f7e235\"", + "Last-Modified": "Tue, 10 Sep 2019 13:56:30 GMT", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BA8:2B15:4EA3F6:5F72D1:5D77AC16", + "content-length": "846", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\n \"tree\": [\n {\n \"path\": \"pages\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\"\n },\n {\n \"path\": \"posts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"34892575e216c06e757093f036bd8e057c78a52f\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/34892575e216c06e757093f036bd8e057c78a52f\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/forkOwner/repo/git/trees/34892575e216c06e757093f036bd8e057c78a52f?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:58:47 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4725", + "X-RateLimit-Reset": "1568127500", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"dffeebbaee00b1940716502bcfd835a4\"", + "Last-Modified": "Tue, 10 Sep 2019 13:56:30 GMT", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BAA:2B15:4EA42F:5F7311:5D77AC17", + "content-length": "2060", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"34892575e216c06e757093f036bd8e057c78a52f\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/34892575e216c06e757093f036bd8e057c78a52f\",\n \"tree\": [\n {\n \"path\": \"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"size\": 1707,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\"\n },\n {\n \"path\": \"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"size\": 2565,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\"\n },\n {\n \"path\": \"2016-02-02---A-Brief-History-of-Typography.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"0eea554365f002d0f1572af9a58522d335a794d5\",\n \"size\": 2786,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\"\n },\n {\n \"path\": \"2017-18-08---The-Birth-of-Movable-Type.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"44f78c474d04273185a95821426f75affc9b0044\",\n \"size\": 16071,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\"\n },\n {\n \"path\": \"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"size\": 7465,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 200 + }, + { + "body": "{\"base_tree\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"tree\":[{\"path\":\"1970-01-01-first-title.md\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"a041245814892e3f73f63ca54333fda649b7fc0b\"}]}", + "method": "POST", + "url": "/repos/forkOwner/repo/git/trees?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:58:48 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "2397", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4724", + "X-RateLimit-Reset": "1568127500", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"2724f7374e1cabc1fc97fc93d56683f7\"", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/forkOwner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BAC:2B1F:123E838:1644810:5D77AC17", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a041245814892e3f73f63ca54333fda649b7fc0b\",\n \"size\": 167,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b\"\n },\n {\n \"path\": \"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"size\": 1707,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\"\n },\n {\n \"path\": \"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"size\": 2565,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\"\n },\n {\n \"path\": \"2016-02-02---A-Brief-History-of-Typography.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"0eea554365f002d0f1572af9a58522d335a794d5\",\n \"size\": 2786,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\"\n },\n {\n \"path\": \"2017-18-08---The-Birth-of-Movable-Type.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"44f78c474d04273185a95821426f75affc9b0044\",\n \"size\": 16071,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\"\n },\n {\n \"path\": \"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"size\": 7465,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"base_tree\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\"tree\":[{\"path\":\"posts\",\"mode\":\"040000\",\"type\":\"tree\",\"sha\":\"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\"parentSha\":\"34892575e216c06e757093f036bd8e057c78a52f\"}]}", + "method": "POST", + "url": "/repos/forkOwner/repo/git/trees?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:58:48 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "846", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4723", + "X-RateLimit-Reset": "1568127500", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"3a18ca43d35ad985a7254b1d8e5912fe\"", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/forkOwner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BAF:1510E:AD55DB:D33769:5D77AC18", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"tree\": [\n {\n \"path\": \"pages\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\"\n },\n {\n \"path\": \"posts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"base_tree\":\"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\"tree\":[{\"path\":\"content\",\"mode\":\"040000\",\"type\":\"tree\",\"sha\":\"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\"parentSha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\"}]}", + "method": "POST", + "url": "/repos/forkOwner/repo/git/trees?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:58:49 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "11959", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4722", + "X-RateLimit-Reset": "1568127500", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"642fe7ffc59b49d6b9b4eda36ef3fd38\"", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/forkOwner/repo/git/trees/daee8d5d15d144e8779955166a2afeccde2770e1", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BB1:B4DE:120B1FE:15F7838:5D77AC18", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"daee8d5d15d144e8779955166a2afeccde2770e1\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/daee8d5d15d144e8779955166a2afeccde2770e1\",\n \"tree\": [\n {\n \"path\": \".circleci\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"e5e9af3301cac61f120b8e4d40b1733c7a45685a\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/e5e9af3301cac61f120b8e4d40b1733c7a45685a\"\n },\n {\n \"path\": \".eslintignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"80b4531b026d19f8fa589efd122e76199d23f967\",\n \"size\": 39,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/80b4531b026d19f8fa589efd122e76199d23f967\"\n },\n {\n \"path\": \".eslintrc.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"370684994aaed5b858da3a006f48cfa57e88fd27\",\n \"size\": 414,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/370684994aaed5b858da3a006f48cfa57e88fd27\"\n },\n {\n \"path\": \".flowconfig\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14aa2ac4cc0e15223ad98630a6f1325fc81f8043\",\n \"size\": 283,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/14aa2ac4cc0e15223ad98630a6f1325fc81f8043\"\n },\n {\n \"path\": \".gitattributes\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"10a369ddf4f603337cabc6f21646508323941ce1\",\n \"size\": 135,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/10a369ddf4f603337cabc6f21646508323941ce1\"\n },\n {\n \"path\": \".github\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4ebeece548b52b20af59622354530a6d33b50b43\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/4ebeece548b52b20af59622354530a6d33b50b43\"\n },\n {\n \"path\": \".gitignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"c071ba35b0e49899bab6d610a68eef667dbbf157\",\n \"size\": 169,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/c071ba35b0e49899bab6d610a68eef667dbbf157\"\n },\n {\n \"path\": \".prettierignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"393f050e123d998cf8c8b362ff95cc8ac4d250e5\",\n \"size\": 45,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/393f050e123d998cf8c8b362ff95cc8ac4d250e5\"\n },\n {\n \"path\": \".prettierrc\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e52ad05bb13b084d7949dd76e1b2517455162150\",\n \"size\": 223,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/e52ad05bb13b084d7949dd76e1b2517455162150\"\n },\n {\n \"path\": \".stylelintrc.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"4b4c9698d10d756f5faa025659b86375428ed0a7\",\n \"size\": 718,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/4b4c9698d10d756f5faa025659b86375428ed0a7\"\n },\n {\n \"path\": \".vscode\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"286e97ec0113ea8242b41ac222e2c3e8077e6f1e\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/286e97ec0113ea8242b41ac222e2c3e8077e6f1e\"\n },\n {\n \"path\": \"CHANGELOG.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"070a5d4f0eacd2dc0be81ae8996f8982de43046e\",\n \"size\": 2113,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/070a5d4f0eacd2dc0be81ae8996f8982de43046e\"\n },\n {\n \"path\": \"CODE_OF_CONDUCT.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"92bc7565ff0ee145a0041b5179a820f14f39ab22\",\n \"size\": 3355,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/92bc7565ff0ee145a0041b5179a820f14f39ab22\"\n },\n {\n \"path\": \"CONTRIBUTING.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"8552aa241254a61258e1ff9666ab36f32fb1e3b9\",\n \"size\": 3548,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/8552aa241254a61258e1ff9666ab36f32fb1e3b9\"\n },\n {\n \"path\": \"LICENSE\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"42d85938357b49977c126ca03b199129082d4fb8\",\n \"size\": 1091,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/42d85938357b49977c126ca03b199129082d4fb8\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"19df50a78654c8d757ca7f38447aa3d09c7abcce\",\n \"size\": 3698,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/19df50a78654c8d757ca7f38447aa3d09c7abcce\"\n },\n {\n \"path\": \"backend\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\"\n },\n {\n \"path\": \"config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"58afd573bbb69fcca000efd0f5d90b93c93a98dd\",\n \"size\": 853,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/58afd573bbb69fcca000efd0f5d90b93c93a98dd\"\n },\n {\n \"path\": \"content\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639\"\n },\n {\n \"path\": \"flow-typed\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"86c32fd6c3118be5e0dbbb231a834447357236c6\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/86c32fd6c3118be5e0dbbb231a834447357236c6\"\n },\n {\n \"path\": \"flow\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"0af45ad00d155c8d8c7407d913ff85278244c9ce\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/0af45ad00d155c8d8c7407d913ff85278244c9ce\"\n },\n {\n \"path\": \"gatsby-browser.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9bd2c9dce175f04980e91cd9dc295a299e3cdb80\",\n \"size\": 90,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/9bd2c9dce175f04980e91cd9dc295a299e3cdb80\"\n },\n {\n \"path\": \"gatsby-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"353a109dad62e3f25bf9f5e6a2167f21a6c8b459\",\n \"size\": 7228,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/353a109dad62e3f25bf9f5e6a2167f21a6c8b459\"\n },\n {\n \"path\": \"gatsby-node.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14a207883c2093d2cc071bc5a464e165bcc1fead\",\n \"size\": 409,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/14a207883c2093d2cc071bc5a464e165bcc1fead\"\n },\n {\n \"path\": \"gatsby\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4f23c06cd1740bf78304d2c0b29bf6bfdf427981\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/4f23c06cd1740bf78304d2c0b29bf6bfdf427981\"\n },\n {\n \"path\": \"jest\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\"\n },\n {\n \"path\": \"netlify.toml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"599b99cc5700404fde316a7ede829776f23e7d45\",\n \"size\": 137,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/599b99cc5700404fde316a7ede829776f23e7d45\"\n },\n {\n \"path\": \"package.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9d777616438b90a18f1a4ebfd5f114b4c06c6f17\",\n \"size\": 6855,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/9d777616438b90a18f1a4ebfd5f114b4c06c6f17\"\n },\n {\n \"path\": \"postcss-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d216501e9b351a72e00ba0b7459a6500e27e7da2\",\n \"size\": 703,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/d216501e9b351a72e00ba0b7459a6500e27e7da2\"\n },\n {\n \"path\": \"renovate.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"dcc309398785698b8870545c32051a3d72dd8271\",\n \"size\": 460,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/dcc309398785698b8870545c32051a3d72dd8271\"\n },\n {\n \"path\": \"serverless-scripts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ee3701f2fbfc7196ba340f6481d1387d20527898\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/ee3701f2fbfc7196ba340f6481d1387d20527898\"\n },\n {\n \"path\": \"serverless-single-page-app-plugin\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"08763fcfba643a06a452398517019bea4a5850ba\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/08763fcfba643a06a452398517019bea4a5850ba\"\n },\n {\n \"path\": \"serverless.yml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"20b22c5fad229f35d029bf6614d333d82fe8a987\",\n \"size\": 7803,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/20b22c5fad229f35d029bf6614d333d82fe8a987\"\n },\n {\n \"path\": \"src\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"8cdb35a88232c0f32f12f130c92c7cc55f97f471\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/8cdb35a88232c0f32f12f130c92c7cc55f97f471\"\n },\n {\n \"path\": \"static\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"53c6380a600a030d3722bff7ecde36f749fb6964\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/53c6380a600a030d3722bff7ecde36f749fb6964\"\n },\n {\n \"path\": \"utils\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"a592549c9f74db40b51efefcda2fd76810405f27\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/a592549c9f74db40b51efefcda2fd76810405f27\"\n },\n {\n \"path\": \"yarn.lock\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"475c9c1924ca752a0686303e2fdeb7b13ad75f57\",\n \"size\": 793903,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/475c9c1924ca752a0686303e2fdeb7b13ad75f57\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"message\":\"Create Post “1970-01-01-first-title”\",\"tree\":\"daee8d5d15d144e8779955166a2afeccde2770e1\",\"parents\":[\"726172deae99c8a2cea4c71e734a02a793d4d9e5\"]}", + "method": "POST", + "url": "/repos/forkOwner/repo/git/commits?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:58:50 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "1565", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4721", + "X-RateLimit-Reset": "1568127500", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"256dfb0325acee62435d1e2d40b85e65\"", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/forkOwner/repo/git/commits/9c648b7438595ffcadde2af9e03f651774c9bbb7", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BB2:3ED7B:127D72C:1675F4C:5D77AC19", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"9c648b7438595ffcadde2af9e03f651774c9bbb7\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NTc0MDQ5OjljNjQ4Yjc0Mzg1OTVmZmNhZGRlMmFmOWUwM2Y2NTE3NzRjOWJiYjc=\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/9c648b7438595ffcadde2af9e03f651774c9bbb7\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/9c648b7438595ffcadde2af9e03f651774c9bbb7\",\n \"author\": {\n \"name\": \"forkOwner\",\n \"email\": \"53494188+forkOwner@users.noreply.github.com\",\n \"date\": \"2019-09-10T13:58:50Z\"\n },\n \"committer\": {\n \"name\": \"forkOwner\",\n \"email\": \"53494188+forkOwner@users.noreply.github.com\",\n \"date\": \"2019-09-10T13:58:50Z\"\n },\n \"tree\": {\n \"sha\": \"daee8d5d15d144e8779955166a2afeccde2770e1\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/daee8d5d15d144e8779955166a2afeccde2770e1\"\n },\n \"message\": \"Create Post “1970-01-01-first-title”\",\n \"parents\": [\n {\n \"sha\": \"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/726172deae99c8a2cea4c71e734a02a793d4d9e5\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "status": 201 + }, + { + "body": "{\"ref\":\"refs/heads/cms/forkOwner/repo/posts/1970-01-01-first-title\",\"sha\":\"9c648b7438595ffcadde2af9e03f651774c9bbb7\"}", + "method": "POST", + "url": "/repos/forkOwner/repo/git/refs?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:58:51 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "764", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4720", + "X-RateLimit-Reset": "1568127500", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"b7218a234a9c21ecc1238bfe7c748488\"", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "Location": "https://api.github.com/repos/forkOwner/repo/git/refs/heads/cms/forkOwner/repo/posts/1970-01-01-first-title", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BB5:9D1E:4BE768:5CE33A:5D77AC1A", + "connection": "keep-alive" + }, + "response": "{\n \"ref\": \"refs/heads/cms/forkOwner/repo/posts/1970-01-01-first-title\",\n \"node_id\": \"MDM6UmVmMjA3NTc0MDQ5OmNtcy9lcmV6cm9rYWgtdGVzdC9nYXRzYnktbmV0bGlmeS1jbXMtYXdzLTE1NjgxMjM1NzQwNTEtZWRhNWpwYjFkN28vcG9zdHMvMTk3MC0wMS0wMS1maXJzdC10aXRsZQ==\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/refs/heads/cms/forkOwner/repo/posts/1970-01-01-first-title\",\n \"object\": {\n \"sha\": \"9c648b7438595ffcadde2af9e03f651774c9bbb7\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/9c648b7438595ffcadde2af9e03f651774c9bbb7\"\n }\n}\n", + "status": 201 + }, + { + "method": "GET", + "url": "/repos/forkOwner/repo/git/refs/meta/_netlify_cms?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:58:51 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4719", + "X-RateLimit-Reset": "1568127500", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"aca23a8a4dc31c8853f057f6b26df188\"", + "Last-Modified": "Tue, 10 Sep 2019 13:56:30 GMT", + "X-Poll-Interval": "300", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BB6:244E7:11BCEC4:15A5EAB:5D77AC1B", + "content-length": "494", + "connection": "keep-alive" + }, + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NTc0MDQ5OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"77e5ce8a8cc00486eb3582f5d5b2ebbcfcbaf5a5\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/77e5ce8a8cc00486eb3582f5d5b2ebbcfcbaf5a5\"\n }\n}\n", + "status": 200 + }, + { + "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJ1c2VyIjoiZm9ya093bmVyIiwic3RhdHVzIjoiZHJhZnQiLCJicmFuY2giOiJjbXMvZm9ya093bmVyL3JlcG8vcG9zdHMvMTk3MC0wMS0wMS1maXJzdC10aXRsZSIsImNvbGxlY3Rpb24iOiJwb3N0cyIsImNvbW1pdE1lc3NhZ2UiOiJDcmVhdGUgUG9zdCDigJwxOTcwLTAxLTAxLWZpcnN0LXRpdGxl4oCdIiwidGl0bGUiOiJmaXJzdCB0aXRsZSIsImRlc2NyaXB0aW9uIjoiZmlyc3QgZGVzY3JpcHRpb24iLCJvYmplY3RzIjp7ImVudHJ5Ijp7InBhdGgiOiJjb250ZW50L3Bvc3RzLzE5NzAtMDEtMDEtZmlyc3QtdGl0bGUubWQiLCJzaGEiOiJhMDQxMjQ1ODE0ODkyZTNmNzNmNjNjYTU0MzMzZmRhNjQ5YjdmYzBiIn0sImZpbGVzIjpbXX0sInRpbWVTdGFtcCI6IjE5NzAtMDEtMDFUMDA6MDA6MDAuMzAwWiJ9\",\"encoding\":\"base64\"}", + "method": "POST", + "url": "/repos/forkOwner/repo/git/blobs?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:58:52 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "212", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4718", + "X-RateLimit-Reset": "1568127500", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"1c80b93e938233b53de969f9edee439f\"", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/forkOwner/repo/git/blobs/82976a6de475d051a4819a4a72f8c983d062263f", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BB8:244E4:AFF90A:D5418C:5D77AC1C", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"82976a6de475d051a4819a4a72f8c983d062263f\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/82976a6de475d051a4819a4a72f8c983d062263f\"\n}\n", + "status": 201 + }, + { + "method": "GET", + "url": "/repos/forkOwner/repo/git/trees/77e5ce8a8cc00486eb3582f5d5b2ebbcfcbaf5a5?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:58:53 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4717", + "X-RateLimit-Reset": "1568127500", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"2e967dba505b8be165f360748a705887\"", + "Last-Modified": "Tue, 10 Sep 2019 13:56:30 GMT", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BBA:B4E0:16D7568:1BCD6E6:5D77AC1C", + "content-length": "878", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"77e5ce8a8cc00486eb3582f5d5b2ebbcfcbaf5a5\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/77e5ce8a8cc00486eb3582f5d5b2ebbcfcbaf5a5\",\n \"tree\": [\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n },\n {\n \"path\": \"forkOwner\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"f2b6be6cd5f4514b035e9cb00badad1e6b763cc5\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/f2b6be6cd5f4514b035e9cb00badad1e6b763cc5\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 200 + }, + { + "body": "{\"base_tree\":\"77e5ce8a8cc00486eb3582f5d5b2ebbcfcbaf5a5\",\"tree\":[{\"path\":\"forkOwner/repo/posts/1970-01-01-first-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"82976a6de475d051a4819a4a72f8c983d062263f\"}]}", + "method": "POST", + "url": "/repos/forkOwner/repo/git/trees?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:58:53 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "878", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4716", + "X-RateLimit-Reset": "1568127500", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"f84e48cd87adfda33063948f8f88b32d\"", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/forkOwner/repo/git/trees/b1fea30f625f7ed258f441a52a8ad2283090a7a5", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BBC:2B24:17EABC8:1D13932:5D77AC1D", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"b1fea30f625f7ed258f441a52a8ad2283090a7a5\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/b1fea30f625f7ed258f441a52a8ad2283090a7a5\",\n \"tree\": [\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n },\n {\n \"path\": \"forkOwner\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"f2b6be6cd5f4514b035e9cb00badad1e6b763cc5\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/f2b6be6cd5f4514b035e9cb00badad1e6b763cc5\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"message\":\"Updating “forkOwner/repo/posts/1970-01-01-first-title” metadata\",\"tree\":\"b1fea30f625f7ed258f441a52a8ad2283090a7a5\",\"parents\":[\"77e5ce8a8cc00486eb3582f5d5b2ebbcfcbaf5a5\"]}", + "method": "POST", + "url": "/repos/forkOwner/repo/git/commits?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:58:54 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "1641", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4715", + "X-RateLimit-Reset": "1568127500", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"6513a50f46dc2927e8dcd4de349f65e4\"", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/forkOwner/repo/git/commits/3eb8eecc05e4b1fe2966e93c635cd7ef52431d3a", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BBE:1510F:124B654:16347CE:5D77AC1E", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"3eb8eecc05e4b1fe2966e93c635cd7ef52431d3a\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NTc0MDQ5OjNlYjhlZWNjMDVlNGIxZmUyOTY2ZTkzYzYzNWNkN2VmNTI0MzFkM2E=\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/3eb8eecc05e4b1fe2966e93c635cd7ef52431d3a\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/3eb8eecc05e4b1fe2966e93c635cd7ef52431d3a\",\n \"author\": {\n \"name\": \"forkOwner\",\n \"email\": \"53494188+forkOwner@users.noreply.github.com\",\n \"date\": \"2019-09-10T13:58:54Z\"\n },\n \"committer\": {\n \"name\": \"forkOwner\",\n \"email\": \"53494188+forkOwner@users.noreply.github.com\",\n \"date\": \"2019-09-10T13:58:54Z\"\n },\n \"tree\": {\n \"sha\": \"b1fea30f625f7ed258f441a52a8ad2283090a7a5\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/b1fea30f625f7ed258f441a52a8ad2283090a7a5\"\n },\n \"message\": \"Updating “forkOwner/repo/posts/1970-01-01-first-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"77e5ce8a8cc00486eb3582f5d5b2ebbcfcbaf5a5\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/77e5ce8a8cc00486eb3582f5d5b2ebbcfcbaf5a5\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/77e5ce8a8cc00486eb3582f5d5b2ebbcfcbaf5a5\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "status": 201 + }, + { + "body": "{\"sha\":\"3eb8eecc05e4b1fe2966e93c635cd7ef52431d3a\",\"force\":false}", + "method": "PATCH", + "url": "/repos/forkOwner/repo/git/refs/meta/_netlify_cms?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:58:55 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4714", + "X-RateLimit-Reset": "1568127500", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"173523cd3d89f601dc6a9cbb5ed6ae7f\"", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BC0:1510E:AD5AF9:D33DCC:5D77AC1E", + "content-length": "494", + "connection": "keep-alive" + }, + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NTc0MDQ5OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"3eb8eecc05e4b1fe2966e93c635cd7ef52431d3a\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/3eb8eecc05e4b1fe2966e93c635cd7ef52431d3a\"\n }\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/forkOwner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=cms/forkOwner/repo/posts/1970-01-01-first-title", + "headers": { + "Date": "Tue, 10 Sep 2019 13:58:56 GMT", + "Content-Type": "application/vnd.github.VERSION.raw; charset=utf-8", + "Content-Length": "167", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4713", + "X-RateLimit-Reset": "1568127500", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"a041245814892e3f73f63ca54333fda649b7fc0b\"", + "Last-Modified": "Tue, 10 Sep 2019 13:58:50 GMT", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BC2:B4DE:120BA78:15F82CE:5D77AC20", + "connection": "keep-alive" + }, + "response": "---\ntemplate: post\ntitle: first title\ndraft: true\ndate: 1970-01-01T00:00:00.000Z\ndescription: first description\ncategory: first category\ntags:\n - tag1\n---\nfirst body\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=master", + "headers": { + "Date": "Tue, 10 Sep 2019 13:58:56 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "404 Not Found", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4712", + "X-RateLimit-Reset": "1568127500", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BC4:9D1E:4BE98A:5CE5F1:5D77AC20", + "content-length": "116", + "connection": "keep-alive" + }, + "response": "{\n \"message\": \"Not Found\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/#get-contents\"\n}\n", + "status": 404 + }, + { + "method": "GET", + "url": "/repos/forkOwner/repo/git/refs/heads/cms?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:58:58 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4711", + "X-RateLimit-Reset": "1568127500", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"bee44dd1e05a823e19670c5a8efc830f\"", + "Last-Modified": "Tue, 10 Sep 2019 13:56:30 GMT", + "X-Poll-Interval": "300", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BC9:B4E0:16D7C82:1BCDFA1:5D77AC21", + "content-length": "788", + "connection": "keep-alive" + }, + "response": "[\n {\n \"ref\": \"refs/heads/cms/forkOwner/repo/posts/1970-01-01-first-title\",\n \"node_id\": \"MDM6UmVmMjA3NTc0MDQ5OmNtcy9lcmV6cm9rYWgtdGVzdC9nYXRzYnktbmV0bGlmeS1jbXMtYXdzLTE1NjgxMjM1NzQwNTEtZWRhNWpwYjFkN28vcG9zdHMvMTk3MC0wMS0wMS1maXJzdC10aXRsZQ==\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/refs/heads/cms/forkOwner/repo/posts/1970-01-01-first-title\",\n \"object\": {\n \"sha\": \"9c648b7438595ffcadde2af9e03f651774c9bbb7\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/9c648b7438595ffcadde2af9e03f651774c9bbb7\"\n }\n }\n]\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=master", + "headers": { + "Date": "Tue, 10 Sep 2019 13:58:58 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "404 Not Found", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4710", + "X-RateLimit-Reset": "1568127500", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BCB:3ED7B:127E256:1676D5D:5D77AC22", + "content-length": "116", + "connection": "keep-alive" + }, + "response": "{\n \"message\": \"Not Found\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/#get-contents\"\n}\n", + "status": 404 + }, + { + "method": "GET", + "url": "/repos/forkOwner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=cms/forkOwner/repo/posts/1970-01-01-first-title", + "headers": { + "Date": "Tue, 10 Sep 2019 13:58:58 GMT", + "Content-Type": "application/vnd.github.VERSION.raw; charset=utf-8", + "Content-Length": "167", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4709", + "X-RateLimit-Reset": "1568127500", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"a041245814892e3f73f63ca54333fda649b7fc0b\"", + "Last-Modified": "Tue, 10 Sep 2019 13:58:50 GMT", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BCA:2B15:4EA876:5F7861:5D77AC22", + "connection": "keep-alive" + }, + "response": "---\ntemplate: post\ntitle: first title\ndraft: true\ndate: 1970-01-01T00:00:00.000Z\ndescription: first description\ncategory: first category\ntags:\n - tag1\n---\nfirst body\n", + "status": 200 + }, + { + "body": "{\"title\":\"Create Post “1970-01-01-first-title”\",\"body\":\"Automatically generated by Netlify CMS\",\"head\":\"forkOwner:cms/forkOwner/repo/posts/1970-01-01-first-title\",\"base\":\"master\"}", + "method": "POST", + "url": "/repos/owner/repo/pulls?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:59:00 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "22245", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4708", + "X-RateLimit-Reset": "1568127500", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"5b0bb59fef0f623c8fd6e627c0422a46\"", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/pulls/5", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BCD:B4E0:16D7F2A:1BCE2FE:5D77AC23", + "connection": "keep-alive" + }, + "response": "{\n \"url\": \"https://api.github.com/repos/owner/repo/pulls/5\",\n \"id\": 316009374,\n \"node_id\": \"MDExOlB1bGxSZXF1ZXN0MzE2MDA5Mzc0\",\n \"html_url\": \"https://github.com/owner/repo/pull/5\",\n \"diff_url\": \"https://github.com/owner/repo/pull/5.diff\",\n \"patch_url\": \"https://github.com/owner/repo/pull/5.patch\",\n \"issue_url\": \"https://api.github.com/repos/owner/repo/issues/5\",\n \"number\": 5,\n \"state\": \"open\",\n \"locked\": false,\n \"title\": \"Create Post “1970-01-01-first-title”\",\n \"user\": {\n \"login\": \"forkOwner\",\n \"id\": 53494188,\n \"node_id\": \"MDQ6VXNlcjUzNDk0MTg4\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/forkOwner\",\n \"html_url\": \"https://github.com/forkOwner\",\n \"followers_url\": \"https://api.github.com/users/forkOwner/followers\",\n \"following_url\": \"https://api.github.com/users/forkOwner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/forkOwner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/forkOwner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/forkOwner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/forkOwner/orgs\",\n \"repos_url\": \"https://api.github.com/users/forkOwner/repos\",\n \"events_url\": \"https://api.github.com/users/forkOwner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/forkOwner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Automatically generated by Netlify CMS\",\n \"created_at\": \"2019-09-10T13:59:00Z\",\n \"updated_at\": \"2019-09-10T13:59:00Z\",\n \"closed_at\": null,\n \"merged_at\": null,\n \"merge_commit_sha\": null,\n \"assignee\": null,\n \"assignees\": [\n\n ],\n \"requested_reviewers\": [\n\n ],\n \"requested_teams\": [\n\n ],\n \"labels\": [\n\n ],\n \"milestone\": null,\n \"commits_url\": \"https://api.github.com/repos/owner/repo/pulls/5/commits\",\n \"review_comments_url\": \"https://api.github.com/repos/owner/repo/pulls/5/comments\",\n \"review_comment_url\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/issues/5/comments\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/9c648b7438595ffcadde2af9e03f651774c9bbb7\",\n \"head\": {\n \"label\": \"forkOwner:cms/forkOwner/repo/posts/1970-01-01-first-title\",\n \"ref\": \"cms/forkOwner/repo/posts/1970-01-01-first-title\",\n \"sha\": \"9c648b7438595ffcadde2af9e03f651774c9bbb7\",\n \"user\": {\n \"login\": \"forkOwner\",\n \"id\": 53494188,\n \"node_id\": \"MDQ6VXNlcjUzNDk0MTg4\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/forkOwner\",\n \"html_url\": \"https://github.com/forkOwner\",\n \"followers_url\": \"https://api.github.com/users/forkOwner/followers\",\n \"following_url\": \"https://api.github.com/users/forkOwner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/forkOwner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/forkOwner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/forkOwner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/forkOwner/orgs\",\n \"repos_url\": \"https://api.github.com/users/forkOwner/repos\",\n \"events_url\": \"https://api.github.com/users/forkOwner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/forkOwner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 207574049,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NzQwNDk=\",\n \"name\": \"repo\",\n \"full_name\": \"forkOwner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"forkOwner\",\n \"id\": 53494188,\n \"node_id\": \"MDQ6VXNlcjUzNDk0MTg4\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/forkOwner\",\n \"html_url\": \"https://github.com/forkOwner\",\n \"followers_url\": \"https://api.github.com/users/forkOwner/followers\",\n \"following_url\": \"https://api.github.com/users/forkOwner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/forkOwner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/forkOwner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/forkOwner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/forkOwner/orgs\",\n \"repos_url\": \"https://api.github.com/users/forkOwner/repos\",\n \"events_url\": \"https://api.github.com/users/forkOwner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/forkOwner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/forkOwner/repo\",\n \"description\": null,\n \"fork\": true,\n \"url\": \"https://api.github.com/repos/forkOwner/repo\",\n \"forks_url\": \"https://api.github.com/repos/forkOwner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/forkOwner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/forkOwner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/forkOwner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/forkOwner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/forkOwner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/forkOwner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/forkOwner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/forkOwner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/forkOwner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/forkOwner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/forkOwner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/forkOwner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/forkOwner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/forkOwner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/forkOwner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/forkOwner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/forkOwner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/forkOwner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/forkOwner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/forkOwner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/forkOwner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/forkOwner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/forkOwner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/forkOwner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/forkOwner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/forkOwner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/forkOwner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/forkOwner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/forkOwner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/forkOwner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/forkOwner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/forkOwner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/forkOwner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/forkOwner/repo/deployments\",\n \"created_at\": \"2019-09-10T13:56:28Z\",\n \"updated_at\": \"2019-09-10T13:56:30Z\",\n \"pushed_at\": \"2019-09-10T13:58:55Z\",\n \"git_url\": \"git://github.com/forkOwner/repo.git\",\n \"ssh_url\": \"git@github.com:forkOwner/repo.git\",\n \"clone_url\": \"https://github.com/forkOwner/repo.git\",\n \"svn_url\": \"https://github.com/forkOwner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": null,\n \"has_issues\": false,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"base\": {\n \"label\": \"owner:master\",\n \"ref\": \"master\",\n \"sha\": \"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 207573159,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NzMxNTk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-10T13:52:54Z\",\n \"updated_at\": \"2019-09-10T13:56:22Z\",\n \"pushed_at\": \"2019-09-10T13:58:17Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 1,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 1,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/5\"\n },\n \"html\": {\n \"href\": \"https://github.com/owner/repo/pull/5\"\n },\n \"issue\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/5\"\n },\n \"comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/5/comments\"\n },\n \"review_comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/5/comments\"\n },\n \"review_comment\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\"\n },\n \"commits\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/5/commits\"\n },\n \"statuses\": {\n \"href\": \"https://api.github.com/repos/owner/repo/statuses/9c648b7438595ffcadde2af9e03f651774c9bbb7\"\n }\n },\n \"author_association\": \"NONE\",\n \"merged\": false,\n \"mergeable\": null,\n \"rebaseable\": null,\n \"mergeable_state\": \"unknown\",\n \"merged_by\": null,\n \"comments\": 0,\n \"review_comments\": 0,\n \"maintainer_can_modify\": true,\n \"commits\": 1,\n \"additions\": 11,\n \"deletions\": 0,\n \"changed_files\": 1\n}\n", + "status": 201 + }, + { + "method": "GET", + "url": "/repos/forkOwner/repo/git/refs/meta/_netlify_cms?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:59:01 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4707", + "X-RateLimit-Reset": "1568127500", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"173523cd3d89f601dc6a9cbb5ed6ae7f\"", + "Last-Modified": "Tue, 10 Sep 2019 13:56:30 GMT", + "X-Poll-Interval": "300", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BCE:1510B:6E8A6:890E7:5D77AC25", + "content-length": "494", + "connection": "keep-alive" + }, + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NTc0MDQ5OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"3eb8eecc05e4b1fe2966e93c635cd7ef52431d3a\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/3eb8eecc05e4b1fe2966e93c635cd7ef52431d3a\"\n }\n}\n", + "status": 200 + }, + { + "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjUsImhlYWQiOnsibGFiZWwiOiJmb3JrT3duZXI6Y21zL2ZvcmtPd25lci9yZXBvL3Bvc3RzLzE5NzAtMDEtMDEtZmlyc3QtdGl0bGUiLCJyZWYiOiJjbXMvZm9ya093bmVyL3JlcG8vcG9zdHMvMTk3MC0wMS0wMS1maXJzdC10aXRsZSIsInNoYSI6IjljNjQ4Yjc0Mzg1OTVmZmNhZGRlMmFmOWUwM2Y2NTE3NzRjOWJiYjciLCJ1c2VyIjp7ImxvZ2luIjoiZm9ya093bmVyIiwiaWQiOjUzNDk0MTg4LCJub2RlX2lkIjoiTURRNlZYTmxjalV6TkRrME1UZzQiLCJhdmF0YXJfdXJsIjoiaHR0cHM6Ly9hdmF0YXJzMS5naXRodWJ1c2VyY29udGVudC5jb20vdS83ODkyNDg5P3Y9NCIsImdyYXZhdGFyX2lkIjoiIiwidXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS91c2Vycy9mb3JrT3duZXIiLCJodG1sX3VybCI6Imh0dHBzOi8vZ2l0aHViLmNvbS9mb3JrT3duZXIiLCJmb2xsb3dlcnNfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS91c2Vycy9mb3JrT3duZXIvZm9sbG93ZXJzIiwiZm9sbG93aW5nX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vdXNlcnMvZm9ya093bmVyL2ZvbGxvd2luZ3svb3RoZXJfdXNlcn0iLCJnaXN0c191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3VzZXJzL2ZvcmtPd25lci9naXN0c3svZ2lzdF9pZH0iLCJzdGFycmVkX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vdXNlcnMvZm9ya093bmVyL3N0YXJyZWR7L293bmVyfXsvcmVwb30iLCJzdWJzY3JpcHRpb25zX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vdXNlcnMvZm9ya093bmVyL3N1YnNjcmlwdGlvbnMiLCJvcmdhbml6YXRpb25zX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vdXNlcnMvZm9ya093bmVyL29yZ3MiLCJyZXBvc191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3VzZXJzL2ZvcmtPd25lci9yZXBvcyIsImV2ZW50c191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3VzZXJzL2ZvcmtPd25lci9ldmVudHN7L3ByaXZhY3l9IiwicmVjZWl2ZWRfZXZlbnRzX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vdXNlcnMvZm9ya093bmVyL3JlY2VpdmVkX2V2ZW50cyIsInR5cGUiOiJVc2VyIiwic2l0ZV9hZG1pbiI6ZmFsc2V9LCJyZXBvIjp7ImlkIjoyMDc1NzQwNDksIm5vZGVfaWQiOiJNREV3T2xKbGNHOXphWFJ2Y25reU1EYzFOelF3TkRrPSIsIm5hbWUiOiJyZXBvIiwiZnVsbF9uYW1lIjoiZm9ya093bmVyL3JlcG8iLCJwcml2YXRlIjpmYWxzZSwib3duZXIiOnsibG9naW4iOiJmb3JrT3duZXIiLCJpZCI6NTM0OTQxODgsIm5vZGVfaWQiOiJNRFE2VlhObGNqVXpORGswTVRnNCIsImF2YXRhcl91cmwiOiJodHRwczovL2F2YXRhcnMxLmdpdGh1YnVzZXJjb250ZW50LmNvbS91Lzc4OTI0ODk/dj00IiwiZ3JhdmF0YXJfaWQiOiIiLCJ1cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3VzZXJzL2ZvcmtPd25lciIsImh0bWxfdXJsIjoiaHR0cHM6Ly9naXRodWIuY29tL2ZvcmtPd25lciIsImZvbGxvd2Vyc191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3VzZXJzL2ZvcmtPd25lci9mb2xsb3dlcnMiLCJmb2xsb3dpbmdfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS91c2Vycy9mb3JrT3duZXIvZm9sbG93aW5ney9vdGhlcl91c2VyfSIsImdpc3RzX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vdXNlcnMvZm9ya093bmVyL2dpc3Rzey9naXN0X2lkfSIsInN0YXJyZWRfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS91c2Vycy9mb3JrT3duZXIvc3RhcnJlZHsvb3duZXJ9ey9yZXBvfSIsInN1YnNjcmlwdGlvbnNfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS91c2Vycy9mb3JrT3duZXIvc3Vic2NyaXB0aW9ucyIsIm9yZ2FuaXphdGlvbnNfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS91c2Vycy9mb3JrT3duZXIvb3JncyIsInJlcG9zX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vdXNlcnMvZm9ya093bmVyL3JlcG9zIiwiZXZlbnRzX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vdXNlcnMvZm9ya093bmVyL2V2ZW50c3svcHJpdmFjeX0iLCJyZWNlaXZlZF9ldmVudHNfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS91c2Vycy9mb3JrT3duZXIvcmVjZWl2ZWRfZXZlbnRzIiwidHlwZSI6IlVzZXIiLCJzaXRlX2FkbWluIjpmYWxzZX0sImh0bWxfdXJsIjoiaHR0cHM6Ly9naXRodWIuY29tL2ZvcmtPd25lci9yZXBvIiwiZGVzY3JpcHRpb24iOm51bGwsImZvcmsiOnRydWUsInVybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vcmVwb3MvZm9ya093bmVyL3JlcG8iLCJmb3Jrc191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL2ZvcmtzIiwia2V5c191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL2tleXN7L2tleV9pZH0iLCJjb2xsYWJvcmF0b3JzX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vcmVwb3MvZm9ya093bmVyL3JlcG8vY29sbGFib3JhdG9yc3svY29sbGFib3JhdG9yfSIsInRlYW1zX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vcmVwb3MvZm9ya093bmVyL3JlcG8vdGVhbXMiLCJob29rc191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL2hvb2tzIiwiaXNzdWVfZXZlbnRzX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vcmVwb3MvZm9ya093bmVyL3JlcG8vaXNzdWVzL2V2ZW50c3svbnVtYmVyfSIsImV2ZW50c191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL2V2ZW50cyIsImFzc2lnbmVlc191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL2Fzc2lnbmVlc3svdXNlcn0iLCJicmFuY2hlc191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL2JyYW5jaGVzey9icmFuY2h9IiwidGFnc191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL3RhZ3MiLCJibG9ic191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL2dpdC9ibG9ic3svc2hhfSIsImdpdF90YWdzX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vcmVwb3MvZm9ya093bmVyL3JlcG8vZ2l0L3RhZ3N7L3NoYX0iLCJnaXRfcmVmc191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL2dpdC9yZWZzey9zaGF9IiwidHJlZXNfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS9yZXBvcy9mb3JrT3duZXIvcmVwby9naXQvdHJlZXN7L3NoYX0iLCJzdGF0dXNlc191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL3N0YXR1c2VzL3tzaGF9IiwibGFuZ3VhZ2VzX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vcmVwb3MvZm9ya093bmVyL3JlcG8vbGFuZ3VhZ2VzIiwic3RhcmdhemVyc191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL3N0YXJnYXplcnMiLCJjb250cmlidXRvcnNfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS9yZXBvcy9mb3JrT3duZXIvcmVwby9jb250cmlidXRvcnMiLCJzdWJzY3JpYmVyc191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL3N1YnNjcmliZXJzIiwic3Vic2NyaXB0aW9uX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vcmVwb3MvZm9ya093bmVyL3JlcG8vc3Vic2NyaXB0aW9uIiwiY29tbWl0c191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL2NvbW1pdHN7L3NoYX0iLCJnaXRfY29tbWl0c191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL2dpdC9jb21taXRzey9zaGF9IiwiY29tbWVudHNfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS9yZXBvcy9mb3JrT3duZXIvcmVwby9jb21tZW50c3svbnVtYmVyfSIsImlzc3VlX2NvbW1lbnRfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS9yZXBvcy9mb3JrT3duZXIvcmVwby9pc3N1ZXMvY29tbWVudHN7L251bWJlcn0iLCJjb250ZW50c191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL2NvbnRlbnRzL3srcGF0aH0iLCJjb21wYXJlX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vcmVwb3MvZm9ya093bmVyL3JlcG8vY29tcGFyZS97YmFzZX0uLi57aGVhZH0iLCJtZXJnZXNfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS9yZXBvcy9mb3JrT3duZXIvcmVwby9tZXJnZXMiLCJhcmNoaXZlX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vcmVwb3MvZm9ya093bmVyL3JlcG8ve2FyY2hpdmVfZm9ybWF0fXsvcmVmfSIsImRvd25sb2Fkc191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL2Rvd25sb2FkcyIsImlzc3Vlc191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL2lzc3Vlc3svbnVtYmVyfSIsInB1bGxzX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vcmVwb3MvZm9ya093bmVyL3JlcG8vcHVsbHN7L251bWJlcn0iLCJtaWxlc3RvbmVzX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vcmVwb3MvZm9ya093bmVyL3JlcG8vbWlsZXN0b25lc3svbnVtYmVyfSIsIm5vdGlmaWNhdGlvbnNfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS9yZXBvcy9mb3JrT3duZXIvcmVwby9ub3RpZmljYXRpb25zez9zaW5jZSxhbGwscGFydGljaXBhdGluZ30iLCJsYWJlbHNfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS9yZXBvcy9mb3JrT3duZXIvcmVwby9sYWJlbHN7L25hbWV9IiwicmVsZWFzZXNfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS9yZXBvcy9mb3JrT3duZXIvcmVwby9yZWxlYXNlc3svaWR9IiwiZGVwbG95bWVudHNfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS9yZXBvcy9mb3JrT3duZXIvcmVwby9kZXBsb3ltZW50cyIsImNyZWF0ZWRfYXQiOiIyMDE5LTA5LTEwVDEzOjU2OjI4WiIsInVwZGF0ZWRfYXQiOiIyMDE5LTA5LTEwVDEzOjU2OjMwWiIsInB1c2hlZF9hdCI6IjIwMTktMDktMTBUMTM6NTg6NTVaIiwiZ2l0X3VybCI6ImdpdDovL2dpdGh1Yi5jb20vZm9ya093bmVyL3JlcG8uZ2l0Iiwic3NoX3VybCI6ImdpdEBnaXRodWIuY29tOmZvcmtPd25lci9yZXBvLmdpdCIsImNsb25lX3VybCI6Imh0dHBzOi8vZ2l0aHViLmNvbS9mb3JrT3duZXIvcmVwby5naXQiLCJzdm5fdXJsIjoiaHR0cHM6Ly9naXRodWIuY29tL2ZvcmtPd25lci9yZXBvIiwiaG9tZXBhZ2UiOm51bGwsInNpemUiOjAsInN0YXJnYXplcnNfY291bnQiOjAsIndhdGNoZXJzX2NvdW50IjowLCJsYW5ndWFnZSI6bnVsbCwiaGFzX2lzc3VlcyI6ZmFsc2UsImhhc19wcm9qZWN0cyI6dHJ1ZSwiaGFzX2Rvd25sb2FkcyI6dHJ1ZSwiaGFzX3dpa2kiOnRydWUsImhhc19wYWdlcyI6ZmFsc2UsImZvcmtzX2NvdW50IjowLCJtaXJyb3JfdXJsIjpudWxsLCJhcmNoaXZlZCI6ZmFsc2UsImRpc2FibGVkIjpmYWxzZSwib3Blbl9pc3N1ZXNfY291bnQiOjAsImxpY2Vuc2UiOnsia2V5IjoibWl0IiwibmFtZSI6Ik1JVCBMaWNlbnNlIiwic3BkeF9pZCI6Ik1JVCIsInVybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vbGljZW5zZXMvbWl0Iiwibm9kZV9pZCI6Ik1EYzZUR2xqWlc1elpURXoifSwiZm9ya3MiOjAsIm9wZW5faXNzdWVzIjowLCJ3YXRjaGVycyI6MCwiZGVmYXVsdF9icmFuY2giOiJtYXN0ZXIifX19LCJ1c2VyIjoiZm9ya093bmVyIiwic3RhdHVzIjoicGVuZGluZ19yZXZpZXciLCJicmFuY2giOiJjbXMvZm9ya093bmVyL3JlcG8vcG9zdHMvMTk3MC0wMS0wMS1maXJzdC10aXRsZSIsImNvbGxlY3Rpb24iOiJwb3N0cyIsImNvbW1pdE1lc3NhZ2UiOiJDcmVhdGUgUG9zdCDigJwxOTcwLTAxLTAxLWZpcnN0LXRpdGxl4oCdIiwidGl0bGUiOiJmaXJzdCB0aXRsZSIsImRlc2NyaXB0aW9uIjoiZmlyc3QgZGVzY3JpcHRpb24iLCJvYmplY3RzIjp7ImVudHJ5Ijp7InBhdGgiOiJjb250ZW50L3Bvc3RzLzE5NzAtMDEtMDEtZmlyc3QtdGl0bGUubWQiLCJzaGEiOiJhMDQxMjQ1ODE0ODkyZTNmNzNmNjNjYTU0MzMzZmRhNjQ5YjdmYzBiIn0sImZpbGVzIjpbXX0sInRpbWVTdGFtcCI6IjE5NzAtMDEtMDFUMDA6MDA6MDAuMzAwWiJ9\",\"encoding\":\"base64\"}", + "method": "POST", + "url": "/repos/forkOwner/repo/git/blobs?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:59:03 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "212", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4706", + "X-RateLimit-Reset": "1568127500", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"6312aa908d5cad1fbe6bb74850f6be27\"", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/forkOwner/repo/git/blobs/6aa2459de242daebf976a6f4bdb3f53068a4ec05", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BD0:2B24:17EB980:1D14A4C:5D77AC25", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"6aa2459de242daebf976a6f4bdb3f53068a4ec05\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/6aa2459de242daebf976a6f4bdb3f53068a4ec05\"\n}\n", + "status": 201 + }, + { + "method": "GET", + "url": "/repos/forkOwner/repo/git/trees/3eb8eecc05e4b1fe2966e93c635cd7ef52431d3a?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:59:04 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4705", + "X-RateLimit-Reset": "1568127500", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"998e559f86a4ddf2d3c561fa650c51a8\"", + "Last-Modified": "Tue, 10 Sep 2019 13:56:30 GMT", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BD2:244EB:182BE5D:1D5CD3B:5D77AC28", + "content-length": "878", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"3eb8eecc05e4b1fe2966e93c635cd7ef52431d3a\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/3eb8eecc05e4b1fe2966e93c635cd7ef52431d3a\",\n \"tree\": [\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n },\n {\n \"path\": \"forkOwner\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"f2b6be6cd5f4514b035e9cb00badad1e6b763cc5\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/f2b6be6cd5f4514b035e9cb00badad1e6b763cc5\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 200 + }, + { + "body": "{\"base_tree\":\"3eb8eecc05e4b1fe2966e93c635cd7ef52431d3a\",\"tree\":[{\"path\":\"forkOwner/repo/posts/1970-01-01-first-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"6aa2459de242daebf976a6f4bdb3f53068a4ec05\"}]}", + "method": "POST", + "url": "/repos/forkOwner/repo/git/trees?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:59:05 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "878", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4704", + "X-RateLimit-Reset": "1568127500", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"000d7ab7f1fb6a9e24298251b95a07b5\"", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/forkOwner/repo/git/trees/51c18754248eddb33c38de0446246170a4db2494", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BD6:1510F:124C40C:16358DB:5D77AC29", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"51c18754248eddb33c38de0446246170a4db2494\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/51c18754248eddb33c38de0446246170a4db2494\",\n \"tree\": [\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n },\n {\n \"path\": \"forkOwner\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"e83c2fbf688c719176b6a958a6e4d36b567d2c7e\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/e83c2fbf688c719176b6a958a6e4d36b567d2c7e\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"message\":\"Updating “forkOwner/repo/posts/1970-01-01-first-title” metadata\",\"tree\":\"51c18754248eddb33c38de0446246170a4db2494\",\"parents\":[\"3eb8eecc05e4b1fe2966e93c635cd7ef52431d3a\"]}", + "method": "POST", + "url": "/repos/forkOwner/repo/git/commits?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:59:06 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "1641", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4703", + "X-RateLimit-Reset": "1568127500", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"4fded317ef342b30f14d038276a9fdde\"", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/forkOwner/repo/git/commits/454bad1fa90d83a669ff9f8a0245d71a5f0dd017", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BD8:244E7:11BE25B:15A76AC:5D77AC2A", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"454bad1fa90d83a669ff9f8a0245d71a5f0dd017\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NTc0MDQ5OjQ1NGJhZDFmYTkwZDgzYTY2OWZmOWY4YTAyNDVkNzFhNWYwZGQwMTc=\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/454bad1fa90d83a669ff9f8a0245d71a5f0dd017\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/454bad1fa90d83a669ff9f8a0245d71a5f0dd017\",\n \"author\": {\n \"name\": \"forkOwner\",\n \"email\": \"53494188+forkOwner@users.noreply.github.com\",\n \"date\": \"2019-09-10T13:59:06Z\"\n },\n \"committer\": {\n \"name\": \"forkOwner\",\n \"email\": \"53494188+forkOwner@users.noreply.github.com\",\n \"date\": \"2019-09-10T13:59:06Z\"\n },\n \"tree\": {\n \"sha\": \"51c18754248eddb33c38de0446246170a4db2494\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/51c18754248eddb33c38de0446246170a4db2494\"\n },\n \"message\": \"Updating “forkOwner/repo/posts/1970-01-01-first-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"3eb8eecc05e4b1fe2966e93c635cd7ef52431d3a\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/3eb8eecc05e4b1fe2966e93c635cd7ef52431d3a\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/3eb8eecc05e4b1fe2966e93c635cd7ef52431d3a\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "status": 201 + }, + { + "body": "{\"sha\":\"454bad1fa90d83a669ff9f8a0245d71a5f0dd017\",\"force\":false}", + "method": "PATCH", + "url": "/repos/forkOwner/repo/git/refs/meta/_netlify_cms?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:59:07 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4702", + "X-RateLimit-Reset": "1568127500", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"935ec6013edebb9966742e49280f0ca3\"", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BDA:1510F:124C6AE:1635C1A:5D77AC2A", + "content-length": "494", + "connection": "keep-alive" + }, + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NTc0MDQ5OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"454bad1fa90d83a669ff9f8a0245d71a5f0dd017\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/454bad1fa90d83a669ff9f8a0245d71a5f0dd017\"\n }\n}\n", + "status": 200 + } +] \ No newline at end of file diff --git a/cypress/fixtures/Github Backend Editorial Workflow - REST API - Open Authoring__can create an entry on fork.json b/cypress/fixtures/Github Backend Editorial Workflow - REST API - Open Authoring__can create an entry on fork.json new file mode 100644 index 00000000..17532538 --- /dev/null +++ b/cypress/fixtures/Github Backend Editorial Workflow - REST API - Open Authoring__can create an entry on fork.json @@ -0,0 +1,1207 @@ +[ + { + "method": "GET", + "url": "/user", + "headers": { + "Date": "Tue, 10 Sep 2019 13:56:43 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4793", + "X-RateLimit-Reset": "1568127381", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"306a7697fb3e2ba7e728a792014e91b8\"", + "Last-Modified": "Sun, 01 Sep 2019 18:04:11 GMT", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BF7:B4DE:12016BD:15EB829:5D77AB9A", + "content-length": "1333", + "connection": "keep-alive" + }, + "response": "{\"login\":\"forkOwner\",\"id\":2,\"avatar_url\":\"https://avatars1.githubusercontent.com/u/7892489?v=4\",\"name\":\"forkOwner\"}", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/collaborators/forkOwner/permission", + "headers": { + "Date": "Tue, 10 Sep 2019 13:56:43 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "403 Forbidden", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4792", + "X-RateLimit-Reset": "1568127381", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BF8:9D20:1160AAE:15402B3:5D77AB9B", + "content-length": "185", + "connection": "keep-alive" + }, + "response": "{\n \"message\": \"Must have push access to view collaborator permission.\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/collaborators/#review-a-users-permission-level\"\n}\n", + "status": 403 + }, + { + "method": "POST", + "url": "/repos/owner/repo/forks", + "headers": { + "Date": "Tue, 10 Sep 2019 13:56:44 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "22055", + "Server": "GitHub.com", + "Status": "202 Accepted", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4791", + "X-RateLimit-Reset": "1568127381", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BFA:1510F:12412F2:1627DAA:5D77AB9B", + "connection": "keep-alive" + }, + "response": "{\n \"id\": 207574049,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NzQwNDk=\",\n \"name\": \"repo\",\n \"full_name\": \"forkOwner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"forkOwner\",\n \"id\": 53494188,\n \"node_id\": \"MDQ6VXNlcjUzNDk0MTg4\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/forkOwner\",\n \"html_url\": \"https://github.com/forkOwner\",\n \"followers_url\": \"https://api.github.com/users/forkOwner/followers\",\n \"following_url\": \"https://api.github.com/users/forkOwner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/forkOwner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/forkOwner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/forkOwner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/forkOwner/orgs\",\n \"repos_url\": \"https://api.github.com/users/forkOwner/repos\",\n \"events_url\": \"https://api.github.com/users/forkOwner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/forkOwner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/forkOwner/repo\",\n \"description\": null,\n \"fork\": true,\n \"url\": \"https://api.github.com/repos/forkOwner/repo\",\n \"forks_url\": \"https://api.github.com/repos/forkOwner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/forkOwner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/forkOwner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/forkOwner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/forkOwner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/forkOwner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/forkOwner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/forkOwner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/forkOwner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/forkOwner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/forkOwner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/forkOwner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/forkOwner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/forkOwner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/forkOwner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/forkOwner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/forkOwner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/forkOwner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/forkOwner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/forkOwner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/forkOwner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/forkOwner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/forkOwner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/forkOwner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/forkOwner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/forkOwner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/forkOwner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/forkOwner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/forkOwner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/forkOwner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/forkOwner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/forkOwner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/forkOwner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/forkOwner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/forkOwner/repo/deployments\",\n \"created_at\": \"2019-09-10T13:56:28Z\",\n \"updated_at\": \"2019-09-10T13:56:30Z\",\n \"pushed_at\": \"2019-09-10T13:56:20Z\",\n \"git_url\": \"git://github.com/forkOwner/repo.git\",\n \"ssh_url\": \"git@github.com:forkOwner/repo.git\",\n \"clone_url\": \"https://github.com/forkOwner/repo.git\",\n \"svn_url\": \"https://github.com/forkOwner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": null,\n \"has_issues\": false,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\",\n \"permissions\": {\n \"admin\": true,\n \"push\": true,\n \"pull\": true\n },\n \"parent\": {\n \"id\": 207573159,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NzMxNTk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-10T13:52:54Z\",\n \"updated_at\": \"2019-09-10T13:56:22Z\",\n \"pushed_at\": \"2019-09-10T13:56:20Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n },\n \"source\": {\n \"id\": 207573159,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NzMxNTk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-10T13:52:54Z\",\n \"updated_at\": \"2019-09-10T13:56:22Z\",\n \"pushed_at\": \"2019-09-10T13:56:20Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n },\n \"network_count\": 1,\n \"subscribers_count\": 0\n}\n", + "status": 202 + }, + { + "method": "GET", + "url": "/repos/forkOwner/repo", + "headers": { + "Date": "Tue, 10 Sep 2019 13:56:44 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4790", + "X-RateLimit-Reset": "1568127381", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"7d98805f5327e6292352f4a83e196d5f\"", + "Last-Modified": "Tue, 10 Sep 2019 13:56:30 GMT", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BFE:1510F:12413E3:1627EC1:5D77AB9C", + "content-length": "22145", + "connection": "keep-alive" + }, + "response": "{\n \"id\": 207574049,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NzQwNDk=\",\n \"name\": \"repo\",\n \"full_name\": \"forkOwner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"forkOwner\",\n \"id\": 53494188,\n \"node_id\": \"MDQ6VXNlcjUzNDk0MTg4\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/forkOwner\",\n \"html_url\": \"https://github.com/forkOwner\",\n \"followers_url\": \"https://api.github.com/users/forkOwner/followers\",\n \"following_url\": \"https://api.github.com/users/forkOwner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/forkOwner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/forkOwner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/forkOwner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/forkOwner/orgs\",\n \"repos_url\": \"https://api.github.com/users/forkOwner/repos\",\n \"events_url\": \"https://api.github.com/users/forkOwner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/forkOwner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/forkOwner/repo\",\n \"description\": null,\n \"fork\": true,\n \"url\": \"https://api.github.com/repos/forkOwner/repo\",\n \"forks_url\": \"https://api.github.com/repos/forkOwner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/forkOwner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/forkOwner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/forkOwner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/forkOwner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/forkOwner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/forkOwner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/forkOwner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/forkOwner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/forkOwner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/forkOwner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/forkOwner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/forkOwner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/forkOwner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/forkOwner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/forkOwner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/forkOwner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/forkOwner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/forkOwner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/forkOwner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/forkOwner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/forkOwner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/forkOwner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/forkOwner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/forkOwner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/forkOwner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/forkOwner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/forkOwner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/forkOwner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/forkOwner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/forkOwner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/forkOwner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/forkOwner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/forkOwner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/forkOwner/repo/deployments\",\n \"created_at\": \"2019-09-10T13:56:28Z\",\n \"updated_at\": \"2019-09-10T13:56:30Z\",\n \"pushed_at\": \"2019-09-10T13:56:20Z\",\n \"git_url\": \"git://github.com/forkOwner/repo.git\",\n \"ssh_url\": \"git@github.com:forkOwner/repo.git\",\n \"clone_url\": \"https://github.com/forkOwner/repo.git\",\n \"svn_url\": \"https://github.com/forkOwner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": null,\n \"has_issues\": false,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\",\n \"permissions\": {\n \"admin\": true,\n \"push\": true,\n \"pull\": true\n },\n \"allow_squash_merge\": true,\n \"allow_merge_commit\": true,\n \"allow_rebase_merge\": true,\n \"parent\": {\n \"id\": 207573159,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NzMxNTk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-10T13:52:54Z\",\n \"updated_at\": \"2019-09-10T13:56:22Z\",\n \"pushed_at\": \"2019-09-10T13:56:20Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n },\n \"source\": {\n \"id\": 207573159,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NzMxNTk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-10T13:52:54Z\",\n \"updated_at\": \"2019-09-10T13:56:22Z\",\n \"pushed_at\": \"2019-09-10T13:56:20Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n },\n \"network_count\": 1,\n \"subscribers_count\": 0\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/user?ts=0", + "headers": { + "Date": "Tue, 10 Sep 2019 13:56:45 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4789", + "X-RateLimit-Reset": "1568127381", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"306a7697fb3e2ba7e728a792014e91b8\"", + "Last-Modified": "Sun, 01 Sep 2019 18:04:11 GMT", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A01:2B24:17DDA51:1D03672:5D77AB9D", + "content-length": "1333", + "connection": "keep-alive" + }, + "response": "{\"login\":\"forkOwner\",\"id\":2,\"avatar_url\":\"https://avatars1.githubusercontent.com/u/7892489?v=4\",\"name\":\"forkOwner\"}", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/forkOwner/repo?ts=0", + "headers": { + "Date": "Tue, 10 Sep 2019 13:56:46 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4788", + "X-RateLimit-Reset": "1568127381", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"7d98805f5327e6292352f4a83e196d5f\"", + "Last-Modified": "Tue, 10 Sep 2019 13:56:30 GMT", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A03:1510F:124154C:162807A:5D77AB9D", + "content-length": "22145", + "connection": "keep-alive" + }, + "response": "{\n \"id\": 207574049,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NzQwNDk=\",\n \"name\": \"repo\",\n \"full_name\": \"forkOwner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"forkOwner\",\n \"id\": 53494188,\n \"node_id\": \"MDQ6VXNlcjUzNDk0MTg4\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/forkOwner\",\n \"html_url\": \"https://github.com/forkOwner\",\n \"followers_url\": \"https://api.github.com/users/forkOwner/followers\",\n \"following_url\": \"https://api.github.com/users/forkOwner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/forkOwner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/forkOwner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/forkOwner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/forkOwner/orgs\",\n \"repos_url\": \"https://api.github.com/users/forkOwner/repos\",\n \"events_url\": \"https://api.github.com/users/forkOwner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/forkOwner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/forkOwner/repo\",\n \"description\": null,\n \"fork\": true,\n \"url\": \"https://api.github.com/repos/forkOwner/repo\",\n \"forks_url\": \"https://api.github.com/repos/forkOwner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/forkOwner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/forkOwner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/forkOwner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/forkOwner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/forkOwner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/forkOwner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/forkOwner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/forkOwner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/forkOwner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/forkOwner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/forkOwner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/forkOwner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/forkOwner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/forkOwner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/forkOwner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/forkOwner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/forkOwner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/forkOwner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/forkOwner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/forkOwner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/forkOwner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/forkOwner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/forkOwner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/forkOwner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/forkOwner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/forkOwner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/forkOwner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/forkOwner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/forkOwner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/forkOwner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/forkOwner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/forkOwner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/forkOwner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/forkOwner/repo/deployments\",\n \"created_at\": \"2019-09-10T13:56:28Z\",\n \"updated_at\": \"2019-09-10T13:56:30Z\",\n \"pushed_at\": \"2019-09-10T13:56:20Z\",\n \"git_url\": \"git://github.com/forkOwner/repo.git\",\n \"ssh_url\": \"git@github.com:forkOwner/repo.git\",\n \"clone_url\": \"https://github.com/forkOwner/repo.git\",\n \"svn_url\": \"https://github.com/forkOwner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": null,\n \"has_issues\": false,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\",\n \"permissions\": {\n \"admin\": true,\n \"push\": true,\n \"pull\": true\n },\n \"allow_squash_merge\": true,\n \"allow_merge_commit\": true,\n \"allow_rebase_merge\": true,\n \"parent\": {\n \"id\": 207573159,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NzMxNTk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-10T13:52:54Z\",\n \"updated_at\": \"2019-09-10T13:56:22Z\",\n \"pushed_at\": \"2019-09-10T13:56:20Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n },\n \"source\": {\n \"id\": 207573159,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NzMxNTk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-10T13:52:54Z\",\n \"updated_at\": \"2019-09-10T13:56:22Z\",\n \"pushed_at\": \"2019-09-10T13:56:20Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n },\n \"network_count\": 1,\n \"subscribers_count\": 0\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/content/posts?ts=0&ref=master", + "headers": { + "Date": "Tue, 10 Sep 2019 13:56:46 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4787", + "X-RateLimit-Reset": "1568127381", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"c5b7f6d674ba193bb7b4a5fcf4933034e1b7f2b7\"", + "Last-Modified": "Tue, 10 Sep 2019 13:56:22 GMT", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A04:3ED82:1891D03:1DE4701:5D77AB9E", + "content-length": "7422", + "connection": "keep-alive" + }, + "response": "[\n {\n \"name\": \"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"path\": \"content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"sha\": \"6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"size\": 1707,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"html\": \"https://github.com/owner/repo/blob/master/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md\"\n }\n },\n {\n \"name\": \"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"path\": \"content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"sha\": \"d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"size\": 2565,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"html\": \"https://github.com/owner/repo/blob/master/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\"\n }\n },\n {\n \"name\": \"2016-02-02---A-Brief-History-of-Typography.md\",\n \"path\": \"content/posts/2016-02-02---A-Brief-History-of-Typography.md\",\n \"sha\": \"0eea554365f002d0f1572af9a58522d335a794d5\",\n \"size\": 2786,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2016-02-02---A-Brief-History-of-Typography.md?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/content/posts/2016-02-02---A-Brief-History-of-Typography.md\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/content/posts/2016-02-02---A-Brief-History-of-Typography.md\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2016-02-02---A-Brief-History-of-Typography.md?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\",\n \"html\": \"https://github.com/owner/repo/blob/master/content/posts/2016-02-02---A-Brief-History-of-Typography.md\"\n }\n },\n {\n \"name\": \"2017-18-08---The-Birth-of-Movable-Type.md\",\n \"path\": \"content/posts/2017-18-08---The-Birth-of-Movable-Type.md\",\n \"sha\": \"44f78c474d04273185a95821426f75affc9b0044\",\n \"size\": 16071,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2017-18-08---The-Birth-of-Movable-Type.md?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/content/posts/2017-18-08---The-Birth-of-Movable-Type.md\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/content/posts/2017-18-08---The-Birth-of-Movable-Type.md\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2017-18-08---The-Birth-of-Movable-Type.md?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\",\n \"html\": \"https://github.com/owner/repo/blob/master/content/posts/2017-18-08---The-Birth-of-Movable-Type.md\"\n }\n },\n {\n \"name\": \"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"path\": \"content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"sha\": \"a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"size\": 7465,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"html\": \"https://github.com/owner/repo/blob/master/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md\"\n }\n }\n]\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/forkOwner/repo/contents/static/media?ts=0&ref=master", + "headers": { + "Date": "Tue, 10 Sep 2019 13:56:46 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4786", + "X-RateLimit-Reset": "1568127381", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"c5b7f6d674ba193bb7b4a5fcf4933034e1b7f2b7\"", + "Last-Modified": "Tue, 10 Sep 2019 13:56:30 GMT", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A06:9D20:1160E8D:154078D:5D77AB9E", + "content-length": "12712", + "connection": "keep-alive" + }, + "response": "[\n {\n \"name\": \"42-line-bible.jpg\",\n \"path\": \"static/media/42-line-bible.jpg\",\n \"sha\": \"41c8d12f9ca5864beb827c381fbeff935209d5fb\",\n \"size\": 671242,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/contents/static/media/42-line-bible.jpg?ref=master\",\n \"html_url\": \"https://github.com/forkOwner/repo/blob/master/static/media/42-line-bible.jpg\",\n \"git_url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/41c8d12f9ca5864beb827c381fbeff935209d5fb\",\n \"download_url\": \"https://raw.githubusercontent.com/forkOwner/repo/master/static/media/42-line-bible.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/forkOwner/repo/contents/static/media/42-line-bible.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/41c8d12f9ca5864beb827c381fbeff935209d5fb\",\n \"html\": \"https://github.com/forkOwner/repo/blob/master/static/media/42-line-bible.jpg\"\n }\n },\n {\n \"name\": \"gutenberg.jpg\",\n \"path\": \"static/media/gutenberg.jpg\",\n \"sha\": \"04315e355873ea5d358d9c371c39a6845c1ae4ae\",\n \"size\": 155002,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/contents/static/media/gutenberg.jpg?ref=master\",\n \"html_url\": \"https://github.com/forkOwner/repo/blob/master/static/media/gutenberg.jpg\",\n \"git_url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/04315e355873ea5d358d9c371c39a6845c1ae4ae\",\n \"download_url\": \"https://raw.githubusercontent.com/forkOwner/repo/master/static/media/gutenberg.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/forkOwner/repo/contents/static/media/gutenberg.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/04315e355873ea5d358d9c371c39a6845c1ae4ae\",\n \"html\": \"https://github.com/forkOwner/repo/blob/master/static/media/gutenberg.jpg\"\n }\n },\n {\n \"name\": \"image-0.jpg\",\n \"path\": \"static/media/image-0.jpg\",\n \"sha\": \"b70a1b64fd4fa9635823231a0ba92c6dc9393f16\",\n \"size\": 660287,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/contents/static/media/image-0.jpg?ref=master\",\n \"html_url\": \"https://github.com/forkOwner/repo/blob/master/static/media/image-0.jpg\",\n \"git_url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/b70a1b64fd4fa9635823231a0ba92c6dc9393f16\",\n \"download_url\": \"https://raw.githubusercontent.com/forkOwner/repo/master/static/media/image-0.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/forkOwner/repo/contents/static/media/image-0.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/b70a1b64fd4fa9635823231a0ba92c6dc9393f16\",\n \"html\": \"https://github.com/forkOwner/repo/blob/master/static/media/image-0.jpg\"\n }\n },\n {\n \"name\": \"image-1.jpg\",\n \"path\": \"static/media/image-1.jpg\",\n \"sha\": \"05eedae372b829c62501ac751b2d42dcc432541b\",\n \"size\": 392411,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/contents/static/media/image-1.jpg?ref=master\",\n \"html_url\": \"https://github.com/forkOwner/repo/blob/master/static/media/image-1.jpg\",\n \"git_url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/05eedae372b829c62501ac751b2d42dcc432541b\",\n \"download_url\": \"https://raw.githubusercontent.com/forkOwner/repo/master/static/media/image-1.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/forkOwner/repo/contents/static/media/image-1.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/05eedae372b829c62501ac751b2d42dcc432541b\",\n \"html\": \"https://github.com/forkOwner/repo/blob/master/static/media/image-1.jpg\"\n }\n },\n {\n \"name\": \"image-2.jpg\",\n \"path\": \"static/media/image-2.jpg\",\n \"sha\": \"53845ed35faf8939bea242bb85eda7c324b1be0b\",\n \"size\": 99147,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/contents/static/media/image-2.jpg?ref=master\",\n \"html_url\": \"https://github.com/forkOwner/repo/blob/master/static/media/image-2.jpg\",\n \"git_url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/53845ed35faf8939bea242bb85eda7c324b1be0b\",\n \"download_url\": \"https://raw.githubusercontent.com/forkOwner/repo/master/static/media/image-2.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/forkOwner/repo/contents/static/media/image-2.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/53845ed35faf8939bea242bb85eda7c324b1be0b\",\n \"html\": \"https://github.com/forkOwner/repo/blob/master/static/media/image-2.jpg\"\n }\n },\n {\n \"name\": \"image-3.jpg\",\n \"path\": \"static/media/image-3.jpg\",\n \"sha\": \"8b2339d97069e826fae1f156212e40ae458454e3\",\n \"size\": 358022,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/contents/static/media/image-3.jpg?ref=master\",\n \"html_url\": \"https://github.com/forkOwner/repo/blob/master/static/media/image-3.jpg\",\n \"git_url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/8b2339d97069e826fae1f156212e40ae458454e3\",\n \"download_url\": \"https://raw.githubusercontent.com/forkOwner/repo/master/static/media/image-3.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/forkOwner/repo/contents/static/media/image-3.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/8b2339d97069e826fae1f156212e40ae458454e3\",\n \"html\": \"https://github.com/forkOwner/repo/blob/master/static/media/image-3.jpg\"\n }\n },\n {\n \"name\": \"image-4.jpg\",\n \"path\": \"static/media/image-4.jpg\",\n \"sha\": \"a8f6f21253a67a4284b5a953b2fe633d44152ecd\",\n \"size\": 114837,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/contents/static/media/image-4.jpg?ref=master\",\n \"html_url\": \"https://github.com/forkOwner/repo/blob/master/static/media/image-4.jpg\",\n \"git_url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/a8f6f21253a67a4284b5a953b2fe633d44152ecd\",\n \"download_url\": \"https://raw.githubusercontent.com/forkOwner/repo/master/static/media/image-4.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/forkOwner/repo/contents/static/media/image-4.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/a8f6f21253a67a4284b5a953b2fe633d44152ecd\",\n \"html\": \"https://github.com/forkOwner/repo/blob/master/static/media/image-4.jpg\"\n }\n },\n {\n \"name\": \"movable-type.jpg\",\n \"path\": \"static/media/movable-type.jpg\",\n \"sha\": \"57b4e925ea00bd8e195cf4418eb6eb2995ea5f10\",\n \"size\": 559028,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/contents/static/media/movable-type.jpg?ref=master\",\n \"html_url\": \"https://github.com/forkOwner/repo/blob/master/static/media/movable-type.jpg\",\n \"git_url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/57b4e925ea00bd8e195cf4418eb6eb2995ea5f10\",\n \"download_url\": \"https://raw.githubusercontent.com/forkOwner/repo/master/static/media/movable-type.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/forkOwner/repo/contents/static/media/movable-type.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/57b4e925ea00bd8e195cf4418eb6eb2995ea5f10\",\n \"html\": \"https://github.com/forkOwner/repo/blob/master/static/media/movable-type.jpg\"\n }\n },\n {\n \"name\": \"printing-press.jpg\",\n \"path\": \"static/media/printing-press.jpg\",\n \"sha\": \"d27f56c9437d9becd2f56cc627c9322c2f1f61f6\",\n \"size\": 279283,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/contents/static/media/printing-press.jpg?ref=master\",\n \"html_url\": \"https://github.com/forkOwner/repo/blob/master/static/media/printing-press.jpg\",\n \"git_url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/d27f56c9437d9becd2f56cc627c9322c2f1f61f6\",\n \"download_url\": \"https://raw.githubusercontent.com/forkOwner/repo/master/static/media/printing-press.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/forkOwner/repo/contents/static/media/printing-press.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/d27f56c9437d9becd2f56cc627c9322c2f1f61f6\",\n \"html\": \"https://github.com/forkOwner/repo/blob/master/static/media/printing-press.jpg\"\n }\n },\n {\n \"name\": \"type-through-time.jpg\",\n \"path\": \"static/media/type-through-time.jpg\",\n \"sha\": \"3f08366a805c51a60ec5056010f22de4ba08abaa\",\n \"size\": 117689,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/contents/static/media/type-through-time.jpg?ref=master\",\n \"html_url\": \"https://github.com/forkOwner/repo/blob/master/static/media/type-through-time.jpg\",\n \"git_url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/3f08366a805c51a60ec5056010f22de4ba08abaa\",\n \"download_url\": \"https://raw.githubusercontent.com/forkOwner/repo/master/static/media/type-through-time.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/forkOwner/repo/contents/static/media/type-through-time.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/3f08366a805c51a60ec5056010f22de4ba08abaa\",\n \"html\": \"https://github.com/forkOwner/repo/blob/master/static/media/type-through-time.jpg\"\n }\n }\n]\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/forkOwner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044?ts=0", + "headers": { + "Date": "Tue, 10 Sep 2019 13:56:47 GMT", + "Content-Type": "text/plain; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4785", + "X-RateLimit-Reset": "1568127381", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"3caef061a429c3338cb85faf62eacb0d\"", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A12:15110:1895D11:1DDF1F1:5D77AB9F", + "content-length": "16071", + "connection": "keep-alive" + }, + "response": "---\ntitle: \"Johannes Gutenberg: The Birth of Movable Type\"\ndate: \"2017-08-18T22:12:03.284Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Typography\"\ntags:\n - \"Open source\"\n - \"Gatsby\"\n - \"Typography\"\ndescription: \"German inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\"\ncanonical: ''\n---\n\nGerman inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\n\n**Johannes Gensfleisch zur Laden zum Gutenberg** (c. 1398 – 1468) was a German blacksmith, goldsmith, printer, and publisher who introduced printing to Europe. His invention of mechanical movable type printing started the Printing Revolution and is widely regarded as the most important event of the modern period. It played a key role in the development of the Renaissance, Reformation, the Age of Enlightenment, and the Scientific revolution and laid the material basis for the modern knowledge-based economy and the spread of learning to the masses.\n\n
\n\t\"Gutenberg\"\n\t
Johannes Gutenberg
\n
\n\nWith his invention of the printing press, Gutenberg was the first European to use movable type printing, in around 1439. Among his many contributions to printing are: the invention of a process for mass-producing movable type; the use of oil-based ink; and the use of a wooden printing press similar to the agricultural screw presses of the period. His truly epochal invention was the combination of these elements into a practical system that allowed the mass production of printed books and was economically viable for printers and readers alike. Gutenberg's method for making type is traditionally considered to have included a type metal alloy and a hand mould for casting type. The alloy was a mixture of lead, tin, and antimony that melted at a relatively low temperature for faster and more economical casting, cast well, and created a durable type.\n\nIn Renaissance Europe, the arrival of mechanical movable type printing introduced the era of mass communication which permanently altered the structure of society. The relatively unrestricted circulation of information — including revolutionary ideas — transcended borders, captured the masses in the Reformation and threatened the power of political and religious authorities; the sharp increase in literacy broke the monopoly of the literate elite on education and learning and bolstered the emerging middle class. Across Europe, the increasing cultural self-awareness of its people led to the rise of proto-nationalism, accelerated by the flowering of the European vernacular languages to the detriment of Latin's status as lingua franca. In the 19th century, the replacement of the hand-operated Gutenberg-style press by steam-powered rotary presses allowed printing on an industrial scale, while Western-style printing was adopted all over the world, becoming practically the sole medium for modern bulk printing.\n\nThe use of movable type was a marked improvement on the handwritten manuscript, which was the existing method of book production in Europe, and upon woodblock printing, and revolutionized European book-making. Gutenberg's printing technology spread rapidly throughout Europe and later the world.\n\nHis major work, the Gutenberg Bible (also known as the 42-line Bible), has been acclaimed for its high aesthetic and technical quality.\n\n## Printing Press\n\nAround 1439, Gutenberg was involved in a financial misadventure making polished metal mirrors (which were believed to capture holy light from religious relics) for sale to pilgrims to Aachen: in 1439 the city was planning to exhibit its collection of relics from Emperor Charlemagne but the event was delayed by one year due to a severe flood and the capital already spent could not be repaid. When the question of satisfying the investors came up, Gutenberg is said to have promised to share a “secret”. It has been widely speculated that this secret may have been the idea of printing with movable type. Also around 1439–1440, the Dutch Laurens Janszoon Coster came up with the idea of printing. Legend has it that the idea came to him “like a ray of light”.\n\n
\n\t\"Early\n\t
Early wooden printing press as depicted in 1568.
\n
\n\nUntil at least 1444 he lived in Strasbourg, most likely in the St. Arbogast parish. It was in Strasbourg in 1440 that Gutenberg is said to have perfected and unveiled the secret of printing based on his research, mysteriously entitled Kunst und Aventur (art and enterprise). It is not clear what work he was engaged in, or whether some early trials with printing from movable type may have been conducted there. After this, there is a gap of four years in the record. In 1448, he was back in Mainz, where he took out a loan from his brother-in-law Arnold Gelthus, quite possibly for a printing press or related paraphernalia. By this date, Gutenberg may have been familiar with intaglio printing; it is claimed that he had worked on copper engravings with an artist known as the Master of Playing Cards.\n\nBy 1450, the press was in operation, and a German poem had been printed, possibly the first item to be printed there. Gutenberg was able to convince the wealthy moneylender Johann Fust for a loan of 800 guilders. Peter Schöffer, who became Fust’s son-in-law, also joined the enterprise. Schöffer had worked as a scribe in Paris and is believed to have designed some of the first typefaces.\n\n
\n\t
\n\t\t

All that has been written to me about that marvelous man seen at Frankfurt is true. I have not seen complete Bibles but only a number of quires of various books of the Bible. The script was very neat and legible, not at all difficult to follow—your grace would be able to read it without effort, and indeed without glasses.

\n\t\t
\n\t\t\t—Future pope Pius II in a letter to Cardinal Carvajal, March 1455\n\t\t
\n\t
\n
\n\nGutenberg's workshop was set up at Hof Humbrecht, a property belonging to a distant relative. It is not clear when Gutenberg conceived the Bible project, but for this he borrowed another 800 guilders from Fust, and work commenced in 1452. At the same time, the press was also printing other, more lucrative texts (possibly Latin grammars). There is also some speculation that there may have been two presses, one for the pedestrian texts, and one for the Bible. One of the profit-making enterprises of the new press was the printing of thousands of indulgences for the church, documented from 1454–55.\n\nIn 1455 Gutenberg completed his 42-line Bible, known as the Gutenberg Bible. About 180 copies were printed, most on paper and some on vellum.\n\n## Court Case\n\nSome time in 1456, there was a dispute between Gutenberg and Fust, and Fust demanded his money back, accusing Gutenberg of misusing the funds. Meanwhile the expenses of the Bible project had proliferated, and Gutenberg's debt now exceeded 20,000 guilders. Fust sued at the archbishop's court. A November 1455 legal document records that there was a partnership for a \"project of the books,\" the funds for which Gutenberg had used for other purposes, according to Fust. The court decided in favor of Fust, giving him control over the Bible printing workshop and half of all printed Bibles.\n\nThus Gutenberg was effectively bankrupt, but it appears he retained (or re-started) a small printing shop, and participated in the printing of a Bible in the town of Bamberg around 1459, for which he seems at least to have supplied the type. But since his printed books never carry his name or a date, it is difficult to be certain, and there is consequently a considerable scholarly debate on this subject. It is also possible that the large Catholicon dictionary, 300 copies of 754 pages, printed in Mainz in 1460, may have been executed in his workshop.\n\nMeanwhile, the Fust–Schöffer shop was the first in Europe to bring out a book with the printer's name and date, the Mainz Psalter of August 1457, and while proudly proclaiming the mechanical process by which it had been produced, it made no mention of Gutenberg.\n\n## Later Life\n\nIn 1462, during a conflict between two archbishops, Mainz was sacked by archbishop Adolph von Nassau, and Gutenberg was exiled. An old man by now, he moved to Eltville where he may have initiated and supervised a new printing press belonging to the brothers Bechtermünze.\n\nIn January 1465, Gutenberg's achievements were recognized and he was given the title Hofmann (gentleman of the court) by von Nassau. This honor included a stipend, an annual court outfit, as well as 2,180 litres of grain and 2,000 litres of wine tax-free. It is believed he may have moved back to Mainz around this time, but this is not certain.\n\n***\n\nGutenberg died in 1468 and was buried in the Franciscan church at Mainz, his contributions largely unknown. This church and the cemetery were later destroyed, and Gutenberg's grave is now lost.\n\nIn 1504, he was mentioned as the inventor of typography in a book by Professor Ivo Wittig. It was not until 1567 that the first portrait of Gutenberg, almost certainly an imaginary reconstruction, appeared in Heinrich Pantaleon's biography of famous Germans.\n\n## Printing Method With Movable Type\n\nGutenberg's early printing process, and what tests he may have made with movable type, are not known in great detail. His later Bibles were printed in such a way as to have required large quantities of type, some estimates suggesting as many as 100,000 individual sorts. Setting each page would take, perhaps, half a day, and considering all the work in loading the press, inking the type, pulling the impressions, hanging up the sheets, distributing the type, etc., it is thought that the Gutenberg–Fust shop might have employed as many as 25 craftsmen.\n\n![Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5](/media/movable-type.jpg)\n\n*Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5*\n\nGutenberg's technique of making movable type remains unclear. In the following decades, punches and copper matrices became standardized in the rapidly disseminating printing presses across Europe. Whether Gutenberg used this sophisticated technique or a somewhat primitive version has been the subject of considerable debate.\n\nIn the standard process of making type, a hard metal punch (made by punchcutting, with the letter carved back to front) is hammered into a softer copper bar, creating a matrix. This is then placed into a hand-held mould and a piece of type, or \"sort\", is cast by filling the mould with molten type-metal; this cools almost at once, and the resulting piece of type can be removed from the mould. The matrix can be reused to create hundreds, or thousands, of identical sorts so that the same character appearing anywhere within the book will appear very uniform, giving rise, over time, to the development of distinct styles of typefaces or fonts. After casting, the sorts are arranged into type-cases, and used to make up pages which are inked and printed, a procedure which can be repeated hundreds, or thousands, of times. The sorts can be reused in any combination, earning the process the name of “movable type”.\n\nThe invention of the making of types with punch, matrix and mold has been widely attributed to Gutenberg. However, recent evidence suggests that Gutenberg's process was somewhat different. If he used the punch and matrix approach, all his letters should have been nearly identical, with some variations due to miscasting and inking. However, the type used in Gutenberg's earliest work shows other variations.\n\n
\n\t
\n\t\t

It is a press, certainly, but a press from which shall flow in inexhaustible streams… Through it, god will spread his word.

\n\t\t
\n\t\t\t—Johannes Gutenberg\n\t\t
\n\t
\n
\n\nIn 2001, the physicist Blaise Agüera y Arcas and Princeton librarian Paul Needham, used digital scans of a Papal bull in the Scheide Library, Princeton, to carefully compare the same letters (types) appearing in different parts of the printed text. The irregularities in Gutenberg's type, particularly in simple characters such as the hyphen, suggested that the variations could not have come from either ink smear or from wear and damage on the pieces of metal on the types themselves. While some identical types are clearly used on other pages, other variations, subjected to detailed image analysis, suggested that they could not have been produced from the same matrix. Transmitted light pictures of the page also appeared to reveal substructures in the type that could not arise from traditional punchcutting techniques. They hypothesized that the method may have involved impressing simple shapes to create alphabets in “cuneiform” style in a matrix made of some soft material, perhaps sand. Casting the type would destroy the mould, and the matrix would need to be recreated to make each additional sort. This could explain the variations in the type, as well as the substructures observed in the printed images.\n\nThus, they feel that “the decisive factor for the birth of typography”, the use of reusable moulds for casting type, might have been a more progressive process than was previously thought. They suggest that the additional step of using the punch to create a mould that could be reused many times was not taken until twenty years later, in the 1470s. Others have not accepted some or all of their suggestions, and have interpreted the evidence in other ways, and the truth of the matter remains very uncertain.\n\nA 1568 history by Hadrianus Junius of Holland claims that the basic idea of the movable type came to Gutenberg from Laurens Janszoon Coster via Fust, who was apprenticed to Coster in the 1430s and may have brought some of his equipment from Haarlem to Mainz. While Coster appears to have experimented with moulds and castable metal type, there is no evidence that he had actually printed anything with this technology. He was an inventor and a goldsmith. However, there is one indirect supporter of the claim that Coster might be the inventor. The author of the Cologne Chronicle of 1499 quotes Ulrich Zell, the first printer of Cologne, that printing was performed in Mainz in 1450, but that some type of printing of lower quality had previously occurred in the Netherlands. However, the chronicle does not mention the name of Coster, while it actually credits Gutenberg as the \"first inventor of printing\" in the very same passage (fol. 312). The first securely dated book by Dutch printers is from 1471, and the Coster connection is today regarded as a mere legend.\n\nThe 19th century printer and typefounder Fournier Le Jeune suggested that Gutenberg might not have been using type cast with a reusable matrix, but possibly wooden types that were carved individually. A similar suggestion was made by Nash in 2004. This remains possible, albeit entirely unproven.\n\nIt has also been questioned whether Gutenberg used movable types at all. In 2004, Italian professor Bruno Fabbiani claimed that examination of the 42-line Bible revealed an overlapping of letters, suggesting that Gutenberg did not in fact use movable type (individual cast characters) but rather used whole plates made from a system somewhat like a modern typewriter, whereby the letters were stamped successively into the plate and then printed. However, most specialists regard the occasional overlapping of type as caused by paper movement over pieces of type of slightly unequal height.", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/forkOwner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9?ts=0", + "headers": { + "Date": "Tue, 10 Sep 2019 13:56:47 GMT", + "Content-Type": "text/plain; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4784", + "X-RateLimit-Reset": "1568127381", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"88b7f6d3ffbd2b089766cabe7b8bad3b\"", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A08:244E4:AF9239:D4C27D:5D77AB9F", + "content-length": "2565", + "connection": "keep-alive" + }, + "response": "---\ntitle: The Origins of Social Stationery Lettering\ndate: \"2016-12-01T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Design Culture\"\ndescription: \"Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante.\"\ncanonical: ''\n---\n\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\n\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-3.jpg)\n\n## Header Level 2\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \n\n
\n\t
\n\t\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\n\t\t
\n\t\t\t— Aliquam tincidunt mauris eu risus.\n\t\t
\n\t
\n
\n\n### Header Level 3\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\n\n```css\n#header h1 a {\n display: block;\n width: 300px;\n height: 80px;\n}\n```\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/forkOwner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774?ts=0", + "headers": { + "Date": "Tue, 10 Sep 2019 13:56:47 GMT", + "Content-Type": "text/plain; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4783", + "X-RateLimit-Reset": "1568127381", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"3cd1cb72a7e61c4921ca6a2031ad36a4\"", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A10:9D1D:197F9A:1F2321:5D77AB9F", + "content-length": "7465", + "connection": "keep-alive" + }, + "response": "---\ntitle: Humane Typography in the Digital Age\ndate: \"2017-08-19T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Typography\"\ntags:\n - \"Design\"\n - \"Typography\"\n - \"Web Development\"\ndescription: \"An Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\"\ncanonical: ''\n---\n\n- [The first transition](#the-first-transition)\n- [The digital age](#the-digital-age)\n- [Loss of humanity through transitions](#loss-of-humanity-through-transitions)\n- [Chasing perfection](#chasing-perfection)\n\nAn Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\n\nThe typography of this industrial age was no longer handcrafted. Mass production and profit became more important. Quantity mattered more than the quality. The books and printed works in general lost a part of its humanity. The typefaces were not produced by craftsmen anymore. It was the machines printing and tying the books together now. The craftsmen had to let go of their craft and became a cog in the process. An extension of the industrial machine.\n\nBut the victory of the industrialism didn’t mean that the craftsmen were completely extinct. The two worlds continued to coexist independently. Each recognising the good in the other — the power of industrialism and the humanity of craftsmanship. This was the second transition that would strip typography of a part of its humanity. We have to go 500 years back in time to meet the first one.\n\n## The first transition\n\nA similar conflict emerged after the invention of the first printing press in Europe. Johannes Gutenberg invented movable type and used it to produce different compositions. His workshop could print up to 240 impressions per hour. Until then, the books were being copied by hand. All the books were handwritten and decorated with hand drawn ornaments and figures. A process of copying a book was long but each book, even a copy, was a work of art.\n\nThe first printed books were, at first, perceived as inferior to the handwritten ones. They were smaller and cheaper to produce. Movable type provided the printers with flexibility that allowed them to print books in languages other than Latin. Gill describes the transition to industrialism as something that people needed and wanted. Something similar happened after the first printed books emerged. People wanted books in a language they understood and they wanted books they could take with them. They were hungry for knowledge and printed books satisfied this hunger.\n\n![42-line-bible.jpg](/media/42-line-bible.jpg)\n\n*The 42–Line Bible, printed by Gutenberg.*\n\nBut, through this transition, the book lost a large part of its humanity. The machine took over most of the process but craftsmanship was still a part of it. The typefaces were cut manually by the first punch cutters. The paper was made by hand. The illustrations and ornaments were still being hand drawn. These were the remains of the craftsmanship that went almost extinct in the times of Eric Gill.\n\n## The digital age\n\nThe first transition took away a large part of humanity from written communication. Industrialisation, the second transition described by Eric Gill, took away most of what was left. But it’s the third transition that stripped it naked. Typefaces are faceless these days. They’re just fonts on our computers. Hardly anyone knows their stories. Hardly anyone cares. Flicking through thousands of typefaces and finding the “right one” is a matter of minutes.\n\n> In the new computer age the proliferation of typefaces and type manipulations represents a new level of visual pollution threatening our culture. Out of thousands of typefaces, all we need are a few basic ones, and trash the rest.\n>\n— Massimo Vignelli\n\nTypography is not about typefaces. It’s not about what looks best, it’s about what feels right. What communicates the message best. Typography, in its essence, is about the message. “Typographical design should perform optically what the speaker creates through voice and gesture of his thoughts.”, as El Lissitzky, a famous Russian typographer, put it.\n\n## Loss of humanity through transitions\n\nEach transition took away a part of humanity from written language. Handwritten books being the most humane form and the digital typefaces being the least. Overuse of Helvetica is a good example. Messages are being told in a typeface just because it’s a safe option. It’s always there. Everyone knows it but yet, nobody knows it. Stop someone on the street and ask him what Helvetica is? Ask a designer the same question. Ask him where it came from, when, why and who designed it. Most of them will fail to answer these questions. Most of them used it in their precious projects but they still don’t spot it in the street.\n\n
\n\t
\n\t\t

Knowledge of the quality of a typeface is of the greatest importance for the functional, aesthetic and psychological effect.

\n\t\t
\n\t\t\t— Josef Mueller-Brockmann\n\t\t
\n\t
\n
\n\nTypefaces don’t look handmade these days. And that’s all right. They don’t have to. Industrialism took that away from them and we’re fine with it. We’ve traded that part of humanity for a process that produces more books that are easier to read. That can’t be bad. And it isn’t.\n\n> Humane typography will often be comparatively rough and even uncouth; but while a certain uncouthness does not seriously matter in humane works, uncouthness has no excuse whatever in the productions of the machine.\n>\n> — Eric Gill\n\nWe’ve come close to “perfection” in the last five centuries. The letters are crisp and without rough edges. We print our compositions with high–precision printers on a high quality, machine made paper.\n\n![type-through-time.jpg](/media/type-through-time.jpg)\n\n*Type through 5 centuries.*\n\nWe lost a part of ourselves because of this chase after perfection. We forgot about the craftsmanship along the way. And the worst part is that we don’t care. The transition to the digital age made that clear. We choose typefaces like clueless zombies. There’s no meaning in our work. Type sizes, leading, margins… It’s all just a few clicks or lines of code. The message isn’t important anymore. There’s no more “why” behind the “what”.\n\n## Chasing perfection\n\nHuman beings aren’t perfect. Perfection is something that will always elude us. There will always be a small part of humanity in everything we do. No matter how small that part, we should make sure that it transcends the limits of the medium. We have to think about the message first. What typeface should we use and why? Does the typeface match the message and what we want to communicate with it? What will be the leading and why? Will there be more typefaces in our design? On what ground will they be combined? What makes our design unique and why? This is the part of humanity that is left in typography. It might be the last part. Are we really going to give it up?\n\n*Originally published by [Matej Latin](http://matejlatin.co.uk/) on [Medium](https://medium.com/design-notes/humane-typography-in-the-digital-age-9bd5c16199bd?ref=webdesignernews.com#.lygo82z0x).*", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/forkOwner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043?ts=0", + "headers": { + "Date": "Tue, 10 Sep 2019 13:56:47 GMT", + "Content-Type": "text/plain; charset=iso-8859-1", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4782", + "X-RateLimit-Reset": "1568127381", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"ea72b2ba12e74f7d20ccab737e3d3698\"", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A0A:9D1F:A36971:C769E5:5D77AB9F", + "content-length": "1707", + "connection": "keep-alive" + }, + "response": "---\ntitle: Perfecting the Art of Perfection\ndate: \"2016-09-01T23:46:37.121Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Design Inspiration\"\ntags:\n - \"Handwriting\"\n - \"Learning to write\"\ndescription: \"Quisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\"\ncanonical: ''\n---\n\nQuisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\n\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-2.jpg)\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. \n\nPraesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/forkOwner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5?ts=0", + "headers": { + "Date": "Tue, 10 Sep 2019 13:56:47 GMT", + "Content-Type": "text/plain; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4781", + "X-RateLimit-Reset": "1568127381", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"fd57f3a860149dad96a596e31398a809\"", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A0E:1510F:1241771:1628320:5D77AB9F", + "content-length": "2786", + "connection": "keep-alive" + }, + "response": "---\ntitle: \"A Brief History of Typography\"\ndate: \"2016-02-02T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Design Inspiration\"\ntags:\n - \"Linotype\"\n - \"Monotype\"\n - \"History of typography\"\n - \"Helvetica\"\ndescription: \"Morbi in sem quis dui placerat ornare. Pellentesque odio nisi, euismod in, pharetra a, ultricies in, diam. Sed arcu. Cras consequat.\"\ncanonical: ''\n---\n\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\n\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-0.jpg)\n\n## Header Level 2\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \n\n
\n\t
\n\t\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\n\t\t
\n\t\t\t— Aliquam tincidunt mauris eu risus.\n\t\t
\n\t
\n
\n\n### Header Level 3\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\n\n```css\n#header h1 a {\n display: block;\n width: 300px;\n height: 80px;\n}\n```\n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/forkOwner/repo/contents/forkOwner/repo/posts/1970-01-01-first-title.json?ts=300&ref=refs/meta/_netlify_cms", + "headers": { + "Date": "Tue, 10 Sep 2019 13:56:51 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "404 Not Found", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4780", + "X-RateLimit-Reset": "1568127381", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A16:1510F:1241C31:1628903:5D77ABA3", + "content-length": "144", + "connection": "keep-alive" + }, + "response": "{\n \"message\": \"No commit found for the ref refs/meta/_netlify_cms\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/\"\n}\n", + "status": 404 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=master", + "headers": { + "Date": "Tue, 10 Sep 2019 13:56:51 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "404 Not Found", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4779", + "X-RateLimit-Reset": "1568127381", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A18:1510F:1241CEA:16289CC:5D77ABA3", + "content-length": "116", + "connection": "keep-alive" + }, + "response": "{\n \"message\": \"Not Found\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/#get-contents\"\n}\n", + "status": 404 + }, + { + "body": "{\"content\":\"LS0tCnRlbXBsYXRlOiBwb3N0CnRpdGxlOiBmaXJzdCB0aXRsZQpkcmFmdDogdHJ1ZQpkYXRlOiAxOTcwLTAxLTAxVDAwOjAwOjAwLjAwMFoKZGVzY3JpcHRpb246IGZpcnN0IGRlc2NyaXB0aW9uCmNhdGVnb3J5OiBmaXJzdCBjYXRlZ29yeQp0YWdzOgogIC0gdGFnMQotLS0KZmlyc3QgYm9keQo=\",\"encoding\":\"base64\"}", + "method": "POST", + "url": "/repos/forkOwner/repo/git/blobs?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:56:52 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "212", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4778", + "X-RateLimit-Reset": "1568127381", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"9110b0f43bac9b530937daefcc0fde5f\"", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/forkOwner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A1A:244E7:11B3D35:159A948:5D77ABA4", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"a041245814892e3f73f63ca54333fda649b7fc0b\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b\"\n}\n", + "status": 201 + }, + { + "method": "GET", + "url": "/repos/forkOwner/repo/branches/master?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:56:53 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4777", + "X-RateLimit-Reset": "1568127381", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"f77cc5d5061b3978c67296ca43107299\"", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A1E:244DB:724F9:8D7F6:5D77ABA4", + "content-length": "6021", + "connection": "keep-alive" + }, + "response": "{\n \"name\": \"master\",\n \"commit\": {\n \"sha\": \"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NTc0MDQ5OjcyNjE3MmRlYWU5OWM4YTJjZWE0YzcxZTczNGEwMmE3OTNkNGQ5ZTU=\",\n \"commit\": {\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-08T09:08:14Z\"\n },\n \"committer\": {\n \"name\": \"GitHub\",\n \"email\": \"noreply@github.com\",\n \"date\": \"2019-09-08T09:08:14Z\"\n },\n \"message\": \"Merge pull request #10 from owner/chore/update_dependencies\\n\\nChore: update dependencies\",\n \"tree\": {\n \"sha\": \"c5b7f6d674ba193bb7b4a5fcf4933034e1b7f2b7\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/c5b7f6d674ba193bb7b4a5fcf4933034e1b7f2b7\"\n },\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"comment_count\": 0,\n \"verification\": {\n \"verified\": true,\n \"reason\": \"valid\",\n \"signature\": \"-----BEGIN PGP SIGNATURE-----\\n\\nwsBcBAABCAAQBQJddMT+CRBK7hj4Ov3rIwAAdHIIABWcobVYZFMuqSPezceRaKDr\\npXGqxvB3WLiIrvsQiBz2si9SvufXxLUdq72iaYTbXMCqIAAIBDNwHLltOKcbUF9J\\nKa8pD6cq7jpNyZfhI8xlapMwEZPu53as0tSvwdOnl/0iL+WYjUZUFQR+vrWEmllu\\nhIES9QxU2nk5zcS7t8sFRA+sJdll8GzzhoWYkpw3wgqpxCzJdf5HJS0tWyVCZM5U\\nCgSpSgTvz9bALnQxu7YVrfLGEvi8S7LaOEz5HQc+TV1hNR2dfl5hhiHhWQ1Rsx5w\\nUECV01vItNWhx2dyMn77hIu/G+bTH89WZDU+CmifsNkmvkq90fk4eNt8Hg1mxn4=\\n=6ayM\\n-----END PGP SIGNATURE-----\\n\",\n \"payload\": \"tree c5b7f6d674ba193bb7b4a5fcf4933034e1b7f2b7\\nparent 8ade583d7c02e7769dd685ca64c10851c09f51cf\\nparent 4940957ff42b034d8c47d64b383c34548a34fbb5\\nauthor owner 1567933694 +0300\\ncommitter GitHub 1567933694 +0300\\n\\nMerge pull request #10 from owner/chore/update_dependencies\\n\\nChore: update dependencies\"\n }\n },\n \"url\": \"https://api.github.com/repos/forkOwner/repo/commits/726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"comments_url\": \"https://api.github.com/repos/forkOwner/repo/commits/726172deae99c8a2cea4c71e734a02a793d4d9e5/comments\",\n \"author\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"committer\": {\n \"login\": \"web-flow\",\n \"id\": 19864447,\n \"node_id\": \"MDQ6VXNlcjE5ODY0NDQ3\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/web-flow\",\n \"html_url\": \"https://github.com/web-flow\",\n \"followers_url\": \"https://api.github.com/users/web-flow/followers\",\n \"following_url\": \"https://api.github.com/users/web-flow/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/web-flow/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/web-flow/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/web-flow/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/web-flow/orgs\",\n \"repos_url\": \"https://api.github.com/users/web-flow/repos\",\n \"events_url\": \"https://api.github.com/users/web-flow/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/web-flow/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"parents\": [\n {\n \"sha\": \"8ade583d7c02e7769dd685ca64c10851c09f51cf\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/commits/8ade583d7c02e7769dd685ca64c10851c09f51cf\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/8ade583d7c02e7769dd685ca64c10851c09f51cf\"\n },\n {\n \"sha\": \"4940957ff42b034d8c47d64b383c34548a34fbb5\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/commits/4940957ff42b034d8c47d64b383c34548a34fbb5\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/4940957ff42b034d8c47d64b383c34548a34fbb5\"\n }\n ]\n },\n \"_links\": {\n \"self\": \"https://api.github.com/repos/forkOwner/repo/branches/master\",\n \"html\": \"https://github.com/forkOwner/repo/tree/master\"\n },\n \"protected\": false,\n \"protection\": {\n \"enabled\": false,\n \"required_status_checks\": {\n \"enforcement_level\": \"off\",\n \"contexts\": [\n\n ]\n }\n },\n \"protection_url\": \"https://api.github.com/repos/forkOwner/repo/branches/master/protection\"\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/forkOwner/repo/git/trees/726172deae99c8a2cea4c71e734a02a793d4d9e5?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:56:53 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4776", + "X-RateLimit-Reset": "1568127381", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"4cb59f98c7efebbb9d0b391d65868c46\"", + "Last-Modified": "Tue, 10 Sep 2019 13:56:30 GMT", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A1F:9D21:174F3C0:1C665E9:5D77ABA5", + "content-length": "11959", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"tree\": [\n {\n \"path\": \".circleci\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"e5e9af3301cac61f120b8e4d40b1733c7a45685a\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/e5e9af3301cac61f120b8e4d40b1733c7a45685a\"\n },\n {\n \"path\": \".eslintignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"80b4531b026d19f8fa589efd122e76199d23f967\",\n \"size\": 39,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/80b4531b026d19f8fa589efd122e76199d23f967\"\n },\n {\n \"path\": \".eslintrc.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"370684994aaed5b858da3a006f48cfa57e88fd27\",\n \"size\": 414,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/370684994aaed5b858da3a006f48cfa57e88fd27\"\n },\n {\n \"path\": \".flowconfig\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14aa2ac4cc0e15223ad98630a6f1325fc81f8043\",\n \"size\": 283,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/14aa2ac4cc0e15223ad98630a6f1325fc81f8043\"\n },\n {\n \"path\": \".gitattributes\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"10a369ddf4f603337cabc6f21646508323941ce1\",\n \"size\": 135,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/10a369ddf4f603337cabc6f21646508323941ce1\"\n },\n {\n \"path\": \".github\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4ebeece548b52b20af59622354530a6d33b50b43\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/4ebeece548b52b20af59622354530a6d33b50b43\"\n },\n {\n \"path\": \".gitignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"c071ba35b0e49899bab6d610a68eef667dbbf157\",\n \"size\": 169,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/c071ba35b0e49899bab6d610a68eef667dbbf157\"\n },\n {\n \"path\": \".prettierignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"393f050e123d998cf8c8b362ff95cc8ac4d250e5\",\n \"size\": 45,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/393f050e123d998cf8c8b362ff95cc8ac4d250e5\"\n },\n {\n \"path\": \".prettierrc\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e52ad05bb13b084d7949dd76e1b2517455162150\",\n \"size\": 223,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/e52ad05bb13b084d7949dd76e1b2517455162150\"\n },\n {\n \"path\": \".stylelintrc.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"4b4c9698d10d756f5faa025659b86375428ed0a7\",\n \"size\": 718,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/4b4c9698d10d756f5faa025659b86375428ed0a7\"\n },\n {\n \"path\": \".vscode\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"286e97ec0113ea8242b41ac222e2c3e8077e6f1e\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/286e97ec0113ea8242b41ac222e2c3e8077e6f1e\"\n },\n {\n \"path\": \"CHANGELOG.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"070a5d4f0eacd2dc0be81ae8996f8982de43046e\",\n \"size\": 2113,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/070a5d4f0eacd2dc0be81ae8996f8982de43046e\"\n },\n {\n \"path\": \"CODE_OF_CONDUCT.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"92bc7565ff0ee145a0041b5179a820f14f39ab22\",\n \"size\": 3355,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/92bc7565ff0ee145a0041b5179a820f14f39ab22\"\n },\n {\n \"path\": \"CONTRIBUTING.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"8552aa241254a61258e1ff9666ab36f32fb1e3b9\",\n \"size\": 3548,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/8552aa241254a61258e1ff9666ab36f32fb1e3b9\"\n },\n {\n \"path\": \"LICENSE\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"42d85938357b49977c126ca03b199129082d4fb8\",\n \"size\": 1091,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/42d85938357b49977c126ca03b199129082d4fb8\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"19df50a78654c8d757ca7f38447aa3d09c7abcce\",\n \"size\": 3698,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/19df50a78654c8d757ca7f38447aa3d09c7abcce\"\n },\n {\n \"path\": \"backend\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\"\n },\n {\n \"path\": \"config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"58afd573bbb69fcca000efd0f5d90b93c93a98dd\",\n \"size\": 853,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/58afd573bbb69fcca000efd0f5d90b93c93a98dd\"\n },\n {\n \"path\": \"content\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/0294ef106c58743907a5c855da1eb0f87b0b6dfc\"\n },\n {\n \"path\": \"flow-typed\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"86c32fd6c3118be5e0dbbb231a834447357236c6\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/86c32fd6c3118be5e0dbbb231a834447357236c6\"\n },\n {\n \"path\": \"flow\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"0af45ad00d155c8d8c7407d913ff85278244c9ce\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/0af45ad00d155c8d8c7407d913ff85278244c9ce\"\n },\n {\n \"path\": \"gatsby-browser.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9bd2c9dce175f04980e91cd9dc295a299e3cdb80\",\n \"size\": 90,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/9bd2c9dce175f04980e91cd9dc295a299e3cdb80\"\n },\n {\n \"path\": \"gatsby-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"353a109dad62e3f25bf9f5e6a2167f21a6c8b459\",\n \"size\": 7228,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/353a109dad62e3f25bf9f5e6a2167f21a6c8b459\"\n },\n {\n \"path\": \"gatsby-node.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14a207883c2093d2cc071bc5a464e165bcc1fead\",\n \"size\": 409,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/14a207883c2093d2cc071bc5a464e165bcc1fead\"\n },\n {\n \"path\": \"gatsby\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4f23c06cd1740bf78304d2c0b29bf6bfdf427981\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/4f23c06cd1740bf78304d2c0b29bf6bfdf427981\"\n },\n {\n \"path\": \"jest\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\"\n },\n {\n \"path\": \"netlify.toml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"599b99cc5700404fde316a7ede829776f23e7d45\",\n \"size\": 137,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/599b99cc5700404fde316a7ede829776f23e7d45\"\n },\n {\n \"path\": \"package.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9d777616438b90a18f1a4ebfd5f114b4c06c6f17\",\n \"size\": 6855,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/9d777616438b90a18f1a4ebfd5f114b4c06c6f17\"\n },\n {\n \"path\": \"postcss-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d216501e9b351a72e00ba0b7459a6500e27e7da2\",\n \"size\": 703,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/d216501e9b351a72e00ba0b7459a6500e27e7da2\"\n },\n {\n \"path\": \"renovate.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"dcc309398785698b8870545c32051a3d72dd8271\",\n \"size\": 460,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/dcc309398785698b8870545c32051a3d72dd8271\"\n },\n {\n \"path\": \"serverless-scripts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ee3701f2fbfc7196ba340f6481d1387d20527898\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/ee3701f2fbfc7196ba340f6481d1387d20527898\"\n },\n {\n \"path\": \"serverless-single-page-app-plugin\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"08763fcfba643a06a452398517019bea4a5850ba\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/08763fcfba643a06a452398517019bea4a5850ba\"\n },\n {\n \"path\": \"serverless.yml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"20b22c5fad229f35d029bf6614d333d82fe8a987\",\n \"size\": 7803,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/20b22c5fad229f35d029bf6614d333d82fe8a987\"\n },\n {\n \"path\": \"src\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"8cdb35a88232c0f32f12f130c92c7cc55f97f471\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/8cdb35a88232c0f32f12f130c92c7cc55f97f471\"\n },\n {\n \"path\": \"static\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"53c6380a600a030d3722bff7ecde36f749fb6964\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/53c6380a600a030d3722bff7ecde36f749fb6964\"\n },\n {\n \"path\": \"utils\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"a592549c9f74db40b51efefcda2fd76810405f27\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/a592549c9f74db40b51efefcda2fd76810405f27\"\n },\n {\n \"path\": \"yarn.lock\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"475c9c1924ca752a0686303e2fdeb7b13ad75f57\",\n \"size\": 793903,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/475c9c1924ca752a0686303e2fdeb7b13ad75f57\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/forkOwner/repo/git/trees/0294ef106c58743907a5c855da1eb0f87b0b6dfc?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:56:54 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4775", + "X-RateLimit-Reset": "1568127381", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"145b65676fde9944237823c2b2f7e235\"", + "Last-Modified": "Tue, 10 Sep 2019 13:56:30 GMT", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A20:2B15:4E7589:5F3970:5D77ABA6", + "content-length": "846", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\n \"tree\": [\n {\n \"path\": \"pages\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\"\n },\n {\n \"path\": \"posts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"34892575e216c06e757093f036bd8e057c78a52f\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/34892575e216c06e757093f036bd8e057c78a52f\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/forkOwner/repo/git/trees/34892575e216c06e757093f036bd8e057c78a52f?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:56:55 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4774", + "X-RateLimit-Reset": "1568127381", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"dffeebbaee00b1940716502bcfd835a4\"", + "Last-Modified": "Tue, 10 Sep 2019 13:56:30 GMT", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A22:15110:1896878:1DE0056:5D77ABA6", + "content-length": "2060", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"34892575e216c06e757093f036bd8e057c78a52f\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/34892575e216c06e757093f036bd8e057c78a52f\",\n \"tree\": [\n {\n \"path\": \"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"size\": 1707,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\"\n },\n {\n \"path\": \"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"size\": 2565,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\"\n },\n {\n \"path\": \"2016-02-02---A-Brief-History-of-Typography.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"0eea554365f002d0f1572af9a58522d335a794d5\",\n \"size\": 2786,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\"\n },\n {\n \"path\": \"2017-18-08---The-Birth-of-Movable-Type.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"44f78c474d04273185a95821426f75affc9b0044\",\n \"size\": 16071,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\"\n },\n {\n \"path\": \"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"size\": 7465,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 200 + }, + { + "body": "{\"base_tree\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"tree\":[{\"path\":\"1970-01-01-first-title.md\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"a041245814892e3f73f63ca54333fda649b7fc0b\"}]}", + "method": "POST", + "url": "/repos/forkOwner/repo/git/trees?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:56:56 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "2397", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4773", + "X-RateLimit-Reset": "1568127381", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"2724f7374e1cabc1fc97fc93d56683f7\"", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/forkOwner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A24:3ED82:1892B34:1DE587C:5D77ABA7", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a041245814892e3f73f63ca54333fda649b7fc0b\",\n \"size\": 167,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b\"\n },\n {\n \"path\": \"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"size\": 1707,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\"\n },\n {\n \"path\": \"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"size\": 2565,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\"\n },\n {\n \"path\": \"2016-02-02---A-Brief-History-of-Typography.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"0eea554365f002d0f1572af9a58522d335a794d5\",\n \"size\": 2786,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\"\n },\n {\n \"path\": \"2017-18-08---The-Birth-of-Movable-Type.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"44f78c474d04273185a95821426f75affc9b0044\",\n \"size\": 16071,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\"\n },\n {\n \"path\": \"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"size\": 7465,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"base_tree\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\"tree\":[{\"path\":\"posts\",\"mode\":\"040000\",\"type\":\"tree\",\"sha\":\"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\"parentSha\":\"34892575e216c06e757093f036bd8e057c78a52f\"}]}", + "method": "POST", + "url": "/repos/forkOwner/repo/git/trees?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:56:57 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "846", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4772", + "X-RateLimit-Reset": "1568127381", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"3a18ca43d35ad985a7254b1d8e5912fe\"", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/forkOwner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A26:2B1F:1235D2E:1639B1F:5D77ABA8", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"tree\": [\n {\n \"path\": \"pages\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\"\n },\n {\n \"path\": \"posts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"base_tree\":\"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\"tree\":[{\"path\":\"content\",\"mode\":\"040000\",\"type\":\"tree\",\"sha\":\"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\"parentSha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\"}]}", + "method": "POST", + "url": "/repos/forkOwner/repo/git/trees?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:56:57 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "11959", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4771", + "X-RateLimit-Reset": "1568127381", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"642fe7ffc59b49d6b9b4eda36ef3fd38\"", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/forkOwner/repo/git/trees/daee8d5d15d144e8779955166a2afeccde2770e1", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A28:9D21:174F952:1C66CBD:5D77ABA9", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"daee8d5d15d144e8779955166a2afeccde2770e1\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/daee8d5d15d144e8779955166a2afeccde2770e1\",\n \"tree\": [\n {\n \"path\": \".circleci\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"e5e9af3301cac61f120b8e4d40b1733c7a45685a\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/e5e9af3301cac61f120b8e4d40b1733c7a45685a\"\n },\n {\n \"path\": \".eslintignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"80b4531b026d19f8fa589efd122e76199d23f967\",\n \"size\": 39,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/80b4531b026d19f8fa589efd122e76199d23f967\"\n },\n {\n \"path\": \".eslintrc.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"370684994aaed5b858da3a006f48cfa57e88fd27\",\n \"size\": 414,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/370684994aaed5b858da3a006f48cfa57e88fd27\"\n },\n {\n \"path\": \".flowconfig\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14aa2ac4cc0e15223ad98630a6f1325fc81f8043\",\n \"size\": 283,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/14aa2ac4cc0e15223ad98630a6f1325fc81f8043\"\n },\n {\n \"path\": \".gitattributes\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"10a369ddf4f603337cabc6f21646508323941ce1\",\n \"size\": 135,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/10a369ddf4f603337cabc6f21646508323941ce1\"\n },\n {\n \"path\": \".github\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4ebeece548b52b20af59622354530a6d33b50b43\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/4ebeece548b52b20af59622354530a6d33b50b43\"\n },\n {\n \"path\": \".gitignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"c071ba35b0e49899bab6d610a68eef667dbbf157\",\n \"size\": 169,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/c071ba35b0e49899bab6d610a68eef667dbbf157\"\n },\n {\n \"path\": \".prettierignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"393f050e123d998cf8c8b362ff95cc8ac4d250e5\",\n \"size\": 45,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/393f050e123d998cf8c8b362ff95cc8ac4d250e5\"\n },\n {\n \"path\": \".prettierrc\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e52ad05bb13b084d7949dd76e1b2517455162150\",\n \"size\": 223,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/e52ad05bb13b084d7949dd76e1b2517455162150\"\n },\n {\n \"path\": \".stylelintrc.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"4b4c9698d10d756f5faa025659b86375428ed0a7\",\n \"size\": 718,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/4b4c9698d10d756f5faa025659b86375428ed0a7\"\n },\n {\n \"path\": \".vscode\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"286e97ec0113ea8242b41ac222e2c3e8077e6f1e\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/286e97ec0113ea8242b41ac222e2c3e8077e6f1e\"\n },\n {\n \"path\": \"CHANGELOG.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"070a5d4f0eacd2dc0be81ae8996f8982de43046e\",\n \"size\": 2113,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/070a5d4f0eacd2dc0be81ae8996f8982de43046e\"\n },\n {\n \"path\": \"CODE_OF_CONDUCT.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"92bc7565ff0ee145a0041b5179a820f14f39ab22\",\n \"size\": 3355,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/92bc7565ff0ee145a0041b5179a820f14f39ab22\"\n },\n {\n \"path\": \"CONTRIBUTING.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"8552aa241254a61258e1ff9666ab36f32fb1e3b9\",\n \"size\": 3548,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/8552aa241254a61258e1ff9666ab36f32fb1e3b9\"\n },\n {\n \"path\": \"LICENSE\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"42d85938357b49977c126ca03b199129082d4fb8\",\n \"size\": 1091,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/42d85938357b49977c126ca03b199129082d4fb8\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"19df50a78654c8d757ca7f38447aa3d09c7abcce\",\n \"size\": 3698,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/19df50a78654c8d757ca7f38447aa3d09c7abcce\"\n },\n {\n \"path\": \"backend\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\"\n },\n {\n \"path\": \"config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"58afd573bbb69fcca000efd0f5d90b93c93a98dd\",\n \"size\": 853,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/58afd573bbb69fcca000efd0f5d90b93c93a98dd\"\n },\n {\n \"path\": \"content\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639\"\n },\n {\n \"path\": \"flow-typed\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"86c32fd6c3118be5e0dbbb231a834447357236c6\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/86c32fd6c3118be5e0dbbb231a834447357236c6\"\n },\n {\n \"path\": \"flow\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"0af45ad00d155c8d8c7407d913ff85278244c9ce\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/0af45ad00d155c8d8c7407d913ff85278244c9ce\"\n },\n {\n \"path\": \"gatsby-browser.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9bd2c9dce175f04980e91cd9dc295a299e3cdb80\",\n \"size\": 90,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/9bd2c9dce175f04980e91cd9dc295a299e3cdb80\"\n },\n {\n \"path\": \"gatsby-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"353a109dad62e3f25bf9f5e6a2167f21a6c8b459\",\n \"size\": 7228,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/353a109dad62e3f25bf9f5e6a2167f21a6c8b459\"\n },\n {\n \"path\": \"gatsby-node.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14a207883c2093d2cc071bc5a464e165bcc1fead\",\n \"size\": 409,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/14a207883c2093d2cc071bc5a464e165bcc1fead\"\n },\n {\n \"path\": \"gatsby\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4f23c06cd1740bf78304d2c0b29bf6bfdf427981\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/4f23c06cd1740bf78304d2c0b29bf6bfdf427981\"\n },\n {\n \"path\": \"jest\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\"\n },\n {\n \"path\": \"netlify.toml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"599b99cc5700404fde316a7ede829776f23e7d45\",\n \"size\": 137,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/599b99cc5700404fde316a7ede829776f23e7d45\"\n },\n {\n \"path\": \"package.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9d777616438b90a18f1a4ebfd5f114b4c06c6f17\",\n \"size\": 6855,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/9d777616438b90a18f1a4ebfd5f114b4c06c6f17\"\n },\n {\n \"path\": \"postcss-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d216501e9b351a72e00ba0b7459a6500e27e7da2\",\n \"size\": 703,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/d216501e9b351a72e00ba0b7459a6500e27e7da2\"\n },\n {\n \"path\": \"renovate.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"dcc309398785698b8870545c32051a3d72dd8271\",\n \"size\": 460,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/dcc309398785698b8870545c32051a3d72dd8271\"\n },\n {\n \"path\": \"serverless-scripts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ee3701f2fbfc7196ba340f6481d1387d20527898\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/ee3701f2fbfc7196ba340f6481d1387d20527898\"\n },\n {\n \"path\": \"serverless-single-page-app-plugin\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"08763fcfba643a06a452398517019bea4a5850ba\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/08763fcfba643a06a452398517019bea4a5850ba\"\n },\n {\n \"path\": \"serverless.yml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"20b22c5fad229f35d029bf6614d333d82fe8a987\",\n \"size\": 7803,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/20b22c5fad229f35d029bf6614d333d82fe8a987\"\n },\n {\n \"path\": \"src\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"8cdb35a88232c0f32f12f130c92c7cc55f97f471\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/8cdb35a88232c0f32f12f130c92c7cc55f97f471\"\n },\n {\n \"path\": \"static\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"53c6380a600a030d3722bff7ecde36f749fb6964\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/53c6380a600a030d3722bff7ecde36f749fb6964\"\n },\n {\n \"path\": \"utils\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"a592549c9f74db40b51efefcda2fd76810405f27\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/a592549c9f74db40b51efefcda2fd76810405f27\"\n },\n {\n \"path\": \"yarn.lock\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"475c9c1924ca752a0686303e2fdeb7b13ad75f57\",\n \"size\": 793903,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/475c9c1924ca752a0686303e2fdeb7b13ad75f57\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"message\":\"Create Post “1970-01-01-first-title”\",\"tree\":\"daee8d5d15d144e8779955166a2afeccde2770e1\",\"parents\":[\"726172deae99c8a2cea4c71e734a02a793d4d9e5\"]}", + "method": "POST", + "url": "/repos/forkOwner/repo/git/commits?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:56:58 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "1565", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4770", + "X-RateLimit-Reset": "1568127381", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"b31f0dee44634e621b2fe27435f4773b\"", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/forkOwner/repo/git/commits/017bff31d70c80e75466203ed947c8735f705aa6", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A2A:B4DE:12028D7:15ECEC5:5D77ABAA", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"017bff31d70c80e75466203ed947c8735f705aa6\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NTc0MDQ5OjAxN2JmZjMxZDcwYzgwZTc1NDY2MjAzZWQ5NDdjODczNWY3MDVhYTY=\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/017bff31d70c80e75466203ed947c8735f705aa6\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/017bff31d70c80e75466203ed947c8735f705aa6\",\n \"author\": {\n \"name\": \"forkOwner\",\n \"email\": \"53494188+forkOwner@users.noreply.github.com\",\n \"date\": \"2019-09-10T13:56:58Z\"\n },\n \"committer\": {\n \"name\": \"forkOwner\",\n \"email\": \"53494188+forkOwner@users.noreply.github.com\",\n \"date\": \"2019-09-10T13:56:58Z\"\n },\n \"tree\": {\n \"sha\": \"daee8d5d15d144e8779955166a2afeccde2770e1\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/daee8d5d15d144e8779955166a2afeccde2770e1\"\n },\n \"message\": \"Create Post “1970-01-01-first-title”\",\n \"parents\": [\n {\n \"sha\": \"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/726172deae99c8a2cea4c71e734a02a793d4d9e5\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "status": 201 + }, + { + "body": "{\"ref\":\"refs/heads/cms/forkOwner/repo/posts/1970-01-01-first-title\",\"sha\":\"017bff31d70c80e75466203ed947c8735f705aa6\"}", + "method": "POST", + "url": "/repos/forkOwner/repo/git/refs?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:57:01 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "764", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4769", + "X-RateLimit-Reset": "1568127381", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"541da2a4b44cb4d1b7ac47deb206d304\"", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "Location": "https://api.github.com/repos/forkOwner/repo/git/refs/heads/cms/forkOwner/repo/posts/1970-01-01-first-title", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A2C:3ED76:48A2DF:590783:5D77ABAA", + "connection": "keep-alive" + }, + "response": "{\n \"ref\": \"refs/heads/cms/forkOwner/repo/posts/1970-01-01-first-title\",\n \"node_id\": \"MDM6UmVmMjA3NTc0MDQ5OmNtcy9lcmV6cm9rYWgtdGVzdC9nYXRzYnktbmV0bGlmeS1jbXMtYXdzLTE1NjgxMjM1NzQwNTEtZWRhNWpwYjFkN28vcG9zdHMvMTk3MC0wMS0wMS1maXJzdC10aXRsZQ==\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/refs/heads/cms/forkOwner/repo/posts/1970-01-01-first-title\",\n \"object\": {\n \"sha\": \"017bff31d70c80e75466203ed947c8735f705aa6\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/017bff31d70c80e75466203ed947c8735f705aa6\"\n }\n}\n", + "status": 201 + }, + { + "method": "GET", + "url": "/repos/forkOwner/repo/git/refs/meta/_netlify_cms?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:57:01 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "404 Not Found", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4768", + "X-RateLimit-Reset": "1568127381", + "X-Poll-Interval": "300", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A2E:244E4:AF9D22:D4D021:5D77ABAD", + "content-length": "113", + "connection": "keep-alive" + }, + "response": "{\n \"message\": \"Not Found\",\n \"documentation_url\": \"https://developer.github.com/v3/git/refs/#get-a-reference\"\n}\n", + "status": 404 + }, + { + "body": "{\"content\":\"IyBOZXRsaWZ5IENNUwoKVGhpcyB0cmVlIGlzIHVzZWQgYnkgdGhlIE5ldGxpZnkgQ01TIHRvIHN0b3JlIG1ldGFkYXRhIGluZm9ybWF0aW9uIGZvciBzcGVjaWZpYyBmaWxlcyBhbmQgYnJhbmNoZXMu\",\"encoding\":\"base64\"}", + "method": "POST", + "url": "/repos/forkOwner/repo/git/blobs?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:57:02 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "212", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4767", + "X-RateLimit-Reset": "1568127381", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"e8b3d834c77c229435b968c6818ea1ca\"", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/forkOwner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A30:B4E0:16CBFFC:1BBF87A:5D77ABAD", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n}\n", + "status": 201 + }, + { + "body": "{\"tree\":[{\"path\":\"README.md\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"98787d1bd948850444433e91a43091a76c4eb455\"}]}", + "method": "POST", + "url": "/repos/forkOwner/repo/git/trees?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:57:03 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "571", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4766", + "X-RateLimit-Reset": "1568127381", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"593b6a79d33b48ad09676a2b985fdcc0\"", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/forkOwner/repo/git/trees/77d01c8bf1e79f9fb17c60fe405ce741bb4eb0a6", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A32:9D20:116206D:1541E23:5D77ABAE", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"77d01c8bf1e79f9fb17c60fe405ce741bb4eb0a6\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/77d01c8bf1e79f9fb17c60fe405ce741bb4eb0a6\",\n \"tree\": [\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"message\":\"First Commit\",\"tree\":\"77d01c8bf1e79f9fb17c60fe405ce741bb4eb0a6\",\"parents\":[]}", + "method": "POST", + "url": "/repos/forkOwner/repo/git/commits?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:57:03 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "1156", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4765", + "X-RateLimit-Reset": "1568127381", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"358f5afacba0fc9d5052612738f53c45\"", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/forkOwner/repo/git/commits/e93eaf739873bf93b571780ae92d14ada958380f", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A34:B4E0:16CC29D:1BBFBC8:5D77ABAF", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"e93eaf739873bf93b571780ae92d14ada958380f\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NTc0MDQ5OmU5M2VhZjczOTg3M2JmOTNiNTcxNzgwYWU5MmQxNGFkYTk1ODM4MGY=\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/e93eaf739873bf93b571780ae92d14ada958380f\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/e93eaf739873bf93b571780ae92d14ada958380f\",\n \"author\": {\n \"name\": \"forkOwner\",\n \"email\": \"53494188+forkOwner@users.noreply.github.com\",\n \"date\": \"2019-09-10T13:57:03Z\"\n },\n \"committer\": {\n \"name\": \"forkOwner\",\n \"email\": \"53494188+forkOwner@users.noreply.github.com\",\n \"date\": \"2019-09-10T13:57:03Z\"\n },\n \"tree\": {\n \"sha\": \"77d01c8bf1e79f9fb17c60fe405ce741bb4eb0a6\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/77d01c8bf1e79f9fb17c60fe405ce741bb4eb0a6\"\n },\n \"message\": \"First Commit\",\n \"parents\": [\n\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "status": 201 + }, + { + "body": "{\"ref\":\"refs/meta/_netlify_cms\",\"sha\":\"e93eaf739873bf93b571780ae92d14ada958380f\"}", + "method": "POST", + "url": "/repos/forkOwner/repo/git/refs?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:57:05 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "494", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4764", + "X-RateLimit-Reset": "1568127381", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"8911e59a9f9de6ab22c311d793d23f24\"", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "Location": "https://api.github.com/repos/forkOwner/repo/git/refs/meta/_netlify_cms", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A36:244EB:18201F7:1D4E303:5D77ABB0", + "connection": "keep-alive" + }, + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NTc0MDQ5OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"e93eaf739873bf93b571780ae92d14ada958380f\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/e93eaf739873bf93b571780ae92d14ada958380f\"\n }\n}\n", + "status": 201 + }, + { + "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJ1c2VyIjoiZm9ya093bmVyIiwic3RhdHVzIjoiZHJhZnQiLCJicmFuY2giOiJjbXMvZm9ya093bmVyL3JlcG8vcG9zdHMvMTk3MC0wMS0wMS1maXJzdC10aXRsZSIsImNvbGxlY3Rpb24iOiJwb3N0cyIsImNvbW1pdE1lc3NhZ2UiOiJDcmVhdGUgUG9zdCDigJwxOTcwLTAxLTAxLWZpcnN0LXRpdGxl4oCdIiwidGl0bGUiOiJmaXJzdCB0aXRsZSIsImRlc2NyaXB0aW9uIjoiZmlyc3QgZGVzY3JpcHRpb24iLCJvYmplY3RzIjp7ImVudHJ5Ijp7InBhdGgiOiJjb250ZW50L3Bvc3RzLzE5NzAtMDEtMDEtZmlyc3QtdGl0bGUubWQiLCJzaGEiOiJhMDQxMjQ1ODE0ODkyZTNmNzNmNjNjYTU0MzMzZmRhNjQ5YjdmYzBiIn0sImZpbGVzIjpbXX0sInRpbWVTdGFtcCI6IjE5NzAtMDEtMDFUMDA6MDA6MDAuMzAwWiJ9\",\"encoding\":\"base64\"}", + "method": "POST", + "url": "/repos/forkOwner/repo/git/blobs?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:57:05 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "212", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4763", + "X-RateLimit-Reset": "1568127381", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"1c80b93e938233b53de969f9edee439f\"", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/forkOwner/repo/git/blobs/82976a6de475d051a4819a4a72f8c983d062263f", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A39:15110:1897949:1DE1555:5D77ABB1", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"82976a6de475d051a4819a4a72f8c983d062263f\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/82976a6de475d051a4819a4a72f8c983d062263f\"\n}\n", + "status": 201 + }, + { + "method": "GET", + "url": "/repos/forkOwner/repo/git/trees/e93eaf739873bf93b571780ae92d14ada958380f?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:57:06 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4762", + "X-RateLimit-Reset": "1568127381", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"6153f7f1155eff7c70e29bf188485714\"", + "Last-Modified": "Tue, 10 Sep 2019 13:56:30 GMT", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A3B:15110:1897A80:1DE16CE:5D77ABB2", + "content-length": "571", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"e93eaf739873bf93b571780ae92d14ada958380f\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/e93eaf739873bf93b571780ae92d14ada958380f\",\n \"tree\": [\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 200 + }, + { + "body": "{\"base_tree\":\"e93eaf739873bf93b571780ae92d14ada958380f\",\"tree\":[{\"path\":\"forkOwner/repo/posts/1970-01-01-first-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"82976a6de475d051a4819a4a72f8c983d062263f\"}]}", + "method": "POST", + "url": "/repos/forkOwner/repo/git/trees?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:57:07 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "878", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4761", + "X-RateLimit-Reset": "1568127381", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"f84e48cd87adfda33063948f8f88b32d\"", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/forkOwner/repo/git/trees/b1fea30f625f7ed258f441a52a8ad2283090a7a5", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A3C:244E7:11B4D92:159BE21:5D77ABB2", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"b1fea30f625f7ed258f441a52a8ad2283090a7a5\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/b1fea30f625f7ed258f441a52a8ad2283090a7a5\",\n \"tree\": [\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n },\n {\n \"path\": \"forkOwner\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"f2b6be6cd5f4514b035e9cb00badad1e6b763cc5\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/f2b6be6cd5f4514b035e9cb00badad1e6b763cc5\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"message\":\"Updating “forkOwner/repo/posts/1970-01-01-first-title” metadata\",\"tree\":\"b1fea30f625f7ed258f441a52a8ad2283090a7a5\",\"parents\":[\"e93eaf739873bf93b571780ae92d14ada958380f\"]}", + "method": "POST", + "url": "/repos/forkOwner/repo/git/commits?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:57:08 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "1641", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4760", + "X-RateLimit-Reset": "1568127381", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"d9050d68dfc8b70f6f9685e4f6467fa8\"", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/forkOwner/repo/git/commits/77e5ce8a8cc00486eb3582f5d5b2ebbcfcbaf5a5", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A3E:B4DE:120356F:15EDE2F:5D77ABB3", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"77e5ce8a8cc00486eb3582f5d5b2ebbcfcbaf5a5\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NTc0MDQ5Ojc3ZTVjZThhOGNjMDA0ODZlYjM1ODJmNWQ1YjJlYmJjZmNiYWY1YTU=\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/77e5ce8a8cc00486eb3582f5d5b2ebbcfcbaf5a5\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/77e5ce8a8cc00486eb3582f5d5b2ebbcfcbaf5a5\",\n \"author\": {\n \"name\": \"forkOwner\",\n \"email\": \"53494188+forkOwner@users.noreply.github.com\",\n \"date\": \"2019-09-10T13:57:08Z\"\n },\n \"committer\": {\n \"name\": \"forkOwner\",\n \"email\": \"53494188+forkOwner@users.noreply.github.com\",\n \"date\": \"2019-09-10T13:57:08Z\"\n },\n \"tree\": {\n \"sha\": \"b1fea30f625f7ed258f441a52a8ad2283090a7a5\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/b1fea30f625f7ed258f441a52a8ad2283090a7a5\"\n },\n \"message\": \"Updating “forkOwner/repo/posts/1970-01-01-first-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"e93eaf739873bf93b571780ae92d14ada958380f\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/e93eaf739873bf93b571780ae92d14ada958380f\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/e93eaf739873bf93b571780ae92d14ada958380f\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "status": 201 + }, + { + "body": "{\"sha\":\"77e5ce8a8cc00486eb3582f5d5b2ebbcfcbaf5a5\",\"force\":false}", + "method": "PATCH", + "url": "/repos/forkOwner/repo/git/refs/meta/_netlify_cms?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:57:09 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4759", + "X-RateLimit-Reset": "1568127381", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"aca23a8a4dc31c8853f057f6b26df188\"", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A41:2B24:17DFF7F:1D064CF:5D77ABB4", + "content-length": "494", + "connection": "keep-alive" + }, + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NTc0MDQ5OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"77e5ce8a8cc00486eb3582f5d5b2ebbcfcbaf5a5\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/77e5ce8a8cc00486eb3582f5d5b2ebbcfcbaf5a5\"\n }\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=master", + "headers": { + "Date": "Tue, 10 Sep 2019 13:57:10 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "404 Not Found", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4758", + "X-RateLimit-Reset": "1568127381", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A42:3ED7B:1276049:166CB5C:5D77ABB6", + "content-length": "116", + "connection": "keep-alive" + }, + "response": "{\n \"message\": \"Not Found\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/#get-contents\"\n}\n", + "status": 404 + }, + { + "method": "GET", + "url": "/repos/forkOwner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=cms/forkOwner/repo/posts/1970-01-01-first-title", + "headers": { + "Date": "Tue, 10 Sep 2019 13:57:10 GMT", + "Content-Type": "application/vnd.github.VERSION.raw; charset=utf-8", + "Content-Length": "167", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4757", + "X-RateLimit-Reset": "1568127381", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"a041245814892e3f73f63ca54333fda649b7fc0b\"", + "Last-Modified": "Tue, 10 Sep 2019 13:56:58 GMT", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A44:244E4:AFA53C:D4DA1B:5D77ABB6", + "connection": "keep-alive" + }, + "response": "---\ntemplate: post\ntitle: first title\ndraft: true\ndate: 1970-01-01T00:00:00.000Z\ndescription: first description\ncategory: first category\ntags:\n - tag1\n---\nfirst body\n", + "status": 200 + } +] \ No newline at end of file diff --git a/cypress/fixtures/Github Backend Editorial Workflow - REST API - Open Authoring__can create an entry.json b/cypress/fixtures/Github Backend Editorial Workflow - REST API - Open Authoring__can create an entry.json new file mode 100644 index 00000000..c07a0d86 --- /dev/null +++ b/cypress/fixtures/Github Backend Editorial Workflow - REST API - Open Authoring__can create an entry.json @@ -0,0 +1,1214 @@ +[ + { + "method": "GET", + "url": "/user", + "headers": { + "Date": "Tue, 10 Sep 2019 13:53:40 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4620", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"fb606f875be1d23b690ea5f5e26b9fe9\"", + "Last-Modified": "Wed, 28 Aug 2019 04:48:54 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BBA:B4E0:16B8345:1BA7194:5D77AAE4", + "content-length": "1321", + "connection": "keep-alive" + }, + "response": "{\"login\":\"owner\",\"id\":1,\"avatar_url\":\"https://avatars1.githubusercontent.com/u/7892489?v=4\",\"name\":\"owner\"}", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/collaborators/owner/permission", + "headers": { + "Date": "Tue, 10 Sep 2019 13:53:41 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4619", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"254416b9fc40a4c5acc82d271a9b493b\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BBC:2B1F:1227D8D:1628185:5D77AAE5", + "content-length": "1071", + "connection": "keep-alive" + }, + "response": "{\n \"permission\": \"admin\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/user?ts=0", + "headers": { + "Date": "Tue, 10 Sep 2019 13:53:42 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4618", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"fb606f875be1d23b690ea5f5e26b9fe9\"", + "Last-Modified": "Wed, 28 Aug 2019 04:48:54 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BBE:1510D:470153:5711EF:5D77AAE5", + "content-length": "1321", + "connection": "keep-alive" + }, + "response": "{\"login\":\"owner\",\"id\":1,\"avatar_url\":\"https://avatars1.githubusercontent.com/u/7892489?v=4\",\"name\":\"owner\"}", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo?ts=0", + "headers": { + "Date": "Tue, 10 Sep 2019 13:53:42 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4617", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"80c6bf469b0558783c6c80640a44e52b\"", + "Last-Modified": "Tue, 10 Sep 2019 13:53:22 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BC0:1510E:AC4906:D1EE4B:5D77AAE6", + "content-length": "7296", + "connection": "keep-alive" + }, + "response": "{\n \"id\": 207573159,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NzMxNTk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-10T13:52:54Z\",\n \"updated_at\": \"2019-09-10T13:53:22Z\",\n \"pushed_at\": \"2019-09-10T13:53:18Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\",\n \"permissions\": {\n \"admin\": true,\n \"push\": true,\n \"pull\": true\n },\n \"allow_squash_merge\": true,\n \"allow_merge_commit\": true,\n \"allow_rebase_merge\": true,\n \"network_count\": 0,\n \"subscribers_count\": 1\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/content/posts?ts=0&ref=master", + "headers": { + "Date": "Tue, 10 Sep 2019 13:53:43 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4616", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"c5b7f6d674ba193bb7b4a5fcf4933034e1b7f2b7\"", + "Last-Modified": "Tue, 10 Sep 2019 13:53:22 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BC2:B4DA:5287D2:64AC6B:5D77AAE6", + "content-length": "7422", + "connection": "keep-alive" + }, + "response": "[\n {\n \"name\": \"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"path\": \"content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"sha\": \"6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"size\": 1707,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"html\": \"https://github.com/owner/repo/blob/master/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md\"\n }\n },\n {\n \"name\": \"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"path\": \"content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"sha\": \"d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"size\": 2565,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"html\": \"https://github.com/owner/repo/blob/master/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\"\n }\n },\n {\n \"name\": \"2016-02-02---A-Brief-History-of-Typography.md\",\n \"path\": \"content/posts/2016-02-02---A-Brief-History-of-Typography.md\",\n \"sha\": \"0eea554365f002d0f1572af9a58522d335a794d5\",\n \"size\": 2786,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2016-02-02---A-Brief-History-of-Typography.md?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/content/posts/2016-02-02---A-Brief-History-of-Typography.md\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/content/posts/2016-02-02---A-Brief-History-of-Typography.md\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2016-02-02---A-Brief-History-of-Typography.md?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\",\n \"html\": \"https://github.com/owner/repo/blob/master/content/posts/2016-02-02---A-Brief-History-of-Typography.md\"\n }\n },\n {\n \"name\": \"2017-18-08---The-Birth-of-Movable-Type.md\",\n \"path\": \"content/posts/2017-18-08---The-Birth-of-Movable-Type.md\",\n \"sha\": \"44f78c474d04273185a95821426f75affc9b0044\",\n \"size\": 16071,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2017-18-08---The-Birth-of-Movable-Type.md?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/content/posts/2017-18-08---The-Birth-of-Movable-Type.md\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/content/posts/2017-18-08---The-Birth-of-Movable-Type.md\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2017-18-08---The-Birth-of-Movable-Type.md?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\",\n \"html\": \"https://github.com/owner/repo/blob/master/content/posts/2017-18-08---The-Birth-of-Movable-Type.md\"\n }\n },\n {\n \"name\": \"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"path\": \"content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"sha\": \"a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"size\": 7465,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"html\": \"https://github.com/owner/repo/blob/master/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md\"\n }\n }\n]\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/static/media?ts=0&ref=master", + "headers": { + "Date": "Tue, 10 Sep 2019 13:53:43 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4615", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"c5b7f6d674ba193bb7b4a5fcf4933034e1b7f2b7\"", + "Last-Modified": "Tue, 10 Sep 2019 13:53:22 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BC4:9D1F:A2CD0D:C6AB4F:5D77AAE6", + "content-length": "12362", + "connection": "keep-alive" + }, + "response": "[\n {\n \"name\": \"42-line-bible.jpg\",\n \"path\": \"static/media/42-line-bible.jpg\",\n \"sha\": \"41c8d12f9ca5864beb827c381fbeff935209d5fb\",\n \"size\": 671242,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/static/media/42-line-bible.jpg?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/static/media/42-line-bible.jpg\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/41c8d12f9ca5864beb827c381fbeff935209d5fb\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/static/media/42-line-bible.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/static/media/42-line-bible.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/41c8d12f9ca5864beb827c381fbeff935209d5fb\",\n \"html\": \"https://github.com/owner/repo/blob/master/static/media/42-line-bible.jpg\"\n }\n },\n {\n \"name\": \"gutenberg.jpg\",\n \"path\": \"static/media/gutenberg.jpg\",\n \"sha\": \"04315e355873ea5d358d9c371c39a6845c1ae4ae\",\n \"size\": 155002,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/static/media/gutenberg.jpg?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/static/media/gutenberg.jpg\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/04315e355873ea5d358d9c371c39a6845c1ae4ae\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/static/media/gutenberg.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/static/media/gutenberg.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/04315e355873ea5d358d9c371c39a6845c1ae4ae\",\n \"html\": \"https://github.com/owner/repo/blob/master/static/media/gutenberg.jpg\"\n }\n },\n {\n \"name\": \"image-0.jpg\",\n \"path\": \"static/media/image-0.jpg\",\n \"sha\": \"b70a1b64fd4fa9635823231a0ba92c6dc9393f16\",\n \"size\": 660287,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/static/media/image-0.jpg?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/static/media/image-0.jpg\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/b70a1b64fd4fa9635823231a0ba92c6dc9393f16\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/static/media/image-0.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/static/media/image-0.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/b70a1b64fd4fa9635823231a0ba92c6dc9393f16\",\n \"html\": \"https://github.com/owner/repo/blob/master/static/media/image-0.jpg\"\n }\n },\n {\n \"name\": \"image-1.jpg\",\n \"path\": \"static/media/image-1.jpg\",\n \"sha\": \"05eedae372b829c62501ac751b2d42dcc432541b\",\n \"size\": 392411,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/static/media/image-1.jpg?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/static/media/image-1.jpg\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/05eedae372b829c62501ac751b2d42dcc432541b\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/static/media/image-1.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/static/media/image-1.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/05eedae372b829c62501ac751b2d42dcc432541b\",\n \"html\": \"https://github.com/owner/repo/blob/master/static/media/image-1.jpg\"\n }\n },\n {\n \"name\": \"image-2.jpg\",\n \"path\": \"static/media/image-2.jpg\",\n \"sha\": \"53845ed35faf8939bea242bb85eda7c324b1be0b\",\n \"size\": 99147,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/static/media/image-2.jpg?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/static/media/image-2.jpg\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/53845ed35faf8939bea242bb85eda7c324b1be0b\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/static/media/image-2.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/static/media/image-2.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/53845ed35faf8939bea242bb85eda7c324b1be0b\",\n \"html\": \"https://github.com/owner/repo/blob/master/static/media/image-2.jpg\"\n }\n },\n {\n \"name\": \"image-3.jpg\",\n \"path\": \"static/media/image-3.jpg\",\n \"sha\": \"8b2339d97069e826fae1f156212e40ae458454e3\",\n \"size\": 358022,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/static/media/image-3.jpg?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/static/media/image-3.jpg\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/8b2339d97069e826fae1f156212e40ae458454e3\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/static/media/image-3.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/static/media/image-3.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/8b2339d97069e826fae1f156212e40ae458454e3\",\n \"html\": \"https://github.com/owner/repo/blob/master/static/media/image-3.jpg\"\n }\n },\n {\n \"name\": \"image-4.jpg\",\n \"path\": \"static/media/image-4.jpg\",\n \"sha\": \"a8f6f21253a67a4284b5a953b2fe633d44152ecd\",\n \"size\": 114837,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/static/media/image-4.jpg?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/static/media/image-4.jpg\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/a8f6f21253a67a4284b5a953b2fe633d44152ecd\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/static/media/image-4.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/static/media/image-4.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/a8f6f21253a67a4284b5a953b2fe633d44152ecd\",\n \"html\": \"https://github.com/owner/repo/blob/master/static/media/image-4.jpg\"\n }\n },\n {\n \"name\": \"movable-type.jpg\",\n \"path\": \"static/media/movable-type.jpg\",\n \"sha\": \"57b4e925ea00bd8e195cf4418eb6eb2995ea5f10\",\n \"size\": 559028,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/static/media/movable-type.jpg?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/static/media/movable-type.jpg\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/57b4e925ea00bd8e195cf4418eb6eb2995ea5f10\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/static/media/movable-type.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/static/media/movable-type.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/57b4e925ea00bd8e195cf4418eb6eb2995ea5f10\",\n \"html\": \"https://github.com/owner/repo/blob/master/static/media/movable-type.jpg\"\n }\n },\n {\n \"name\": \"printing-press.jpg\",\n \"path\": \"static/media/printing-press.jpg\",\n \"sha\": \"d27f56c9437d9becd2f56cc627c9322c2f1f61f6\",\n \"size\": 279283,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/static/media/printing-press.jpg?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/static/media/printing-press.jpg\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/d27f56c9437d9becd2f56cc627c9322c2f1f61f6\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/static/media/printing-press.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/static/media/printing-press.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/d27f56c9437d9becd2f56cc627c9322c2f1f61f6\",\n \"html\": \"https://github.com/owner/repo/blob/master/static/media/printing-press.jpg\"\n }\n },\n {\n \"name\": \"type-through-time.jpg\",\n \"path\": \"static/media/type-through-time.jpg\",\n \"sha\": \"3f08366a805c51a60ec5056010f22de4ba08abaa\",\n \"size\": 117689,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/static/media/type-through-time.jpg?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/static/media/type-through-time.jpg\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/3f08366a805c51a60ec5056010f22de4ba08abaa\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/static/media/type-through-time.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/static/media/type-through-time.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/3f08366a805c51a60ec5056010f22de4ba08abaa\",\n \"html\": \"https://github.com/owner/repo/blob/master/static/media/type-through-time.jpg\"\n }\n }\n]\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9?ts=0", + "headers": { + "Date": "Tue, 10 Sep 2019 13:53:44 GMT", + "Content-Type": "text/plain; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4614", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"f9b97e27090d24f9b7c773ede73acd0c\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BCD:B4DC:ABBE81:D0E978:5D77AAE7", + "content-length": "2565", + "connection": "keep-alive" + }, + "response": "---\ntitle: The Origins of Social Stationery Lettering\ndate: \"2016-12-01T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Design Culture\"\ndescription: \"Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante.\"\ncanonical: ''\n---\n\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\n\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-3.jpg)\n\n## Header Level 2\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \n\n
\n\t
\n\t\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\n\t\t
\n\t\t\t— Aliquam tincidunt mauris eu risus.\n\t\t
\n\t
\n
\n\n### Header Level 3\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\n\n```css\n#header h1 a {\n display: block;\n width: 300px;\n height: 80px;\n}\n```\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5?ts=0", + "headers": { + "Date": "Tue, 10 Sep 2019 13:53:44 GMT", + "Content-Type": "text/plain; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4613", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"733ab4cffe213d8db3be254e7fee8f69\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BD2:244EB:180C46F:1D358C1:5D77AAE7", + "content-length": "2786", + "connection": "keep-alive" + }, + "response": "---\ntitle: \"A Brief History of Typography\"\ndate: \"2016-02-02T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Design Inspiration\"\ntags:\n - \"Linotype\"\n - \"Monotype\"\n - \"History of typography\"\n - \"Helvetica\"\ndescription: \"Morbi in sem quis dui placerat ornare. Pellentesque odio nisi, euismod in, pharetra a, ultricies in, diam. Sed arcu. Cras consequat.\"\ncanonical: ''\n---\n\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\n\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-0.jpg)\n\n## Header Level 2\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \n\n
\n\t
\n\t\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\n\t\t
\n\t\t\t— Aliquam tincidunt mauris eu risus.\n\t\t
\n\t
\n
\n\n### Header Level 3\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\n\n```css\n#header h1 a {\n display: block;\n width: 300px;\n height: 80px;\n}\n```\n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043?ts=0", + "headers": { + "Date": "Tue, 10 Sep 2019 13:53:44 GMT", + "Content-Type": "text/plain; charset=iso-8859-1", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4612", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"b11610ec1fe2f13ce388952c3fdf3423\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BCA:2B19:A9452F:CE08FA:5D77AAE7", + "content-length": "1707", + "connection": "keep-alive" + }, + "response": "---\ntitle: Perfecting the Art of Perfection\ndate: \"2016-09-01T23:46:37.121Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Design Inspiration\"\ntags:\n - \"Handwriting\"\n - \"Learning to write\"\ndescription: \"Quisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\"\ncanonical: ''\n---\n\nQuisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\n\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-2.jpg)\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. \n\nPraesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044?ts=0", + "headers": { + "Date": "Tue, 10 Sep 2019 13:53:44 GMT", + "Content-Type": "text/plain; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4611", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"6e2453f34250f47bb0adc4ff2f6887a8\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BD7:1510F:12331D5:16165B9:5D77AAE7", + "content-length": "16071", + "connection": "keep-alive" + }, + "response": "---\ntitle: \"Johannes Gutenberg: The Birth of Movable Type\"\ndate: \"2017-08-18T22:12:03.284Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Typography\"\ntags:\n - \"Open source\"\n - \"Gatsby\"\n - \"Typography\"\ndescription: \"German inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\"\ncanonical: ''\n---\n\nGerman inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\n\n**Johannes Gensfleisch zur Laden zum Gutenberg** (c. 1398 – 1468) was a German blacksmith, goldsmith, printer, and publisher who introduced printing to Europe. His invention of mechanical movable type printing started the Printing Revolution and is widely regarded as the most important event of the modern period. It played a key role in the development of the Renaissance, Reformation, the Age of Enlightenment, and the Scientific revolution and laid the material basis for the modern knowledge-based economy and the spread of learning to the masses.\n\n
\n\t\"Gutenberg\"\n\t
Johannes Gutenberg
\n
\n\nWith his invention of the printing press, Gutenberg was the first European to use movable type printing, in around 1439. Among his many contributions to printing are: the invention of a process for mass-producing movable type; the use of oil-based ink; and the use of a wooden printing press similar to the agricultural screw presses of the period. His truly epochal invention was the combination of these elements into a practical system that allowed the mass production of printed books and was economically viable for printers and readers alike. Gutenberg's method for making type is traditionally considered to have included a type metal alloy and a hand mould for casting type. The alloy was a mixture of lead, tin, and antimony that melted at a relatively low temperature for faster and more economical casting, cast well, and created a durable type.\n\nIn Renaissance Europe, the arrival of mechanical movable type printing introduced the era of mass communication which permanently altered the structure of society. The relatively unrestricted circulation of information — including revolutionary ideas — transcended borders, captured the masses in the Reformation and threatened the power of political and religious authorities; the sharp increase in literacy broke the monopoly of the literate elite on education and learning and bolstered the emerging middle class. Across Europe, the increasing cultural self-awareness of its people led to the rise of proto-nationalism, accelerated by the flowering of the European vernacular languages to the detriment of Latin's status as lingua franca. In the 19th century, the replacement of the hand-operated Gutenberg-style press by steam-powered rotary presses allowed printing on an industrial scale, while Western-style printing was adopted all over the world, becoming practically the sole medium for modern bulk printing.\n\nThe use of movable type was a marked improvement on the handwritten manuscript, which was the existing method of book production in Europe, and upon woodblock printing, and revolutionized European book-making. Gutenberg's printing technology spread rapidly throughout Europe and later the world.\n\nHis major work, the Gutenberg Bible (also known as the 42-line Bible), has been acclaimed for its high aesthetic and technical quality.\n\n## Printing Press\n\nAround 1439, Gutenberg was involved in a financial misadventure making polished metal mirrors (which were believed to capture holy light from religious relics) for sale to pilgrims to Aachen: in 1439 the city was planning to exhibit its collection of relics from Emperor Charlemagne but the event was delayed by one year due to a severe flood and the capital already spent could not be repaid. When the question of satisfying the investors came up, Gutenberg is said to have promised to share a “secret”. It has been widely speculated that this secret may have been the idea of printing with movable type. Also around 1439–1440, the Dutch Laurens Janszoon Coster came up with the idea of printing. Legend has it that the idea came to him “like a ray of light”.\n\n
\n\t\"Early\n\t
Early wooden printing press as depicted in 1568.
\n
\n\nUntil at least 1444 he lived in Strasbourg, most likely in the St. Arbogast parish. It was in Strasbourg in 1440 that Gutenberg is said to have perfected and unveiled the secret of printing based on his research, mysteriously entitled Kunst und Aventur (art and enterprise). It is not clear what work he was engaged in, or whether some early trials with printing from movable type may have been conducted there. After this, there is a gap of four years in the record. In 1448, he was back in Mainz, where he took out a loan from his brother-in-law Arnold Gelthus, quite possibly for a printing press or related paraphernalia. By this date, Gutenberg may have been familiar with intaglio printing; it is claimed that he had worked on copper engravings with an artist known as the Master of Playing Cards.\n\nBy 1450, the press was in operation, and a German poem had been printed, possibly the first item to be printed there. Gutenberg was able to convince the wealthy moneylender Johann Fust for a loan of 800 guilders. Peter Schöffer, who became Fust’s son-in-law, also joined the enterprise. Schöffer had worked as a scribe in Paris and is believed to have designed some of the first typefaces.\n\n
\n\t
\n\t\t

All that has been written to me about that marvelous man seen at Frankfurt is true. I have not seen complete Bibles but only a number of quires of various books of the Bible. The script was very neat and legible, not at all difficult to follow—your grace would be able to read it without effort, and indeed without glasses.

\n\t\t
\n\t\t\t—Future pope Pius II in a letter to Cardinal Carvajal, March 1455\n\t\t
\n\t
\n
\n\nGutenberg's workshop was set up at Hof Humbrecht, a property belonging to a distant relative. It is not clear when Gutenberg conceived the Bible project, but for this he borrowed another 800 guilders from Fust, and work commenced in 1452. At the same time, the press was also printing other, more lucrative texts (possibly Latin grammars). There is also some speculation that there may have been two presses, one for the pedestrian texts, and one for the Bible. One of the profit-making enterprises of the new press was the printing of thousands of indulgences for the church, documented from 1454–55.\n\nIn 1455 Gutenberg completed his 42-line Bible, known as the Gutenberg Bible. About 180 copies were printed, most on paper and some on vellum.\n\n## Court Case\n\nSome time in 1456, there was a dispute between Gutenberg and Fust, and Fust demanded his money back, accusing Gutenberg of misusing the funds. Meanwhile the expenses of the Bible project had proliferated, and Gutenberg's debt now exceeded 20,000 guilders. Fust sued at the archbishop's court. A November 1455 legal document records that there was a partnership for a \"project of the books,\" the funds for which Gutenberg had used for other purposes, according to Fust. The court decided in favor of Fust, giving him control over the Bible printing workshop and half of all printed Bibles.\n\nThus Gutenberg was effectively bankrupt, but it appears he retained (or re-started) a small printing shop, and participated in the printing of a Bible in the town of Bamberg around 1459, for which he seems at least to have supplied the type. But since his printed books never carry his name or a date, it is difficult to be certain, and there is consequently a considerable scholarly debate on this subject. It is also possible that the large Catholicon dictionary, 300 copies of 754 pages, printed in Mainz in 1460, may have been executed in his workshop.\n\nMeanwhile, the Fust–Schöffer shop was the first in Europe to bring out a book with the printer's name and date, the Mainz Psalter of August 1457, and while proudly proclaiming the mechanical process by which it had been produced, it made no mention of Gutenberg.\n\n## Later Life\n\nIn 1462, during a conflict between two archbishops, Mainz was sacked by archbishop Adolph von Nassau, and Gutenberg was exiled. An old man by now, he moved to Eltville where he may have initiated and supervised a new printing press belonging to the brothers Bechtermünze.\n\nIn January 1465, Gutenberg's achievements were recognized and he was given the title Hofmann (gentleman of the court) by von Nassau. This honor included a stipend, an annual court outfit, as well as 2,180 litres of grain and 2,000 litres of wine tax-free. It is believed he may have moved back to Mainz around this time, but this is not certain.\n\n***\n\nGutenberg died in 1468 and was buried in the Franciscan church at Mainz, his contributions largely unknown. This church and the cemetery were later destroyed, and Gutenberg's grave is now lost.\n\nIn 1504, he was mentioned as the inventor of typography in a book by Professor Ivo Wittig. It was not until 1567 that the first portrait of Gutenberg, almost certainly an imaginary reconstruction, appeared in Heinrich Pantaleon's biography of famous Germans.\n\n## Printing Method With Movable Type\n\nGutenberg's early printing process, and what tests he may have made with movable type, are not known in great detail. His later Bibles were printed in such a way as to have required large quantities of type, some estimates suggesting as many as 100,000 individual sorts. Setting each page would take, perhaps, half a day, and considering all the work in loading the press, inking the type, pulling the impressions, hanging up the sheets, distributing the type, etc., it is thought that the Gutenberg–Fust shop might have employed as many as 25 craftsmen.\n\n![Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5](/media/movable-type.jpg)\n\n*Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5*\n\nGutenberg's technique of making movable type remains unclear. In the following decades, punches and copper matrices became standardized in the rapidly disseminating printing presses across Europe. Whether Gutenberg used this sophisticated technique or a somewhat primitive version has been the subject of considerable debate.\n\nIn the standard process of making type, a hard metal punch (made by punchcutting, with the letter carved back to front) is hammered into a softer copper bar, creating a matrix. This is then placed into a hand-held mould and a piece of type, or \"sort\", is cast by filling the mould with molten type-metal; this cools almost at once, and the resulting piece of type can be removed from the mould. The matrix can be reused to create hundreds, or thousands, of identical sorts so that the same character appearing anywhere within the book will appear very uniform, giving rise, over time, to the development of distinct styles of typefaces or fonts. After casting, the sorts are arranged into type-cases, and used to make up pages which are inked and printed, a procedure which can be repeated hundreds, or thousands, of times. The sorts can be reused in any combination, earning the process the name of “movable type”.\n\nThe invention of the making of types with punch, matrix and mold has been widely attributed to Gutenberg. However, recent evidence suggests that Gutenberg's process was somewhat different. If he used the punch and matrix approach, all his letters should have been nearly identical, with some variations due to miscasting and inking. However, the type used in Gutenberg's earliest work shows other variations.\n\n
\n\t
\n\t\t

It is a press, certainly, but a press from which shall flow in inexhaustible streams… Through it, god will spread his word.

\n\t\t
\n\t\t\t—Johannes Gutenberg\n\t\t
\n\t
\n
\n\nIn 2001, the physicist Blaise Agüera y Arcas and Princeton librarian Paul Needham, used digital scans of a Papal bull in the Scheide Library, Princeton, to carefully compare the same letters (types) appearing in different parts of the printed text. The irregularities in Gutenberg's type, particularly in simple characters such as the hyphen, suggested that the variations could not have come from either ink smear or from wear and damage on the pieces of metal on the types themselves. While some identical types are clearly used on other pages, other variations, subjected to detailed image analysis, suggested that they could not have been produced from the same matrix. Transmitted light pictures of the page also appeared to reveal substructures in the type that could not arise from traditional punchcutting techniques. They hypothesized that the method may have involved impressing simple shapes to create alphabets in “cuneiform” style in a matrix made of some soft material, perhaps sand. Casting the type would destroy the mould, and the matrix would need to be recreated to make each additional sort. This could explain the variations in the type, as well as the substructures observed in the printed images.\n\nThus, they feel that “the decisive factor for the birth of typography”, the use of reusable moulds for casting type, might have been a more progressive process than was previously thought. They suggest that the additional step of using the punch to create a mould that could be reused many times was not taken until twenty years later, in the 1470s. Others have not accepted some or all of their suggestions, and have interpreted the evidence in other ways, and the truth of the matter remains very uncertain.\n\nA 1568 history by Hadrianus Junius of Holland claims that the basic idea of the movable type came to Gutenberg from Laurens Janszoon Coster via Fust, who was apprenticed to Coster in the 1430s and may have brought some of his equipment from Haarlem to Mainz. While Coster appears to have experimented with moulds and castable metal type, there is no evidence that he had actually printed anything with this technology. He was an inventor and a goldsmith. However, there is one indirect supporter of the claim that Coster might be the inventor. The author of the Cologne Chronicle of 1499 quotes Ulrich Zell, the first printer of Cologne, that printing was performed in Mainz in 1450, but that some type of printing of lower quality had previously occurred in the Netherlands. However, the chronicle does not mention the name of Coster, while it actually credits Gutenberg as the \"first inventor of printing\" in the very same passage (fol. 312). The first securely dated book by Dutch printers is from 1471, and the Coster connection is today regarded as a mere legend.\n\nThe 19th century printer and typefounder Fournier Le Jeune suggested that Gutenberg might not have been using type cast with a reusable matrix, but possibly wooden types that were carved individually. A similar suggestion was made by Nash in 2004. This remains possible, albeit entirely unproven.\n\nIt has also been questioned whether Gutenberg used movable types at all. In 2004, Italian professor Bruno Fabbiani claimed that examination of the 42-line Bible revealed an overlapping of letters, suggesting that Gutenberg did not in fact use movable type (individual cast characters) but rather used whole plates made from a system somewhat like a modern typewriter, whereby the letters were stamped successively into the plate and then printed. However, most specialists regard the occasional overlapping of type as caused by paper movement over pieces of type of slightly unequal height.", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774?ts=0", + "headers": { + "Date": "Tue, 10 Sep 2019 13:53:45 GMT", + "Content-Type": "text/plain; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4610", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"d2bb4e67afce9cad20457cc0c72b8a41\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BDC:15110:1883396:1DC8114:5D77AAE8", + "content-length": "7465", + "connection": "keep-alive" + }, + "response": "---\ntitle: Humane Typography in the Digital Age\ndate: \"2017-08-19T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Typography\"\ntags:\n - \"Design\"\n - \"Typography\"\n - \"Web Development\"\ndescription: \"An Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\"\ncanonical: ''\n---\n\n- [The first transition](#the-first-transition)\n- [The digital age](#the-digital-age)\n- [Loss of humanity through transitions](#loss-of-humanity-through-transitions)\n- [Chasing perfection](#chasing-perfection)\n\nAn Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\n\nThe typography of this industrial age was no longer handcrafted. Mass production and profit became more important. Quantity mattered more than the quality. The books and printed works in general lost a part of its humanity. The typefaces were not produced by craftsmen anymore. It was the machines printing and tying the books together now. The craftsmen had to let go of their craft and became a cog in the process. An extension of the industrial machine.\n\nBut the victory of the industrialism didn’t mean that the craftsmen were completely extinct. The two worlds continued to coexist independently. Each recognising the good in the other — the power of industrialism and the humanity of craftsmanship. This was the second transition that would strip typography of a part of its humanity. We have to go 500 years back in time to meet the first one.\n\n## The first transition\n\nA similar conflict emerged after the invention of the first printing press in Europe. Johannes Gutenberg invented movable type and used it to produce different compositions. His workshop could print up to 240 impressions per hour. Until then, the books were being copied by hand. All the books were handwritten and decorated with hand drawn ornaments and figures. A process of copying a book was long but each book, even a copy, was a work of art.\n\nThe first printed books were, at first, perceived as inferior to the handwritten ones. They were smaller and cheaper to produce. Movable type provided the printers with flexibility that allowed them to print books in languages other than Latin. Gill describes the transition to industrialism as something that people needed and wanted. Something similar happened after the first printed books emerged. People wanted books in a language they understood and they wanted books they could take with them. They were hungry for knowledge and printed books satisfied this hunger.\n\n![42-line-bible.jpg](/media/42-line-bible.jpg)\n\n*The 42–Line Bible, printed by Gutenberg.*\n\nBut, through this transition, the book lost a large part of its humanity. The machine took over most of the process but craftsmanship was still a part of it. The typefaces were cut manually by the first punch cutters. The paper was made by hand. The illustrations and ornaments were still being hand drawn. These were the remains of the craftsmanship that went almost extinct in the times of Eric Gill.\n\n## The digital age\n\nThe first transition took away a large part of humanity from written communication. Industrialisation, the second transition described by Eric Gill, took away most of what was left. But it’s the third transition that stripped it naked. Typefaces are faceless these days. They’re just fonts on our computers. Hardly anyone knows their stories. Hardly anyone cares. Flicking through thousands of typefaces and finding the “right one” is a matter of minutes.\n\n> In the new computer age the proliferation of typefaces and type manipulations represents a new level of visual pollution threatening our culture. Out of thousands of typefaces, all we need are a few basic ones, and trash the rest.\n>\n— Massimo Vignelli\n\nTypography is not about typefaces. It’s not about what looks best, it’s about what feels right. What communicates the message best. Typography, in its essence, is about the message. “Typographical design should perform optically what the speaker creates through voice and gesture of his thoughts.”, as El Lissitzky, a famous Russian typographer, put it.\n\n## Loss of humanity through transitions\n\nEach transition took away a part of humanity from written language. Handwritten books being the most humane form and the digital typefaces being the least. Overuse of Helvetica is a good example. Messages are being told in a typeface just because it’s a safe option. It’s always there. Everyone knows it but yet, nobody knows it. Stop someone on the street and ask him what Helvetica is? Ask a designer the same question. Ask him where it came from, when, why and who designed it. Most of them will fail to answer these questions. Most of them used it in their precious projects but they still don’t spot it in the street.\n\n
\n\t
\n\t\t

Knowledge of the quality of a typeface is of the greatest importance for the functional, aesthetic and psychological effect.

\n\t\t
\n\t\t\t— Josef Mueller-Brockmann\n\t\t
\n\t
\n
\n\nTypefaces don’t look handmade these days. And that’s all right. They don’t have to. Industrialism took that away from them and we’re fine with it. We’ve traded that part of humanity for a process that produces more books that are easier to read. That can’t be bad. And it isn’t.\n\n> Humane typography will often be comparatively rough and even uncouth; but while a certain uncouthness does not seriously matter in humane works, uncouthness has no excuse whatever in the productions of the machine.\n>\n> — Eric Gill\n\nWe’ve come close to “perfection” in the last five centuries. The letters are crisp and without rough edges. We print our compositions with high–precision printers on a high quality, machine made paper.\n\n![type-through-time.jpg](/media/type-through-time.jpg)\n\n*Type through 5 centuries.*\n\nWe lost a part of ourselves because of this chase after perfection. We forgot about the craftsmanship along the way. And the worst part is that we don’t care. The transition to the digital age made that clear. We choose typefaces like clueless zombies. There’s no meaning in our work. Type sizes, leading, margins… It’s all just a few clicks or lines of code. The message isn’t important anymore. There’s no more “why” behind the “what”.\n\n## Chasing perfection\n\nHuman beings aren’t perfect. Perfection is something that will always elude us. There will always be a small part of humanity in everything we do. No matter how small that part, we should make sure that it transcends the limits of the medium. We have to think about the message first. What typeface should we use and why? Does the typeface match the message and what we want to communicate with it? What will be the leading and why? Will there be more typefaces in our design? On what ground will they be combined? What makes our design unique and why? This is the part of humanity that is left in typography. It might be the last part. Are we really going to give it up?\n\n*Originally published by [Matej Latin](http://matejlatin.co.uk/) on [Medium](https://medium.com/design-notes/humane-typography-in-the-digital-age-9bd5c16199bd?ref=webdesignernews.com#.lygo82z0x).*", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/1970-01-01-first-title.json?ts=300&ref=refs/meta/_netlify_cms", + "headers": { + "Date": "Tue, 10 Sep 2019 13:53:48 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "404 Not Found", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4609", + "X-RateLimit-Reset": "1568126651", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BE4:3ED74:1ABE6C:20BDE7:5D77AAEB", + "content-length": "144", + "connection": "keep-alive" + }, + "response": "{\n \"message\": \"No commit found for the ref refs/meta/_netlify_cms\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/\"\n}\n", + "status": 404 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=master", + "headers": { + "Date": "Tue, 10 Sep 2019 13:53:48 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "404 Not Found", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4608", + "X-RateLimit-Reset": "1568126651", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BE6:2B1F:122857D:1628B93:5D77AAEC", + "content-length": "116", + "connection": "keep-alive" + }, + "response": "{\n \"message\": \"Not Found\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/#get-contents\"\n}\n", + "status": 404 + }, + { + "body": "{\"content\":\"LS0tCnRlbXBsYXRlOiBwb3N0CnRpdGxlOiBmaXJzdCB0aXRsZQpkcmFmdDogdHJ1ZQpkYXRlOiAxOTcwLTAxLTAxVDAwOjAwOjAwLjAwMFoKZGVzY3JpcHRpb246IGZpcnN0IGRlc2NyaXB0aW9uCmNhdGVnb3J5OiBmaXJzdCBjYXRlZ29yeQp0YWdzOgogIC0gdGFnMQotLS0KZmlyc3QgYm9keQo=\",\"encoding\":\"base64\"}", + "method": "POST", + "url": "/repos/owner/repo/git/blobs?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:53:50 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "207", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4607", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"56a87df1038fbc514d2fc013aa391906\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BE9:15110:1883ACC:1DC8A56:5D77AAED", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"a041245814892e3f73f63ca54333fda649b7fc0b\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b\"\n}\n", + "status": 201 + }, + { + "method": "GET", + "url": "/repos/owner/repo/branches/master?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:53:50 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4606", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"f47adc6d20eeac555786fbffd72595af\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BEA:2B24:17CB591:1CECE8A:5D77AAEE", + "content-length": "5961", + "connection": "keep-alive" + }, + "response": "{\n \"name\": \"master\",\n \"commit\": {\n \"sha\": \"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NTczMTU5OjcyNjE3MmRlYWU5OWM4YTJjZWE0YzcxZTczNGEwMmE3OTNkNGQ5ZTU=\",\n \"commit\": {\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-08T09:08:14Z\"\n },\n \"committer\": {\n \"name\": \"GitHub\",\n \"email\": \"noreply@github.com\",\n \"date\": \"2019-09-08T09:08:14Z\"\n },\n \"message\": \"Merge pull request #10 from owner/chore/update_dependencies\\n\\nChore: update dependencies\",\n \"tree\": {\n \"sha\": \"c5b7f6d674ba193bb7b4a5fcf4933034e1b7f2b7\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/c5b7f6d674ba193bb7b4a5fcf4933034e1b7f2b7\"\n },\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"comment_count\": 0,\n \"verification\": {\n \"verified\": true,\n \"reason\": \"valid\",\n \"signature\": \"-----BEGIN PGP SIGNATURE-----\\n\\nwsBcBAABCAAQBQJddMT+CRBK7hj4Ov3rIwAAdHIIABWcobVYZFMuqSPezceRaKDr\\npXGqxvB3WLiIrvsQiBz2si9SvufXxLUdq72iaYTbXMCqIAAIBDNwHLltOKcbUF9J\\nKa8pD6cq7jpNyZfhI8xlapMwEZPu53as0tSvwdOnl/0iL+WYjUZUFQR+vrWEmllu\\nhIES9QxU2nk5zcS7t8sFRA+sJdll8GzzhoWYkpw3wgqpxCzJdf5HJS0tWyVCZM5U\\nCgSpSgTvz9bALnQxu7YVrfLGEvi8S7LaOEz5HQc+TV1hNR2dfl5hhiHhWQ1Rsx5w\\nUECV01vItNWhx2dyMn77hIu/G+bTH89WZDU+CmifsNkmvkq90fk4eNt8Hg1mxn4=\\n=6ayM\\n-----END PGP SIGNATURE-----\\n\",\n \"payload\": \"tree c5b7f6d674ba193bb7b4a5fcf4933034e1b7f2b7\\nparent 8ade583d7c02e7769dd685ca64c10851c09f51cf\\nparent 4940957ff42b034d8c47d64b383c34548a34fbb5\\nauthor owner 1567933694 +0300\\ncommitter GitHub 1567933694 +0300\\n\\nMerge pull request #10 from owner/chore/update_dependencies\\n\\nChore: update dependencies\"\n }\n },\n \"url\": \"https://api.github.com/repos/owner/repo/commits/726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"html_url\": \"https://github.com/owner/repo/commit/726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/commits/726172deae99c8a2cea4c71e734a02a793d4d9e5/comments\",\n \"author\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"committer\": {\n \"login\": \"web-flow\",\n \"id\": 19864447,\n \"node_id\": \"MDQ6VXNlcjE5ODY0NDQ3\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/web-flow\",\n \"html_url\": \"https://github.com/web-flow\",\n \"followers_url\": \"https://api.github.com/users/web-flow/followers\",\n \"following_url\": \"https://api.github.com/users/web-flow/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/web-flow/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/web-flow/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/web-flow/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/web-flow/orgs\",\n \"repos_url\": \"https://api.github.com/users/web-flow/repos\",\n \"events_url\": \"https://api.github.com/users/web-flow/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/web-flow/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"parents\": [\n {\n \"sha\": \"8ade583d7c02e7769dd685ca64c10851c09f51cf\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/8ade583d7c02e7769dd685ca64c10851c09f51cf\",\n \"html_url\": \"https://github.com/owner/repo/commit/8ade583d7c02e7769dd685ca64c10851c09f51cf\"\n },\n {\n \"sha\": \"4940957ff42b034d8c47d64b383c34548a34fbb5\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/4940957ff42b034d8c47d64b383c34548a34fbb5\",\n \"html_url\": \"https://github.com/owner/repo/commit/4940957ff42b034d8c47d64b383c34548a34fbb5\"\n }\n ]\n },\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/branches/master\",\n \"html\": \"https://github.com/owner/repo/tree/master\"\n },\n \"protected\": false,\n \"protection\": {\n \"enabled\": false,\n \"required_status_checks\": {\n \"enforcement_level\": \"off\",\n \"contexts\": [\n\n ]\n }\n },\n \"protection_url\": \"https://api.github.com/repos/owner/repo/branches/master/protection\"\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/trees/726172deae99c8a2cea4c71e734a02a793d4d9e5?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:53:51 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4605", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"d77b8ce9e58b2411117ccbf09ab34ed8\"", + "Last-Modified": "Tue, 10 Sep 2019 13:53:22 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BEC:9D21:173DB82:1C508E4:5D77AAEE", + "content-length": "11769", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"tree\": [\n {\n \"path\": \".circleci\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"e5e9af3301cac61f120b8e4d40b1733c7a45685a\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/e5e9af3301cac61f120b8e4d40b1733c7a45685a\"\n },\n {\n \"path\": \".eslintignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"80b4531b026d19f8fa589efd122e76199d23f967\",\n \"size\": 39,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/80b4531b026d19f8fa589efd122e76199d23f967\"\n },\n {\n \"path\": \".eslintrc.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"370684994aaed5b858da3a006f48cfa57e88fd27\",\n \"size\": 414,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/370684994aaed5b858da3a006f48cfa57e88fd27\"\n },\n {\n \"path\": \".flowconfig\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14aa2ac4cc0e15223ad98630a6f1325fc81f8043\",\n \"size\": 283,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14aa2ac4cc0e15223ad98630a6f1325fc81f8043\"\n },\n {\n \"path\": \".gitattributes\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"10a369ddf4f603337cabc6f21646508323941ce1\",\n \"size\": 135,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/10a369ddf4f603337cabc6f21646508323941ce1\"\n },\n {\n \"path\": \".github\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4ebeece548b52b20af59622354530a6d33b50b43\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4ebeece548b52b20af59622354530a6d33b50b43\"\n },\n {\n \"path\": \".gitignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"c071ba35b0e49899bab6d610a68eef667dbbf157\",\n \"size\": 169,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/c071ba35b0e49899bab6d610a68eef667dbbf157\"\n },\n {\n \"path\": \".prettierignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"393f050e123d998cf8c8b362ff95cc8ac4d250e5\",\n \"size\": 45,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/393f050e123d998cf8c8b362ff95cc8ac4d250e5\"\n },\n {\n \"path\": \".prettierrc\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e52ad05bb13b084d7949dd76e1b2517455162150\",\n \"size\": 223,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/e52ad05bb13b084d7949dd76e1b2517455162150\"\n },\n {\n \"path\": \".stylelintrc.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"4b4c9698d10d756f5faa025659b86375428ed0a7\",\n \"size\": 718,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/4b4c9698d10d756f5faa025659b86375428ed0a7\"\n },\n {\n \"path\": \".vscode\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"286e97ec0113ea8242b41ac222e2c3e8077e6f1e\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/286e97ec0113ea8242b41ac222e2c3e8077e6f1e\"\n },\n {\n \"path\": \"CHANGELOG.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"070a5d4f0eacd2dc0be81ae8996f8982de43046e\",\n \"size\": 2113,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/070a5d4f0eacd2dc0be81ae8996f8982de43046e\"\n },\n {\n \"path\": \"CODE_OF_CONDUCT.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"92bc7565ff0ee145a0041b5179a820f14f39ab22\",\n \"size\": 3355,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/92bc7565ff0ee145a0041b5179a820f14f39ab22\"\n },\n {\n \"path\": \"CONTRIBUTING.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"8552aa241254a61258e1ff9666ab36f32fb1e3b9\",\n \"size\": 3548,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/8552aa241254a61258e1ff9666ab36f32fb1e3b9\"\n },\n {\n \"path\": \"LICENSE\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"42d85938357b49977c126ca03b199129082d4fb8\",\n \"size\": 1091,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/42d85938357b49977c126ca03b199129082d4fb8\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"19df50a78654c8d757ca7f38447aa3d09c7abcce\",\n \"size\": 3698,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/19df50a78654c8d757ca7f38447aa3d09c7abcce\"\n },\n {\n \"path\": \"backend\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\"\n },\n {\n \"path\": \"config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"58afd573bbb69fcca000efd0f5d90b93c93a98dd\",\n \"size\": 853,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/58afd573bbb69fcca000efd0f5d90b93c93a98dd\"\n },\n {\n \"path\": \"content\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/0294ef106c58743907a5c855da1eb0f87b0b6dfc\"\n },\n {\n \"path\": \"flow-typed\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"86c32fd6c3118be5e0dbbb231a834447357236c6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/86c32fd6c3118be5e0dbbb231a834447357236c6\"\n },\n {\n \"path\": \"flow\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"0af45ad00d155c8d8c7407d913ff85278244c9ce\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/0af45ad00d155c8d8c7407d913ff85278244c9ce\"\n },\n {\n \"path\": \"gatsby-browser.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9bd2c9dce175f04980e91cd9dc295a299e3cdb80\",\n \"size\": 90,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9bd2c9dce175f04980e91cd9dc295a299e3cdb80\"\n },\n {\n \"path\": \"gatsby-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"353a109dad62e3f25bf9f5e6a2167f21a6c8b459\",\n \"size\": 7228,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/353a109dad62e3f25bf9f5e6a2167f21a6c8b459\"\n },\n {\n \"path\": \"gatsby-node.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14a207883c2093d2cc071bc5a464e165bcc1fead\",\n \"size\": 409,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14a207883c2093d2cc071bc5a464e165bcc1fead\"\n },\n {\n \"path\": \"gatsby\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4f23c06cd1740bf78304d2c0b29bf6bfdf427981\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4f23c06cd1740bf78304d2c0b29bf6bfdf427981\"\n },\n {\n \"path\": \"jest\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\"\n },\n {\n \"path\": \"netlify.toml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"599b99cc5700404fde316a7ede829776f23e7d45\",\n \"size\": 137,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/599b99cc5700404fde316a7ede829776f23e7d45\"\n },\n {\n \"path\": \"package.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9d777616438b90a18f1a4ebfd5f114b4c06c6f17\",\n \"size\": 6855,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9d777616438b90a18f1a4ebfd5f114b4c06c6f17\"\n },\n {\n \"path\": \"postcss-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d216501e9b351a72e00ba0b7459a6500e27e7da2\",\n \"size\": 703,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d216501e9b351a72e00ba0b7459a6500e27e7da2\"\n },\n {\n \"path\": \"renovate.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"dcc309398785698b8870545c32051a3d72dd8271\",\n \"size\": 460,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/dcc309398785698b8870545c32051a3d72dd8271\"\n },\n {\n \"path\": \"serverless-scripts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ee3701f2fbfc7196ba340f6481d1387d20527898\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ee3701f2fbfc7196ba340f6481d1387d20527898\"\n },\n {\n \"path\": \"serverless-single-page-app-plugin\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"08763fcfba643a06a452398517019bea4a5850ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/08763fcfba643a06a452398517019bea4a5850ba\"\n },\n {\n \"path\": \"serverless.yml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"20b22c5fad229f35d029bf6614d333d82fe8a987\",\n \"size\": 7803,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/20b22c5fad229f35d029bf6614d333d82fe8a987\"\n },\n {\n \"path\": \"src\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"8cdb35a88232c0f32f12f130c92c7cc55f97f471\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/8cdb35a88232c0f32f12f130c92c7cc55f97f471\"\n },\n {\n \"path\": \"static\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"53c6380a600a030d3722bff7ecde36f749fb6964\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/53c6380a600a030d3722bff7ecde36f749fb6964\"\n },\n {\n \"path\": \"utils\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"a592549c9f74db40b51efefcda2fd76810405f27\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/a592549c9f74db40b51efefcda2fd76810405f27\"\n },\n {\n \"path\": \"yarn.lock\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"475c9c1924ca752a0686303e2fdeb7b13ad75f57\",\n \"size\": 793903,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/475c9c1924ca752a0686303e2fdeb7b13ad75f57\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/trees/0294ef106c58743907a5c855da1eb0f87b0b6dfc?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:53:51 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4604", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"0abcbf354911bd78b253b880b84d8da0\"", + "Last-Modified": "Tue, 10 Sep 2019 13:53:22 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BEE:1510F:1233A72:1617079:5D77AAEF", + "content-length": "831", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\n \"tree\": [\n {\n \"path\": \"pages\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\"\n },\n {\n \"path\": \"posts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"34892575e216c06e757093f036bd8e057c78a52f\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/34892575e216c06e757093f036bd8e057c78a52f\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/trees/34892575e216c06e757093f036bd8e057c78a52f?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:53:52 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4603", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"29693f84571fe2df8dc664b09d0872b0\"", + "Last-Modified": "Tue, 10 Sep 2019 13:53:22 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BF0:2B15:4E2633:5ED854:5D77AAF0", + "content-length": "2030", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"34892575e216c06e757093f036bd8e057c78a52f\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/34892575e216c06e757093f036bd8e057c78a52f\",\n \"tree\": [\n {\n \"path\": \"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"size\": 1707,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\"\n },\n {\n \"path\": \"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"size\": 2565,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\"\n },\n {\n \"path\": \"2016-02-02---A-Brief-History-of-Typography.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"0eea554365f002d0f1572af9a58522d335a794d5\",\n \"size\": 2786,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\"\n },\n {\n \"path\": \"2017-18-08---The-Birth-of-Movable-Type.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"44f78c474d04273185a95821426f75affc9b0044\",\n \"size\": 16071,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\"\n },\n {\n \"path\": \"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"size\": 7465,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 200 + }, + { + "body": "{\"base_tree\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"tree\":[{\"path\":\"1970-01-01-first-title.md\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"a041245814892e3f73f63ca54333fda649b7fc0b\"}]}", + "method": "POST", + "url": "/repos/owner/repo/git/trees?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:53:53 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "2362", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4602", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"ebc1ab128eebad51810afca6f07ccff1\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BF2:1510F:1233BAF:1617223:5D77AAF0", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a041245814892e3f73f63ca54333fda649b7fc0b\",\n \"size\": 167,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b\"\n },\n {\n \"path\": \"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"size\": 1707,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\"\n },\n {\n \"path\": \"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"size\": 2565,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\"\n },\n {\n \"path\": \"2016-02-02---A-Brief-History-of-Typography.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"0eea554365f002d0f1572af9a58522d335a794d5\",\n \"size\": 2786,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\"\n },\n {\n \"path\": \"2017-18-08---The-Birth-of-Movable-Type.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"44f78c474d04273185a95821426f75affc9b0044\",\n \"size\": 16071,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\"\n },\n {\n \"path\": \"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"size\": 7465,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"base_tree\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\"tree\":[{\"path\":\"posts\",\"mode\":\"040000\",\"type\":\"tree\",\"sha\":\"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\"parentSha\":\"34892575e216c06e757093f036bd8e057c78a52f\"}]}", + "method": "POST", + "url": "/repos/owner/repo/git/trees?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:53:54 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "831", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4601", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"cf11b691192f3fcf082e39fe0a214ad1\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BF4:B4DC:ABC57F:D0F258:5D77AAF1", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"tree\": [\n {\n \"path\": \"pages\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\"\n },\n {\n \"path\": \"posts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"base_tree\":\"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\"tree\":[{\"path\":\"content\",\"mode\":\"040000\",\"type\":\"tree\",\"sha\":\"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\"parentSha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\"}]}", + "method": "POST", + "url": "/repos/owner/repo/git/trees?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:53:54 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "11769", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4600", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"259bcf85cfa917532f552d4919781c7b\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/trees/daee8d5d15d144e8779955166a2afeccde2770e1", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BF6:15110:1884261:1DC93E6:5D77AAF2", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"daee8d5d15d144e8779955166a2afeccde2770e1\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/daee8d5d15d144e8779955166a2afeccde2770e1\",\n \"tree\": [\n {\n \"path\": \".circleci\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"e5e9af3301cac61f120b8e4d40b1733c7a45685a\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/e5e9af3301cac61f120b8e4d40b1733c7a45685a\"\n },\n {\n \"path\": \".eslintignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"80b4531b026d19f8fa589efd122e76199d23f967\",\n \"size\": 39,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/80b4531b026d19f8fa589efd122e76199d23f967\"\n },\n {\n \"path\": \".eslintrc.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"370684994aaed5b858da3a006f48cfa57e88fd27\",\n \"size\": 414,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/370684994aaed5b858da3a006f48cfa57e88fd27\"\n },\n {\n \"path\": \".flowconfig\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14aa2ac4cc0e15223ad98630a6f1325fc81f8043\",\n \"size\": 283,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14aa2ac4cc0e15223ad98630a6f1325fc81f8043\"\n },\n {\n \"path\": \".gitattributes\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"10a369ddf4f603337cabc6f21646508323941ce1\",\n \"size\": 135,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/10a369ddf4f603337cabc6f21646508323941ce1\"\n },\n {\n \"path\": \".github\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4ebeece548b52b20af59622354530a6d33b50b43\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4ebeece548b52b20af59622354530a6d33b50b43\"\n },\n {\n \"path\": \".gitignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"c071ba35b0e49899bab6d610a68eef667dbbf157\",\n \"size\": 169,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/c071ba35b0e49899bab6d610a68eef667dbbf157\"\n },\n {\n \"path\": \".prettierignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"393f050e123d998cf8c8b362ff95cc8ac4d250e5\",\n \"size\": 45,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/393f050e123d998cf8c8b362ff95cc8ac4d250e5\"\n },\n {\n \"path\": \".prettierrc\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e52ad05bb13b084d7949dd76e1b2517455162150\",\n \"size\": 223,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/e52ad05bb13b084d7949dd76e1b2517455162150\"\n },\n {\n \"path\": \".stylelintrc.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"4b4c9698d10d756f5faa025659b86375428ed0a7\",\n \"size\": 718,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/4b4c9698d10d756f5faa025659b86375428ed0a7\"\n },\n {\n \"path\": \".vscode\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"286e97ec0113ea8242b41ac222e2c3e8077e6f1e\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/286e97ec0113ea8242b41ac222e2c3e8077e6f1e\"\n },\n {\n \"path\": \"CHANGELOG.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"070a5d4f0eacd2dc0be81ae8996f8982de43046e\",\n \"size\": 2113,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/070a5d4f0eacd2dc0be81ae8996f8982de43046e\"\n },\n {\n \"path\": \"CODE_OF_CONDUCT.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"92bc7565ff0ee145a0041b5179a820f14f39ab22\",\n \"size\": 3355,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/92bc7565ff0ee145a0041b5179a820f14f39ab22\"\n },\n {\n \"path\": \"CONTRIBUTING.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"8552aa241254a61258e1ff9666ab36f32fb1e3b9\",\n \"size\": 3548,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/8552aa241254a61258e1ff9666ab36f32fb1e3b9\"\n },\n {\n \"path\": \"LICENSE\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"42d85938357b49977c126ca03b199129082d4fb8\",\n \"size\": 1091,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/42d85938357b49977c126ca03b199129082d4fb8\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"19df50a78654c8d757ca7f38447aa3d09c7abcce\",\n \"size\": 3698,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/19df50a78654c8d757ca7f38447aa3d09c7abcce\"\n },\n {\n \"path\": \"backend\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\"\n },\n {\n \"path\": \"config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"58afd573bbb69fcca000efd0f5d90b93c93a98dd\",\n \"size\": 853,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/58afd573bbb69fcca000efd0f5d90b93c93a98dd\"\n },\n {\n \"path\": \"content\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639\"\n },\n {\n \"path\": \"flow-typed\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"86c32fd6c3118be5e0dbbb231a834447357236c6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/86c32fd6c3118be5e0dbbb231a834447357236c6\"\n },\n {\n \"path\": \"flow\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"0af45ad00d155c8d8c7407d913ff85278244c9ce\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/0af45ad00d155c8d8c7407d913ff85278244c9ce\"\n },\n {\n \"path\": \"gatsby-browser.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9bd2c9dce175f04980e91cd9dc295a299e3cdb80\",\n \"size\": 90,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9bd2c9dce175f04980e91cd9dc295a299e3cdb80\"\n },\n {\n \"path\": \"gatsby-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"353a109dad62e3f25bf9f5e6a2167f21a6c8b459\",\n \"size\": 7228,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/353a109dad62e3f25bf9f5e6a2167f21a6c8b459\"\n },\n {\n \"path\": \"gatsby-node.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14a207883c2093d2cc071bc5a464e165bcc1fead\",\n \"size\": 409,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14a207883c2093d2cc071bc5a464e165bcc1fead\"\n },\n {\n \"path\": \"gatsby\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4f23c06cd1740bf78304d2c0b29bf6bfdf427981\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4f23c06cd1740bf78304d2c0b29bf6bfdf427981\"\n },\n {\n \"path\": \"jest\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\"\n },\n {\n \"path\": \"netlify.toml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"599b99cc5700404fde316a7ede829776f23e7d45\",\n \"size\": 137,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/599b99cc5700404fde316a7ede829776f23e7d45\"\n },\n {\n \"path\": \"package.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9d777616438b90a18f1a4ebfd5f114b4c06c6f17\",\n \"size\": 6855,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9d777616438b90a18f1a4ebfd5f114b4c06c6f17\"\n },\n {\n \"path\": \"postcss-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d216501e9b351a72e00ba0b7459a6500e27e7da2\",\n \"size\": 703,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d216501e9b351a72e00ba0b7459a6500e27e7da2\"\n },\n {\n \"path\": \"renovate.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"dcc309398785698b8870545c32051a3d72dd8271\",\n \"size\": 460,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/dcc309398785698b8870545c32051a3d72dd8271\"\n },\n {\n \"path\": \"serverless-scripts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ee3701f2fbfc7196ba340f6481d1387d20527898\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ee3701f2fbfc7196ba340f6481d1387d20527898\"\n },\n {\n \"path\": \"serverless-single-page-app-plugin\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"08763fcfba643a06a452398517019bea4a5850ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/08763fcfba643a06a452398517019bea4a5850ba\"\n },\n {\n \"path\": \"serverless.yml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"20b22c5fad229f35d029bf6614d333d82fe8a987\",\n \"size\": 7803,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/20b22c5fad229f35d029bf6614d333d82fe8a987\"\n },\n {\n \"path\": \"src\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"8cdb35a88232c0f32f12f130c92c7cc55f97f471\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/8cdb35a88232c0f32f12f130c92c7cc55f97f471\"\n },\n {\n \"path\": \"static\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"53c6380a600a030d3722bff7ecde36f749fb6964\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/53c6380a600a030d3722bff7ecde36f749fb6964\"\n },\n {\n \"path\": \"utils\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"a592549c9f74db40b51efefcda2fd76810405f27\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/a592549c9f74db40b51efefcda2fd76810405f27\"\n },\n {\n \"path\": \"yarn.lock\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"475c9c1924ca752a0686303e2fdeb7b13ad75f57\",\n \"size\": 793903,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/475c9c1924ca752a0686303e2fdeb7b13ad75f57\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"message\":\"Create Post “1970-01-01-first-title”\",\"tree\":\"daee8d5d15d144e8779955166a2afeccde2770e1\",\"parents\":[\"726172deae99c8a2cea4c71e734a02a793d4d9e5\"]}", + "method": "POST", + "url": "/repos/owner/repo/git/commits?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:53:55 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "1504", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4599", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"4486aba01a332e6115e3dbe35348b3c9\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/commits/973d234526213ad01bd1e7e0cdf5c9ffc2f4e504", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BF8:9D1F:A2D610:C6B68D:5D77AAF3", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"973d234526213ad01bd1e7e0cdf5c9ffc2f4e504\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NTczMTU5Ojk3M2QyMzQ1MjYyMTNhZDAxYmQxZTdlMGNkZjVjOWZmYzJmNGU1MDQ=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/973d234526213ad01bd1e7e0cdf5c9ffc2f4e504\",\n \"html_url\": \"https://github.com/owner/repo/commit/973d234526213ad01bd1e7e0cdf5c9ffc2f4e504\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T13:53:55Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T13:53:55Z\"\n },\n \"tree\": {\n \"sha\": \"daee8d5d15d144e8779955166a2afeccde2770e1\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/daee8d5d15d144e8779955166a2afeccde2770e1\"\n },\n \"message\": \"Create Post “1970-01-01-first-title”\",\n \"parents\": [\n {\n \"sha\": \"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"html_url\": \"https://github.com/owner/repo/commit/726172deae99c8a2cea4c71e734a02a793d4d9e5\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "status": 201 + }, + { + "body": "{\"ref\":\"refs/heads/cms/1970-01-01-first-title\",\"sha\":\"973d234526213ad01bd1e7e0cdf5c9ffc2f4e504\"}", + "method": "POST", + "url": "/repos/owner/repo/git/refs?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:53:57 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "518", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4598", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"339cceab67bad1d7476ede76bef59f5a\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "Location": "https://api.github.com/repos/owner/repo/git/refs/heads/cms/1970-01-01-first-title", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BFA:15110:18844D0:1DC9714:5D77AAF3", + "connection": "keep-alive" + }, + "response": "{\n \"ref\": \"refs/heads/cms/1970-01-01-first-title\",\n \"node_id\": \"MDM6UmVmMjA3NTczMTU5OmNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxl\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/heads/cms/1970-01-01-first-title\",\n \"object\": {\n \"sha\": \"973d234526213ad01bd1e7e0cdf5c9ffc2f4e504\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/973d234526213ad01bd1e7e0cdf5c9ffc2f4e504\"\n }\n}\n", + "status": 201 + }, + { + "body": "{\"title\":\"Create Post “1970-01-01-first-title”\",\"body\":\"Automatically generated by Netlify CMS\",\"head\":\"cms/1970-01-01-first-title\",\"base\":\"master\"}", + "method": "POST", + "url": "/repos/owner/repo/pulls?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:53:58 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "21715", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4597", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"d3d0d2a495be88ade55215b644108fcb\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/pulls/1", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BFC:B4E0:16B9C37:1BA90A1:5D77AAF5", + "connection": "keep-alive" + }, + "response": "{\n \"url\": \"https://api.github.com/repos/owner/repo/pulls/1\",\n \"id\": 316006854,\n \"node_id\": \"MDExOlB1bGxSZXF1ZXN0MzE2MDA2ODU0\",\n \"html_url\": \"https://github.com/owner/repo/pull/1\",\n \"diff_url\": \"https://github.com/owner/repo/pull/1.diff\",\n \"patch_url\": \"https://github.com/owner/repo/pull/1.patch\",\n \"issue_url\": \"https://api.github.com/repos/owner/repo/issues/1\",\n \"number\": 1,\n \"state\": \"open\",\n \"locked\": false,\n \"title\": \"Create Post “1970-01-01-first-title”\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Automatically generated by Netlify CMS\",\n \"created_at\": \"2019-09-10T13:53:57Z\",\n \"updated_at\": \"2019-09-10T13:53:57Z\",\n \"closed_at\": null,\n \"merged_at\": null,\n \"merge_commit_sha\": null,\n \"assignee\": null,\n \"assignees\": [\n\n ],\n \"requested_reviewers\": [\n\n ],\n \"requested_teams\": [\n\n ],\n \"labels\": [\n\n ],\n \"milestone\": null,\n \"commits_url\": \"https://api.github.com/repos/owner/repo/pulls/1/commits\",\n \"review_comments_url\": \"https://api.github.com/repos/owner/repo/pulls/1/comments\",\n \"review_comment_url\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/issues/1/comments\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/973d234526213ad01bd1e7e0cdf5c9ffc2f4e504\",\n \"head\": {\n \"label\": \"owner:cms/1970-01-01-first-title\",\n \"ref\": \"cms/1970-01-01-first-title\",\n \"sha\": \"973d234526213ad01bd1e7e0cdf5c9ffc2f4e504\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 207573159,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NzMxNTk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-10T13:52:54Z\",\n \"updated_at\": \"2019-09-10T13:53:22Z\",\n \"pushed_at\": \"2019-09-10T13:53:57Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 1,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 1,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"base\": {\n \"label\": \"owner:master\",\n \"ref\": \"master\",\n \"sha\": \"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 207573159,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NzMxNTk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-10T13:52:54Z\",\n \"updated_at\": \"2019-09-10T13:53:22Z\",\n \"pushed_at\": \"2019-09-10T13:53:57Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 1,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 1,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/1\"\n },\n \"html\": {\n \"href\": \"https://github.com/owner/repo/pull/1\"\n },\n \"issue\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/1\"\n },\n \"comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/1/comments\"\n },\n \"review_comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/1/comments\"\n },\n \"review_comment\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\"\n },\n \"commits\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/1/commits\"\n },\n \"statuses\": {\n \"href\": \"https://api.github.com/repos/owner/repo/statuses/973d234526213ad01bd1e7e0cdf5c9ffc2f4e504\"\n }\n },\n \"author_association\": \"OWNER\",\n \"merged\": false,\n \"mergeable\": null,\n \"rebaseable\": null,\n \"mergeable_state\": \"unknown\",\n \"merged_by\": null,\n \"comments\": 0,\n \"review_comments\": 0,\n \"maintainer_can_modify\": false,\n \"commits\": 1,\n \"additions\": 11,\n \"deletions\": 0,\n \"changed_files\": 1\n}\n", + "status": 201 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:53:59 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "404 Not Found", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4596", + "X-RateLimit-Reset": "1568126651", + "X-Poll-Interval": "300", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BFE:1510F:12342E7:1617B1C:5D77AAF6", + "content-length": "113", + "connection": "keep-alive" + }, + "response": "{\n \"message\": \"Not Found\",\n \"documentation_url\": \"https://developer.github.com/v3/git/refs/#get-a-reference\"\n}\n", + "status": 404 + }, + { + "body": "{\"content\":\"IyBOZXRsaWZ5IENNUwoKVGhpcyB0cmVlIGlzIHVzZWQgYnkgdGhlIE5ldGxpZnkgQ01TIHRvIHN0b3JlIG1ldGFkYXRhIGluZm9ybWF0aW9uIGZvciBzcGVjaWZpYyBmaWxlcyBhbmQgYnJhbmNoZXMu\",\"encoding\":\"base64\"}", + "method": "POST", + "url": "/repos/owner/repo/git/blobs?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:53:59 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "207", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4595", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"b9f514e7ed3f3b1d59080d7b29e08414\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A01:2B24:17CC492:1CEE0E7:5D77AAF7", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n}\n", + "status": 201 + }, + { + "body": "{\"tree\":[{\"path\":\"README.md\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"98787d1bd948850444433e91a43091a76c4eb455\"}]}", + "method": "POST", + "url": "/repos/owner/repo/git/trees?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:54:00 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "561", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4594", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"5d2b59419b1135e5745d7bcf56001da9\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/trees/77d01c8bf1e79f9fb17c60fe405ce741bb4eb0a6", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A03:15110:1884B49:1DC9F0D:5D77AAF8", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"77d01c8bf1e79f9fb17c60fe405ce741bb4eb0a6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/77d01c8bf1e79f9fb17c60fe405ce741bb4eb0a6\",\n \"tree\": [\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"message\":\"First Commit\",\"tree\":\"77d01c8bf1e79f9fb17c60fe405ce741bb4eb0a6\",\"parents\":[]}", + "method": "POST", + "url": "/repos/owner/repo/git/commits?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:54:01 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "1105", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4593", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"83045fbd68c01ce9be61c9716c2b7229\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/commits/ea9e4ec37c7d86bf69eb36e83225f9c8560d8709", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A04:3ED74:1AC085:20C081:5D77AAF8", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"ea9e4ec37c7d86bf69eb36e83225f9c8560d8709\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NTczMTU5OmVhOWU0ZWMzN2M3ZDg2YmY2OWViMzZlODMyMjVmOWM4NTYwZDg3MDk=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/ea9e4ec37c7d86bf69eb36e83225f9c8560d8709\",\n \"html_url\": \"https://github.com/owner/repo/commit/ea9e4ec37c7d86bf69eb36e83225f9c8560d8709\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T13:54:01Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T13:54:01Z\"\n },\n \"tree\": {\n \"sha\": \"77d01c8bf1e79f9fb17c60fe405ce741bb4eb0a6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/77d01c8bf1e79f9fb17c60fe405ce741bb4eb0a6\"\n },\n \"message\": \"First Commit\",\n \"parents\": [\n\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "status": 201 + }, + { + "body": "{\"ref\":\"refs/meta/_netlify_cms\",\"sha\":\"ea9e4ec37c7d86bf69eb36e83225f9c8560d8709\"}", + "method": "POST", + "url": "/repos/owner/repo/git/refs?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:54:02 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "484", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4592", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"930e329a164e6616440ba143166e1c2c\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "Location": "https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A06:9D20:1154134:1530A15:5D77AAF9", + "connection": "keep-alive" + }, + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NTczMTU5OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"ea9e4ec37c7d86bf69eb36e83225f9c8560d8709\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/ea9e4ec37c7d86bf69eb36e83225f9c8560d8709\"\n }\n}\n", + "status": 201 + }, + { + "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjEsImhlYWQiOiI5NzNkMjM0NTI2MjEzYWQwMWJkMWU3ZTBjZGY1YzlmZmMyZjRlNTA0In0sInVzZXIiOiJvd25lciIsInN0YXR1cyI6ImRyYWZ0IiwiYnJhbmNoIjoiY21zLzE5NzAtMDEtMDEtZmlyc3QtdGl0bGUiLCJjb2xsZWN0aW9uIjoicG9zdHMiLCJjb21taXRNZXNzYWdlIjoiQ3JlYXRlIFBvc3Qg4oCcMTk3MC0wMS0wMS1maXJzdC10aXRsZeKAnSIsInRpdGxlIjoiZmlyc3QgdGl0bGUiLCJkZXNjcmlwdGlvbiI6ImZpcnN0IGRlc2NyaXB0aW9uIiwib2JqZWN0cyI6eyJlbnRyeSI6eyJwYXRoIjoiY29udGVudC9wb3N0cy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxlLm1kIiwic2hhIjoiYTA0MTI0NTgxNDg5MmUzZjczZjYzY2E1NDMzM2ZkYTY0OWI3ZmMwYiJ9LCJmaWxlcyI6W119LCJ0aW1lU3RhbXAiOiIxOTcwLTAxLTAxVDAwOjAwOjAwLjMwMFoifQ==\",\"encoding\":\"base64\"}", + "method": "POST", + "url": "/repos/owner/repo/git/blobs?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:54:03 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "207", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4591", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"cd2109674b6882b1baefa248922cbe1d\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/blobs/6433f34f6bca822582c063d602bf2bd4ccedf208", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A08:244EB:180E100:1D37CAC:5D77AAFA", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"6433f34f6bca822582c063d602bf2bd4ccedf208\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/6433f34f6bca822582c063d602bf2bd4ccedf208\"\n}\n", + "status": 201 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/trees/ea9e4ec37c7d86bf69eb36e83225f9c8560d8709?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:54:04 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4590", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"8e09028effc5682ae076d7a35c96fb98\"", + "Last-Modified": "Tue, 10 Sep 2019 13:53:22 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A0A:9D20:1154445:1530DF9:5D77AAFB", + "content-length": "561", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"ea9e4ec37c7d86bf69eb36e83225f9c8560d8709\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ea9e4ec37c7d86bf69eb36e83225f9c8560d8709\",\n \"tree\": [\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 200 + }, + { + "body": "{\"base_tree\":\"ea9e4ec37c7d86bf69eb36e83225f9c8560d8709\",\"tree\":[{\"path\":\"1970-01-01-first-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"6433f34f6bca822582c063d602bf2bd4ccedf208\"}]}", + "method": "POST", + "url": "/repos/owner/repo/git/trees?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:54:06 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "895", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4589", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"8273000861505be594e487d91da4c714\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/trees/c8139a7af821a64d8af24fd40151fb49078d45d1", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A0D:9D21:173F0B3:1C52375:5D77AAFC", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"c8139a7af821a64d8af24fd40151fb49078d45d1\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/c8139a7af821a64d8af24fd40151fb49078d45d1\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"6433f34f6bca822582c063d602bf2bd4ccedf208\",\n \"size\": 462,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/6433f34f6bca822582c063d602bf2bd4ccedf208\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"message\":\"Updating “1970-01-01-first-title” metadata\",\"tree\":\"c8139a7af821a64d8af24fd40151fb49078d45d1\",\"parents\":[\"ea9e4ec37c7d86bf69eb36e83225f9c8560d8709\"]}", + "method": "POST", + "url": "/repos/owner/repo/git/commits?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:54:07 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "1510", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4588", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"378c845dd668525bdb8b7bfdea9a78ca\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/commits/3ed46cf7b738d1a26f9eef8bf45e11dd4ad968be", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A0E:15110:1885728:1DCADB4:5D77AAFE", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"3ed46cf7b738d1a26f9eef8bf45e11dd4ad968be\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NTczMTU5OjNlZDQ2Y2Y3YjczOGQxYTI2ZjllZWY4YmY0NWUxMWRkNGFkOTY4YmU=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/3ed46cf7b738d1a26f9eef8bf45e11dd4ad968be\",\n \"html_url\": \"https://github.com/owner/repo/commit/3ed46cf7b738d1a26f9eef8bf45e11dd4ad968be\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T13:54:07Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T13:54:07Z\"\n },\n \"tree\": {\n \"sha\": \"c8139a7af821a64d8af24fd40151fb49078d45d1\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/c8139a7af821a64d8af24fd40151fb49078d45d1\"\n },\n \"message\": \"Updating “1970-01-01-first-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"ea9e4ec37c7d86bf69eb36e83225f9c8560d8709\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/ea9e4ec37c7d86bf69eb36e83225f9c8560d8709\",\n \"html_url\": \"https://github.com/owner/repo/commit/ea9e4ec37c7d86bf69eb36e83225f9c8560d8709\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "status": 201 + }, + { + "body": "{\"sha\":\"3ed46cf7b738d1a26f9eef8bf45e11dd4ad968be\",\"force\":false}", + "method": "PATCH", + "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:54:08 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4587", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"08f8cdce9195e7c9e5efb2cf67242b3b\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A10:9D1F:A2E05A:C6C345:5D77AAFF", + "content-length": "484", + "connection": "keep-alive" + }, + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NTczMTU5OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"3ed46cf7b738d1a26f9eef8bf45e11dd4ad968be\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/3ed46cf7b738d1a26f9eef8bf45e11dd4ad968be\"\n }\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=cms/1970-01-01-first-title", + "headers": { + "Date": "Tue, 10 Sep 2019 13:54:09 GMT", + "Content-Type": "application/vnd.github.VERSION.raw; charset=utf-8", + "Content-Length": "167", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4586", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"a041245814892e3f73f63ca54333fda649b7fc0b\"", + "Last-Modified": "Tue, 10 Sep 2019 13:53:55 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A14:244EB:180EB5F:1D3898D:5D77AB01", + "connection": "keep-alive" + }, + "response": "---\ntemplate: post\ntitle: first title\ndraft: true\ndate: 1970-01-01T00:00:00.000Z\ndescription: first description\ncategory: first category\ntags:\n - tag1\n---\nfirst body\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=master", + "headers": { + "Date": "Tue, 10 Sep 2019 13:54:09 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "404 Not Found", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4585", + "X-RateLimit-Reset": "1568126651", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A13:9D1E:4B6C9A:5C4C37:5D77AB01", + "content-length": "116", + "connection": "keep-alive" + }, + "response": "{\n \"message\": \"Not Found\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/#get-contents\"\n}\n", + "status": 404 + }, + { + "method": "GET", + "url": "/repos/owner/repo/commits/973d234526213ad01bd1e7e0cdf5c9ffc2f4e504/status?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:54:11 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4584", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"97f6acb26f76edb10c0ae3a9ac2ed806\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo, repo:status", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A16:1510F:1235220:1618E3C:5D77AB02", + "content-length": "6574", + "connection": "keep-alive" + }, + "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"973d234526213ad01bd1e7e0cdf5c9ffc2f4e504\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 207573159,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NzMxNTk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/973d234526213ad01bd1e7e0cdf5c9ffc2f4e504\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/973d234526213ad01bd1e7e0cdf5c9ffc2f4e504/status\"\n}\n", + "status": 200 + } +] \ No newline at end of file diff --git a/cypress/fixtures/Github Backend Editorial Workflow - REST API - Open Authoring__can delete review entry from fork.json b/cypress/fixtures/Github Backend Editorial Workflow - REST API - Open Authoring__can delete review entry from fork.json new file mode 100644 index 00000000..02d67ffa --- /dev/null +++ b/cypress/fixtures/Github Backend Editorial Workflow - REST API - Open Authoring__can delete review entry from fork.json @@ -0,0 +1,1564 @@ +[ + { + "method": "GET", + "url": "/user", + "headers": { + "Date": "Tue, 10 Sep 2019 13:59:21 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4696", + "X-RateLimit-Reset": "1568127500", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"306a7697fb3e2ba7e728a792014e91b8\"", + "Last-Modified": "Sun, 01 Sep 2019 18:04:11 GMT", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A0F:244EB:182D9C2:1D5EF2B:5D77AC39", + "content-length": "1333", + "connection": "keep-alive" + }, + "response": "{\"login\":\"forkOwner\",\"id\":2,\"avatar_url\":\"https://avatars1.githubusercontent.com/u/7892489?v=4\",\"name\":\"forkOwner\"}", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/collaborators/forkOwner/permission", + "headers": { + "Date": "Tue, 10 Sep 2019 13:59:22 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "403 Forbidden", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4695", + "X-RateLimit-Reset": "1568127500", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A10:9D1D:199F63:1F4922:5D77AC3A", + "content-length": "185", + "connection": "keep-alive" + }, + "response": "{\n \"message\": \"Must have push access to view collaborator permission.\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/collaborators/#review-a-users-permission-level\"\n}\n", + "status": 403 + }, + { + "method": "POST", + "url": "/repos/owner/repo/forks", + "headers": { + "Date": "Tue, 10 Sep 2019 13:59:23 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "22055", + "Server": "GitHub.com", + "Status": "202 Accepted", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4694", + "X-RateLimit-Reset": "1568127500", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A12:1510C:1811CD:1D79A2:5D77AC3A", + "connection": "keep-alive" + }, + "response": "{\n \"id\": 207574049,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NzQwNDk=\",\n \"name\": \"repo\",\n \"full_name\": \"forkOwner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"forkOwner\",\n \"id\": 53494188,\n \"node_id\": \"MDQ6VXNlcjUzNDk0MTg4\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/forkOwner\",\n \"html_url\": \"https://github.com/forkOwner\",\n \"followers_url\": \"https://api.github.com/users/forkOwner/followers\",\n \"following_url\": \"https://api.github.com/users/forkOwner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/forkOwner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/forkOwner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/forkOwner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/forkOwner/orgs\",\n \"repos_url\": \"https://api.github.com/users/forkOwner/repos\",\n \"events_url\": \"https://api.github.com/users/forkOwner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/forkOwner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/forkOwner/repo\",\n \"description\": null,\n \"fork\": true,\n \"url\": \"https://api.github.com/repos/forkOwner/repo\",\n \"forks_url\": \"https://api.github.com/repos/forkOwner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/forkOwner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/forkOwner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/forkOwner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/forkOwner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/forkOwner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/forkOwner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/forkOwner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/forkOwner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/forkOwner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/forkOwner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/forkOwner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/forkOwner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/forkOwner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/forkOwner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/forkOwner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/forkOwner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/forkOwner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/forkOwner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/forkOwner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/forkOwner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/forkOwner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/forkOwner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/forkOwner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/forkOwner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/forkOwner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/forkOwner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/forkOwner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/forkOwner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/forkOwner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/forkOwner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/forkOwner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/forkOwner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/forkOwner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/forkOwner/repo/deployments\",\n \"created_at\": \"2019-09-10T13:56:28Z\",\n \"updated_at\": \"2019-09-10T13:56:30Z\",\n \"pushed_at\": \"2019-09-10T13:59:14Z\",\n \"git_url\": \"git://github.com/forkOwner/repo.git\",\n \"ssh_url\": \"git@github.com:forkOwner/repo.git\",\n \"clone_url\": \"https://github.com/forkOwner/repo.git\",\n \"svn_url\": \"https://github.com/forkOwner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": null,\n \"has_issues\": false,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\",\n \"permissions\": {\n \"admin\": true,\n \"push\": true,\n \"pull\": true\n },\n \"parent\": {\n \"id\": 207573159,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NzMxNTk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-10T13:52:54Z\",\n \"updated_at\": \"2019-09-10T13:56:22Z\",\n \"pushed_at\": \"2019-09-10T13:59:00Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n },\n \"source\": {\n \"id\": 207573159,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NzMxNTk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-10T13:52:54Z\",\n \"updated_at\": \"2019-09-10T13:56:22Z\",\n \"pushed_at\": \"2019-09-10T13:59:00Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n },\n \"network_count\": 1,\n \"subscribers_count\": 0\n}\n", + "status": 202 + }, + { + "method": "GET", + "url": "/repos/forkOwner/repo", + "headers": { + "Date": "Tue, 10 Sep 2019 13:59:23 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4693", + "X-RateLimit-Reset": "1568127500", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"318c8683d1a36b69ce3cdf6597755a43\"", + "Last-Modified": "Tue, 10 Sep 2019 13:56:30 GMT", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A14:244E4:B012C3:D5612D:5D77AC3B", + "content-length": "22145", + "connection": "keep-alive" + }, + "response": "{\n \"id\": 207574049,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NzQwNDk=\",\n \"name\": \"repo\",\n \"full_name\": \"forkOwner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"forkOwner\",\n \"id\": 53494188,\n \"node_id\": \"MDQ6VXNlcjUzNDk0MTg4\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/forkOwner\",\n \"html_url\": \"https://github.com/forkOwner\",\n \"followers_url\": \"https://api.github.com/users/forkOwner/followers\",\n \"following_url\": \"https://api.github.com/users/forkOwner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/forkOwner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/forkOwner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/forkOwner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/forkOwner/orgs\",\n \"repos_url\": \"https://api.github.com/users/forkOwner/repos\",\n \"events_url\": \"https://api.github.com/users/forkOwner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/forkOwner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/forkOwner/repo\",\n \"description\": null,\n \"fork\": true,\n \"url\": \"https://api.github.com/repos/forkOwner/repo\",\n \"forks_url\": \"https://api.github.com/repos/forkOwner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/forkOwner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/forkOwner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/forkOwner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/forkOwner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/forkOwner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/forkOwner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/forkOwner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/forkOwner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/forkOwner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/forkOwner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/forkOwner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/forkOwner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/forkOwner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/forkOwner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/forkOwner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/forkOwner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/forkOwner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/forkOwner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/forkOwner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/forkOwner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/forkOwner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/forkOwner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/forkOwner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/forkOwner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/forkOwner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/forkOwner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/forkOwner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/forkOwner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/forkOwner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/forkOwner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/forkOwner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/forkOwner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/forkOwner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/forkOwner/repo/deployments\",\n \"created_at\": \"2019-09-10T13:56:28Z\",\n \"updated_at\": \"2019-09-10T13:56:30Z\",\n \"pushed_at\": \"2019-09-10T13:59:14Z\",\n \"git_url\": \"git://github.com/forkOwner/repo.git\",\n \"ssh_url\": \"git@github.com:forkOwner/repo.git\",\n \"clone_url\": \"https://github.com/forkOwner/repo.git\",\n \"svn_url\": \"https://github.com/forkOwner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": null,\n \"has_issues\": false,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\",\n \"permissions\": {\n \"admin\": true,\n \"push\": true,\n \"pull\": true\n },\n \"allow_squash_merge\": true,\n \"allow_merge_commit\": true,\n \"allow_rebase_merge\": true,\n \"parent\": {\n \"id\": 207573159,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NzMxNTk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-10T13:52:54Z\",\n \"updated_at\": \"2019-09-10T13:56:22Z\",\n \"pushed_at\": \"2019-09-10T13:59:00Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n },\n \"source\": {\n \"id\": 207573159,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NzMxNTk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-10T13:52:54Z\",\n \"updated_at\": \"2019-09-10T13:56:22Z\",\n \"pushed_at\": \"2019-09-10T13:59:00Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n },\n \"network_count\": 1,\n \"subscribers_count\": 0\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/user?ts=0", + "headers": { + "Date": "Tue, 10 Sep 2019 13:59:24 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4692", + "X-RateLimit-Reset": "1568127500", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"306a7697fb3e2ba7e728a792014e91b8\"", + "Last-Modified": "Sun, 01 Sep 2019 18:04:11 GMT", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A16:15110:18A6640:1DF3796:5D77AC3C", + "content-length": "1333", + "connection": "keep-alive" + }, + "response": "{\"login\":\"forkOwner\",\"id\":2,\"avatar_url\":\"https://avatars1.githubusercontent.com/u/7892489?v=4\",\"name\":\"forkOwner\"}", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/forkOwner/repo?ts=0", + "headers": { + "Date": "Tue, 10 Sep 2019 13:59:25 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4691", + "X-RateLimit-Reset": "1568127500", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"318c8683d1a36b69ce3cdf6597755a43\"", + "Last-Modified": "Tue, 10 Sep 2019 13:56:30 GMT", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A19:B4DC:ACBF63:D22A1E:5D77AC3C", + "content-length": "22145", + "connection": "keep-alive" + }, + "response": "{\n \"id\": 207574049,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NzQwNDk=\",\n \"name\": \"repo\",\n \"full_name\": \"forkOwner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"forkOwner\",\n \"id\": 53494188,\n \"node_id\": \"MDQ6VXNlcjUzNDk0MTg4\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/forkOwner\",\n \"html_url\": \"https://github.com/forkOwner\",\n \"followers_url\": \"https://api.github.com/users/forkOwner/followers\",\n \"following_url\": \"https://api.github.com/users/forkOwner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/forkOwner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/forkOwner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/forkOwner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/forkOwner/orgs\",\n \"repos_url\": \"https://api.github.com/users/forkOwner/repos\",\n \"events_url\": \"https://api.github.com/users/forkOwner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/forkOwner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/forkOwner/repo\",\n \"description\": null,\n \"fork\": true,\n \"url\": \"https://api.github.com/repos/forkOwner/repo\",\n \"forks_url\": \"https://api.github.com/repos/forkOwner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/forkOwner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/forkOwner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/forkOwner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/forkOwner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/forkOwner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/forkOwner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/forkOwner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/forkOwner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/forkOwner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/forkOwner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/forkOwner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/forkOwner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/forkOwner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/forkOwner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/forkOwner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/forkOwner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/forkOwner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/forkOwner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/forkOwner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/forkOwner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/forkOwner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/forkOwner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/forkOwner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/forkOwner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/forkOwner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/forkOwner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/forkOwner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/forkOwner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/forkOwner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/forkOwner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/forkOwner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/forkOwner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/forkOwner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/forkOwner/repo/deployments\",\n \"created_at\": \"2019-09-10T13:56:28Z\",\n \"updated_at\": \"2019-09-10T13:56:30Z\",\n \"pushed_at\": \"2019-09-10T13:59:14Z\",\n \"git_url\": \"git://github.com/forkOwner/repo.git\",\n \"ssh_url\": \"git@github.com:forkOwner/repo.git\",\n \"clone_url\": \"https://github.com/forkOwner/repo.git\",\n \"svn_url\": \"https://github.com/forkOwner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": null,\n \"has_issues\": false,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\",\n \"permissions\": {\n \"admin\": true,\n \"push\": true,\n \"pull\": true\n },\n \"allow_squash_merge\": true,\n \"allow_merge_commit\": true,\n \"allow_rebase_merge\": true,\n \"parent\": {\n \"id\": 207573159,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NzMxNTk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-10T13:52:54Z\",\n \"updated_at\": \"2019-09-10T13:56:22Z\",\n \"pushed_at\": \"2019-09-10T13:59:00Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n },\n \"source\": {\n \"id\": 207573159,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NzMxNTk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-10T13:52:54Z\",\n \"updated_at\": \"2019-09-10T13:56:22Z\",\n \"pushed_at\": \"2019-09-10T13:59:00Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n },\n \"network_count\": 1,\n \"subscribers_count\": 0\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/content/posts?ts=0&ref=master", + "headers": { + "Date": "Tue, 10 Sep 2019 13:59:25 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4690", + "X-RateLimit-Reset": "1568127500", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"c5b7f6d674ba193bb7b4a5fcf4933034e1b7f2b7\"", + "Last-Modified": "Tue, 10 Sep 2019 13:56:22 GMT", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A1A:244E7:11BFC19:15A95F0:5D77AC3D", + "content-length": "7422", + "connection": "keep-alive" + }, + "response": "[\n {\n \"name\": \"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"path\": \"content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"sha\": \"6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"size\": 1707,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"html\": \"https://github.com/owner/repo/blob/master/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md\"\n }\n },\n {\n \"name\": \"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"path\": \"content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"sha\": \"d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"size\": 2565,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"html\": \"https://github.com/owner/repo/blob/master/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\"\n }\n },\n {\n \"name\": \"2016-02-02---A-Brief-History-of-Typography.md\",\n \"path\": \"content/posts/2016-02-02---A-Brief-History-of-Typography.md\",\n \"sha\": \"0eea554365f002d0f1572af9a58522d335a794d5\",\n \"size\": 2786,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2016-02-02---A-Brief-History-of-Typography.md?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/content/posts/2016-02-02---A-Brief-History-of-Typography.md\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/content/posts/2016-02-02---A-Brief-History-of-Typography.md\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2016-02-02---A-Brief-History-of-Typography.md?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\",\n \"html\": \"https://github.com/owner/repo/blob/master/content/posts/2016-02-02---A-Brief-History-of-Typography.md\"\n }\n },\n {\n \"name\": \"2017-18-08---The-Birth-of-Movable-Type.md\",\n \"path\": \"content/posts/2017-18-08---The-Birth-of-Movable-Type.md\",\n \"sha\": \"44f78c474d04273185a95821426f75affc9b0044\",\n \"size\": 16071,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2017-18-08---The-Birth-of-Movable-Type.md?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/content/posts/2017-18-08---The-Birth-of-Movable-Type.md\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/content/posts/2017-18-08---The-Birth-of-Movable-Type.md\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2017-18-08---The-Birth-of-Movable-Type.md?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\",\n \"html\": \"https://github.com/owner/repo/blob/master/content/posts/2017-18-08---The-Birth-of-Movable-Type.md\"\n }\n },\n {\n \"name\": \"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"path\": \"content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"sha\": \"a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"size\": 7465,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"html\": \"https://github.com/owner/repo/blob/master/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md\"\n }\n }\n]\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/forkOwner/repo/contents/static/media?ts=0&ref=master", + "headers": { + "Date": "Tue, 10 Sep 2019 13:59:25 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4689", + "X-RateLimit-Reset": "1568127500", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"c5b7f6d674ba193bb7b4a5fcf4933034e1b7f2b7\"", + "Last-Modified": "Tue, 10 Sep 2019 13:56:30 GMT", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A1E:244EB:182E0C7:1D5F7DB:5D77AC3D", + "content-length": "12712", + "connection": "keep-alive" + }, + "response": "[\n {\n \"name\": \"42-line-bible.jpg\",\n \"path\": \"static/media/42-line-bible.jpg\",\n \"sha\": \"41c8d12f9ca5864beb827c381fbeff935209d5fb\",\n \"size\": 671242,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/contents/static/media/42-line-bible.jpg?ref=master\",\n \"html_url\": \"https://github.com/forkOwner/repo/blob/master/static/media/42-line-bible.jpg\",\n \"git_url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/41c8d12f9ca5864beb827c381fbeff935209d5fb\",\n \"download_url\": \"https://raw.githubusercontent.com/forkOwner/repo/master/static/media/42-line-bible.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/forkOwner/repo/contents/static/media/42-line-bible.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/41c8d12f9ca5864beb827c381fbeff935209d5fb\",\n \"html\": \"https://github.com/forkOwner/repo/blob/master/static/media/42-line-bible.jpg\"\n }\n },\n {\n \"name\": \"gutenberg.jpg\",\n \"path\": \"static/media/gutenberg.jpg\",\n \"sha\": \"04315e355873ea5d358d9c371c39a6845c1ae4ae\",\n \"size\": 155002,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/contents/static/media/gutenberg.jpg?ref=master\",\n \"html_url\": \"https://github.com/forkOwner/repo/blob/master/static/media/gutenberg.jpg\",\n \"git_url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/04315e355873ea5d358d9c371c39a6845c1ae4ae\",\n \"download_url\": \"https://raw.githubusercontent.com/forkOwner/repo/master/static/media/gutenberg.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/forkOwner/repo/contents/static/media/gutenberg.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/04315e355873ea5d358d9c371c39a6845c1ae4ae\",\n \"html\": \"https://github.com/forkOwner/repo/blob/master/static/media/gutenberg.jpg\"\n }\n },\n {\n \"name\": \"image-0.jpg\",\n \"path\": \"static/media/image-0.jpg\",\n \"sha\": \"b70a1b64fd4fa9635823231a0ba92c6dc9393f16\",\n \"size\": 660287,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/contents/static/media/image-0.jpg?ref=master\",\n \"html_url\": \"https://github.com/forkOwner/repo/blob/master/static/media/image-0.jpg\",\n \"git_url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/b70a1b64fd4fa9635823231a0ba92c6dc9393f16\",\n \"download_url\": \"https://raw.githubusercontent.com/forkOwner/repo/master/static/media/image-0.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/forkOwner/repo/contents/static/media/image-0.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/b70a1b64fd4fa9635823231a0ba92c6dc9393f16\",\n \"html\": \"https://github.com/forkOwner/repo/blob/master/static/media/image-0.jpg\"\n }\n },\n {\n \"name\": \"image-1.jpg\",\n \"path\": \"static/media/image-1.jpg\",\n \"sha\": \"05eedae372b829c62501ac751b2d42dcc432541b\",\n \"size\": 392411,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/contents/static/media/image-1.jpg?ref=master\",\n \"html_url\": \"https://github.com/forkOwner/repo/blob/master/static/media/image-1.jpg\",\n \"git_url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/05eedae372b829c62501ac751b2d42dcc432541b\",\n \"download_url\": \"https://raw.githubusercontent.com/forkOwner/repo/master/static/media/image-1.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/forkOwner/repo/contents/static/media/image-1.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/05eedae372b829c62501ac751b2d42dcc432541b\",\n \"html\": \"https://github.com/forkOwner/repo/blob/master/static/media/image-1.jpg\"\n }\n },\n {\n \"name\": \"image-2.jpg\",\n \"path\": \"static/media/image-2.jpg\",\n \"sha\": \"53845ed35faf8939bea242bb85eda7c324b1be0b\",\n \"size\": 99147,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/contents/static/media/image-2.jpg?ref=master\",\n \"html_url\": \"https://github.com/forkOwner/repo/blob/master/static/media/image-2.jpg\",\n \"git_url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/53845ed35faf8939bea242bb85eda7c324b1be0b\",\n \"download_url\": \"https://raw.githubusercontent.com/forkOwner/repo/master/static/media/image-2.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/forkOwner/repo/contents/static/media/image-2.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/53845ed35faf8939bea242bb85eda7c324b1be0b\",\n \"html\": \"https://github.com/forkOwner/repo/blob/master/static/media/image-2.jpg\"\n }\n },\n {\n \"name\": \"image-3.jpg\",\n \"path\": \"static/media/image-3.jpg\",\n \"sha\": \"8b2339d97069e826fae1f156212e40ae458454e3\",\n \"size\": 358022,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/contents/static/media/image-3.jpg?ref=master\",\n \"html_url\": \"https://github.com/forkOwner/repo/blob/master/static/media/image-3.jpg\",\n \"git_url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/8b2339d97069e826fae1f156212e40ae458454e3\",\n \"download_url\": \"https://raw.githubusercontent.com/forkOwner/repo/master/static/media/image-3.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/forkOwner/repo/contents/static/media/image-3.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/8b2339d97069e826fae1f156212e40ae458454e3\",\n \"html\": \"https://github.com/forkOwner/repo/blob/master/static/media/image-3.jpg\"\n }\n },\n {\n \"name\": \"image-4.jpg\",\n \"path\": \"static/media/image-4.jpg\",\n \"sha\": \"a8f6f21253a67a4284b5a953b2fe633d44152ecd\",\n \"size\": 114837,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/contents/static/media/image-4.jpg?ref=master\",\n \"html_url\": \"https://github.com/forkOwner/repo/blob/master/static/media/image-4.jpg\",\n \"git_url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/a8f6f21253a67a4284b5a953b2fe633d44152ecd\",\n \"download_url\": \"https://raw.githubusercontent.com/forkOwner/repo/master/static/media/image-4.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/forkOwner/repo/contents/static/media/image-4.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/a8f6f21253a67a4284b5a953b2fe633d44152ecd\",\n \"html\": \"https://github.com/forkOwner/repo/blob/master/static/media/image-4.jpg\"\n }\n },\n {\n \"name\": \"movable-type.jpg\",\n \"path\": \"static/media/movable-type.jpg\",\n \"sha\": \"57b4e925ea00bd8e195cf4418eb6eb2995ea5f10\",\n \"size\": 559028,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/contents/static/media/movable-type.jpg?ref=master\",\n \"html_url\": \"https://github.com/forkOwner/repo/blob/master/static/media/movable-type.jpg\",\n \"git_url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/57b4e925ea00bd8e195cf4418eb6eb2995ea5f10\",\n \"download_url\": \"https://raw.githubusercontent.com/forkOwner/repo/master/static/media/movable-type.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/forkOwner/repo/contents/static/media/movable-type.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/57b4e925ea00bd8e195cf4418eb6eb2995ea5f10\",\n \"html\": \"https://github.com/forkOwner/repo/blob/master/static/media/movable-type.jpg\"\n }\n },\n {\n \"name\": \"printing-press.jpg\",\n \"path\": \"static/media/printing-press.jpg\",\n \"sha\": \"d27f56c9437d9becd2f56cc627c9322c2f1f61f6\",\n \"size\": 279283,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/contents/static/media/printing-press.jpg?ref=master\",\n \"html_url\": \"https://github.com/forkOwner/repo/blob/master/static/media/printing-press.jpg\",\n \"git_url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/d27f56c9437d9becd2f56cc627c9322c2f1f61f6\",\n \"download_url\": \"https://raw.githubusercontent.com/forkOwner/repo/master/static/media/printing-press.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/forkOwner/repo/contents/static/media/printing-press.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/d27f56c9437d9becd2f56cc627c9322c2f1f61f6\",\n \"html\": \"https://github.com/forkOwner/repo/blob/master/static/media/printing-press.jpg\"\n }\n },\n {\n \"name\": \"type-through-time.jpg\",\n \"path\": \"static/media/type-through-time.jpg\",\n \"sha\": \"3f08366a805c51a60ec5056010f22de4ba08abaa\",\n \"size\": 117689,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/contents/static/media/type-through-time.jpg?ref=master\",\n \"html_url\": \"https://github.com/forkOwner/repo/blob/master/static/media/type-through-time.jpg\",\n \"git_url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/3f08366a805c51a60ec5056010f22de4ba08abaa\",\n \"download_url\": \"https://raw.githubusercontent.com/forkOwner/repo/master/static/media/type-through-time.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/forkOwner/repo/contents/static/media/type-through-time.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/3f08366a805c51a60ec5056010f22de4ba08abaa\",\n \"html\": \"https://github.com/forkOwner/repo/blob/master/static/media/type-through-time.jpg\"\n }\n }\n]\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/forkOwner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5?ts=0", + "headers": { + "Date": "Tue, 10 Sep 2019 13:59:26 GMT", + "Content-Type": "text/plain; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4688", + "X-RateLimit-Reset": "1568127500", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"fd57f3a860149dad96a596e31398a809\"", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A28:9D21:175DA9B:1C7868F:5D77AC3E", + "content-length": "2786", + "connection": "keep-alive" + }, + "response": "---\ntitle: \"A Brief History of Typography\"\ndate: \"2016-02-02T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Design Inspiration\"\ntags:\n - \"Linotype\"\n - \"Monotype\"\n - \"History of typography\"\n - \"Helvetica\"\ndescription: \"Morbi in sem quis dui placerat ornare. Pellentesque odio nisi, euismod in, pharetra a, ultricies in, diam. Sed arcu. Cras consequat.\"\ncanonical: ''\n---\n\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\n\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-0.jpg)\n\n## Header Level 2\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \n\n
\n\t
\n\t\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\n\t\t
\n\t\t\t— Aliquam tincidunt mauris eu risus.\n\t\t
\n\t
\n
\n\n### Header Level 3\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\n\n```css\n#header h1 a {\n display: block;\n width: 300px;\n height: 80px;\n}\n```\n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/forkOwner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9?ts=0", + "headers": { + "Date": "Tue, 10 Sep 2019 13:59:26 GMT", + "Content-Type": "text/plain; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4687", + "X-RateLimit-Reset": "1568127500", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"88b7f6d3ffbd2b089766cabe7b8bad3b\"", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A22:15110:18A6967:1DF3B71:5D77AC3D", + "content-length": "2565", + "connection": "keep-alive" + }, + "response": "---\ntitle: The Origins of Social Stationery Lettering\ndate: \"2016-12-01T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Design Culture\"\ndescription: \"Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante.\"\ncanonical: ''\n---\n\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\n\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-3.jpg)\n\n## Header Level 2\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \n\n
\n\t
\n\t\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\n\t\t
\n\t\t\t— Aliquam tincidunt mauris eu risus.\n\t\t
\n\t
\n
\n\n### Header Level 3\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\n\n```css\n#header h1 a {\n display: block;\n width: 300px;\n height: 80px;\n}\n```\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/forkOwner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044?ts=0", + "headers": { + "Date": "Tue, 10 Sep 2019 13:59:26 GMT", + "Content-Type": "text/plain; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4686", + "X-RateLimit-Reset": "1568127500", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"3caef061a429c3338cb85faf62eacb0d\"", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A2A:B4DA:532F42:65790D:5D77AC3D", + "content-length": "16071", + "connection": "keep-alive" + }, + "response": "---\ntitle: \"Johannes Gutenberg: The Birth of Movable Type\"\ndate: \"2017-08-18T22:12:03.284Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Typography\"\ntags:\n - \"Open source\"\n - \"Gatsby\"\n - \"Typography\"\ndescription: \"German inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\"\ncanonical: ''\n---\n\nGerman inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\n\n**Johannes Gensfleisch zur Laden zum Gutenberg** (c. 1398 – 1468) was a German blacksmith, goldsmith, printer, and publisher who introduced printing to Europe. His invention of mechanical movable type printing started the Printing Revolution and is widely regarded as the most important event of the modern period. It played a key role in the development of the Renaissance, Reformation, the Age of Enlightenment, and the Scientific revolution and laid the material basis for the modern knowledge-based economy and the spread of learning to the masses.\n\n
\n\t\"Gutenberg\"\n\t
Johannes Gutenberg
\n
\n\nWith his invention of the printing press, Gutenberg was the first European to use movable type printing, in around 1439. Among his many contributions to printing are: the invention of a process for mass-producing movable type; the use of oil-based ink; and the use of a wooden printing press similar to the agricultural screw presses of the period. His truly epochal invention was the combination of these elements into a practical system that allowed the mass production of printed books and was economically viable for printers and readers alike. Gutenberg's method for making type is traditionally considered to have included a type metal alloy and a hand mould for casting type. The alloy was a mixture of lead, tin, and antimony that melted at a relatively low temperature for faster and more economical casting, cast well, and created a durable type.\n\nIn Renaissance Europe, the arrival of mechanical movable type printing introduced the era of mass communication which permanently altered the structure of society. The relatively unrestricted circulation of information — including revolutionary ideas — transcended borders, captured the masses in the Reformation and threatened the power of political and religious authorities; the sharp increase in literacy broke the monopoly of the literate elite on education and learning and bolstered the emerging middle class. Across Europe, the increasing cultural self-awareness of its people led to the rise of proto-nationalism, accelerated by the flowering of the European vernacular languages to the detriment of Latin's status as lingua franca. In the 19th century, the replacement of the hand-operated Gutenberg-style press by steam-powered rotary presses allowed printing on an industrial scale, while Western-style printing was adopted all over the world, becoming practically the sole medium for modern bulk printing.\n\nThe use of movable type was a marked improvement on the handwritten manuscript, which was the existing method of book production in Europe, and upon woodblock printing, and revolutionized European book-making. Gutenberg's printing technology spread rapidly throughout Europe and later the world.\n\nHis major work, the Gutenberg Bible (also known as the 42-line Bible), has been acclaimed for its high aesthetic and technical quality.\n\n## Printing Press\n\nAround 1439, Gutenberg was involved in a financial misadventure making polished metal mirrors (which were believed to capture holy light from religious relics) for sale to pilgrims to Aachen: in 1439 the city was planning to exhibit its collection of relics from Emperor Charlemagne but the event was delayed by one year due to a severe flood and the capital already spent could not be repaid. When the question of satisfying the investors came up, Gutenberg is said to have promised to share a “secret”. It has been widely speculated that this secret may have been the idea of printing with movable type. Also around 1439–1440, the Dutch Laurens Janszoon Coster came up with the idea of printing. Legend has it that the idea came to him “like a ray of light”.\n\n
\n\t\"Early\n\t
Early wooden printing press as depicted in 1568.
\n
\n\nUntil at least 1444 he lived in Strasbourg, most likely in the St. Arbogast parish. It was in Strasbourg in 1440 that Gutenberg is said to have perfected and unveiled the secret of printing based on his research, mysteriously entitled Kunst und Aventur (art and enterprise). It is not clear what work he was engaged in, or whether some early trials with printing from movable type may have been conducted there. After this, there is a gap of four years in the record. In 1448, he was back in Mainz, where he took out a loan from his brother-in-law Arnold Gelthus, quite possibly for a printing press or related paraphernalia. By this date, Gutenberg may have been familiar with intaglio printing; it is claimed that he had worked on copper engravings with an artist known as the Master of Playing Cards.\n\nBy 1450, the press was in operation, and a German poem had been printed, possibly the first item to be printed there. Gutenberg was able to convince the wealthy moneylender Johann Fust for a loan of 800 guilders. Peter Schöffer, who became Fust’s son-in-law, also joined the enterprise. Schöffer had worked as a scribe in Paris and is believed to have designed some of the first typefaces.\n\n
\n\t
\n\t\t

All that has been written to me about that marvelous man seen at Frankfurt is true. I have not seen complete Bibles but only a number of quires of various books of the Bible. The script was very neat and legible, not at all difficult to follow—your grace would be able to read it without effort, and indeed without glasses.

\n\t\t
\n\t\t\t—Future pope Pius II in a letter to Cardinal Carvajal, March 1455\n\t\t
\n\t
\n
\n\nGutenberg's workshop was set up at Hof Humbrecht, a property belonging to a distant relative. It is not clear when Gutenberg conceived the Bible project, but for this he borrowed another 800 guilders from Fust, and work commenced in 1452. At the same time, the press was also printing other, more lucrative texts (possibly Latin grammars). There is also some speculation that there may have been two presses, one for the pedestrian texts, and one for the Bible. One of the profit-making enterprises of the new press was the printing of thousands of indulgences for the church, documented from 1454–55.\n\nIn 1455 Gutenberg completed his 42-line Bible, known as the Gutenberg Bible. About 180 copies were printed, most on paper and some on vellum.\n\n## Court Case\n\nSome time in 1456, there was a dispute between Gutenberg and Fust, and Fust demanded his money back, accusing Gutenberg of misusing the funds. Meanwhile the expenses of the Bible project had proliferated, and Gutenberg's debt now exceeded 20,000 guilders. Fust sued at the archbishop's court. A November 1455 legal document records that there was a partnership for a \"project of the books,\" the funds for which Gutenberg had used for other purposes, according to Fust. The court decided in favor of Fust, giving him control over the Bible printing workshop and half of all printed Bibles.\n\nThus Gutenberg was effectively bankrupt, but it appears he retained (or re-started) a small printing shop, and participated in the printing of a Bible in the town of Bamberg around 1459, for which he seems at least to have supplied the type. But since his printed books never carry his name or a date, it is difficult to be certain, and there is consequently a considerable scholarly debate on this subject. It is also possible that the large Catholicon dictionary, 300 copies of 754 pages, printed in Mainz in 1460, may have been executed in his workshop.\n\nMeanwhile, the Fust–Schöffer shop was the first in Europe to bring out a book with the printer's name and date, the Mainz Psalter of August 1457, and while proudly proclaiming the mechanical process by which it had been produced, it made no mention of Gutenberg.\n\n## Later Life\n\nIn 1462, during a conflict between two archbishops, Mainz was sacked by archbishop Adolph von Nassau, and Gutenberg was exiled. An old man by now, he moved to Eltville where he may have initiated and supervised a new printing press belonging to the brothers Bechtermünze.\n\nIn January 1465, Gutenberg's achievements were recognized and he was given the title Hofmann (gentleman of the court) by von Nassau. This honor included a stipend, an annual court outfit, as well as 2,180 litres of grain and 2,000 litres of wine tax-free. It is believed he may have moved back to Mainz around this time, but this is not certain.\n\n***\n\nGutenberg died in 1468 and was buried in the Franciscan church at Mainz, his contributions largely unknown. This church and the cemetery were later destroyed, and Gutenberg's grave is now lost.\n\nIn 1504, he was mentioned as the inventor of typography in a book by Professor Ivo Wittig. It was not until 1567 that the first portrait of Gutenberg, almost certainly an imaginary reconstruction, appeared in Heinrich Pantaleon's biography of famous Germans.\n\n## Printing Method With Movable Type\n\nGutenberg's early printing process, and what tests he may have made with movable type, are not known in great detail. His later Bibles were printed in such a way as to have required large quantities of type, some estimates suggesting as many as 100,000 individual sorts. Setting each page would take, perhaps, half a day, and considering all the work in loading the press, inking the type, pulling the impressions, hanging up the sheets, distributing the type, etc., it is thought that the Gutenberg–Fust shop might have employed as many as 25 craftsmen.\n\n![Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5](/media/movable-type.jpg)\n\n*Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5*\n\nGutenberg's technique of making movable type remains unclear. In the following decades, punches and copper matrices became standardized in the rapidly disseminating printing presses across Europe. Whether Gutenberg used this sophisticated technique or a somewhat primitive version has been the subject of considerable debate.\n\nIn the standard process of making type, a hard metal punch (made by punchcutting, with the letter carved back to front) is hammered into a softer copper bar, creating a matrix. This is then placed into a hand-held mould and a piece of type, or \"sort\", is cast by filling the mould with molten type-metal; this cools almost at once, and the resulting piece of type can be removed from the mould. The matrix can be reused to create hundreds, or thousands, of identical sorts so that the same character appearing anywhere within the book will appear very uniform, giving rise, over time, to the development of distinct styles of typefaces or fonts. After casting, the sorts are arranged into type-cases, and used to make up pages which are inked and printed, a procedure which can be repeated hundreds, or thousands, of times. The sorts can be reused in any combination, earning the process the name of “movable type”.\n\nThe invention of the making of types with punch, matrix and mold has been widely attributed to Gutenberg. However, recent evidence suggests that Gutenberg's process was somewhat different. If he used the punch and matrix approach, all his letters should have been nearly identical, with some variations due to miscasting and inking. However, the type used in Gutenberg's earliest work shows other variations.\n\n
\n\t
\n\t\t

It is a press, certainly, but a press from which shall flow in inexhaustible streams… Through it, god will spread his word.

\n\t\t
\n\t\t\t—Johannes Gutenberg\n\t\t
\n\t
\n
\n\nIn 2001, the physicist Blaise Agüera y Arcas and Princeton librarian Paul Needham, used digital scans of a Papal bull in the Scheide Library, Princeton, to carefully compare the same letters (types) appearing in different parts of the printed text. The irregularities in Gutenberg's type, particularly in simple characters such as the hyphen, suggested that the variations could not have come from either ink smear or from wear and damage on the pieces of metal on the types themselves. While some identical types are clearly used on other pages, other variations, subjected to detailed image analysis, suggested that they could not have been produced from the same matrix. Transmitted light pictures of the page also appeared to reveal substructures in the type that could not arise from traditional punchcutting techniques. They hypothesized that the method may have involved impressing simple shapes to create alphabets in “cuneiform” style in a matrix made of some soft material, perhaps sand. Casting the type would destroy the mould, and the matrix would need to be recreated to make each additional sort. This could explain the variations in the type, as well as the substructures observed in the printed images.\n\nThus, they feel that “the decisive factor for the birth of typography”, the use of reusable moulds for casting type, might have been a more progressive process than was previously thought. They suggest that the additional step of using the punch to create a mould that could be reused many times was not taken until twenty years later, in the 1470s. Others have not accepted some or all of their suggestions, and have interpreted the evidence in other ways, and the truth of the matter remains very uncertain.\n\nA 1568 history by Hadrianus Junius of Holland claims that the basic idea of the movable type came to Gutenberg from Laurens Janszoon Coster via Fust, who was apprenticed to Coster in the 1430s and may have brought some of his equipment from Haarlem to Mainz. While Coster appears to have experimented with moulds and castable metal type, there is no evidence that he had actually printed anything with this technology. He was an inventor and a goldsmith. However, there is one indirect supporter of the claim that Coster might be the inventor. The author of the Cologne Chronicle of 1499 quotes Ulrich Zell, the first printer of Cologne, that printing was performed in Mainz in 1450, but that some type of printing of lower quality had previously occurred in the Netherlands. However, the chronicle does not mention the name of Coster, while it actually credits Gutenberg as the \"first inventor of printing\" in the very same passage (fol. 312). The first securely dated book by Dutch printers is from 1471, and the Coster connection is today regarded as a mere legend.\n\nThe 19th century printer and typefounder Fournier Le Jeune suggested that Gutenberg might not have been using type cast with a reusable matrix, but possibly wooden types that were carved individually. A similar suggestion was made by Nash in 2004. This remains possible, albeit entirely unproven.\n\nIt has also been questioned whether Gutenberg used movable types at all. In 2004, Italian professor Bruno Fabbiani claimed that examination of the 42-line Bible revealed an overlapping of letters, suggesting that Gutenberg did not in fact use movable type (individual cast characters) but rather used whole plates made from a system somewhat like a modern typewriter, whereby the letters were stamped successively into the plate and then printed. However, most specialists regard the occasional overlapping of type as caused by paper movement over pieces of type of slightly unequal height.", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/forkOwner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043?ts=0", + "headers": { + "Date": "Tue, 10 Sep 2019 13:59:26 GMT", + "Content-Type": "text/plain; charset=iso-8859-1", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4685", + "X-RateLimit-Reset": "1568127500", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"ea72b2ba12e74f7d20ccab737e3d3698\"", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A20:2B1F:1241A8F:164863C:5D77AC3D", + "content-length": "1707", + "connection": "keep-alive" + }, + "response": "---\ntitle: Perfecting the Art of Perfection\ndate: \"2016-09-01T23:46:37.121Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Design Inspiration\"\ntags:\n - \"Handwriting\"\n - \"Learning to write\"\ndescription: \"Quisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\"\ncanonical: ''\n---\n\nQuisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\n\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-2.jpg)\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. \n\nPraesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/forkOwner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774?ts=0", + "headers": { + "Date": "Tue, 10 Sep 2019 13:59:26 GMT", + "Content-Type": "text/plain; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4684", + "X-RateLimit-Reset": "1568127500", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"3cd1cb72a7e61c4921ca6a2031ad36a4\"", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A30:B4DC:ACC0ED:D22C15:5D77AC3E", + "content-length": "7465", + "connection": "keep-alive" + }, + "response": "---\ntitle: Humane Typography in the Digital Age\ndate: \"2017-08-19T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Typography\"\ntags:\n - \"Design\"\n - \"Typography\"\n - \"Web Development\"\ndescription: \"An Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\"\ncanonical: ''\n---\n\n- [The first transition](#the-first-transition)\n- [The digital age](#the-digital-age)\n- [Loss of humanity through transitions](#loss-of-humanity-through-transitions)\n- [Chasing perfection](#chasing-perfection)\n\nAn Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\n\nThe typography of this industrial age was no longer handcrafted. Mass production and profit became more important. Quantity mattered more than the quality. The books and printed works in general lost a part of its humanity. The typefaces were not produced by craftsmen anymore. It was the machines printing and tying the books together now. The craftsmen had to let go of their craft and became a cog in the process. An extension of the industrial machine.\n\nBut the victory of the industrialism didn’t mean that the craftsmen were completely extinct. The two worlds continued to coexist independently. Each recognising the good in the other — the power of industrialism and the humanity of craftsmanship. This was the second transition that would strip typography of a part of its humanity. We have to go 500 years back in time to meet the first one.\n\n## The first transition\n\nA similar conflict emerged after the invention of the first printing press in Europe. Johannes Gutenberg invented movable type and used it to produce different compositions. His workshop could print up to 240 impressions per hour. Until then, the books were being copied by hand. All the books were handwritten and decorated with hand drawn ornaments and figures. A process of copying a book was long but each book, even a copy, was a work of art.\n\nThe first printed books were, at first, perceived as inferior to the handwritten ones. They were smaller and cheaper to produce. Movable type provided the printers with flexibility that allowed them to print books in languages other than Latin. Gill describes the transition to industrialism as something that people needed and wanted. Something similar happened after the first printed books emerged. People wanted books in a language they understood and they wanted books they could take with them. They were hungry for knowledge and printed books satisfied this hunger.\n\n![42-line-bible.jpg](/media/42-line-bible.jpg)\n\n*The 42–Line Bible, printed by Gutenberg.*\n\nBut, through this transition, the book lost a large part of its humanity. The machine took over most of the process but craftsmanship was still a part of it. The typefaces were cut manually by the first punch cutters. The paper was made by hand. The illustrations and ornaments were still being hand drawn. These were the remains of the craftsmanship that went almost extinct in the times of Eric Gill.\n\n## The digital age\n\nThe first transition took away a large part of humanity from written communication. Industrialisation, the second transition described by Eric Gill, took away most of what was left. But it’s the third transition that stripped it naked. Typefaces are faceless these days. They’re just fonts on our computers. Hardly anyone knows their stories. Hardly anyone cares. Flicking through thousands of typefaces and finding the “right one” is a matter of minutes.\n\n> In the new computer age the proliferation of typefaces and type manipulations represents a new level of visual pollution threatening our culture. Out of thousands of typefaces, all we need are a few basic ones, and trash the rest.\n>\n— Massimo Vignelli\n\nTypography is not about typefaces. It’s not about what looks best, it’s about what feels right. What communicates the message best. Typography, in its essence, is about the message. “Typographical design should perform optically what the speaker creates through voice and gesture of his thoughts.”, as El Lissitzky, a famous Russian typographer, put it.\n\n## Loss of humanity through transitions\n\nEach transition took away a part of humanity from written language. Handwritten books being the most humane form and the digital typefaces being the least. Overuse of Helvetica is a good example. Messages are being told in a typeface just because it’s a safe option. It’s always there. Everyone knows it but yet, nobody knows it. Stop someone on the street and ask him what Helvetica is? Ask a designer the same question. Ask him where it came from, when, why and who designed it. Most of them will fail to answer these questions. Most of them used it in their precious projects but they still don’t spot it in the street.\n\n
\n\t
\n\t\t

Knowledge of the quality of a typeface is of the greatest importance for the functional, aesthetic and psychological effect.

\n\t\t
\n\t\t\t— Josef Mueller-Brockmann\n\t\t
\n\t
\n
\n\nTypefaces don’t look handmade these days. And that’s all right. They don’t have to. Industrialism took that away from them and we’re fine with it. We’ve traded that part of humanity for a process that produces more books that are easier to read. That can’t be bad. And it isn’t.\n\n> Humane typography will often be comparatively rough and even uncouth; but while a certain uncouthness does not seriously matter in humane works, uncouthness has no excuse whatever in the productions of the machine.\n>\n> — Eric Gill\n\nWe’ve come close to “perfection” in the last five centuries. The letters are crisp and without rough edges. We print our compositions with high–precision printers on a high quality, machine made paper.\n\n![type-through-time.jpg](/media/type-through-time.jpg)\n\n*Type through 5 centuries.*\n\nWe lost a part of ourselves because of this chase after perfection. We forgot about the craftsmanship along the way. And the worst part is that we don’t care. The transition to the digital age made that clear. We choose typefaces like clueless zombies. There’s no meaning in our work. Type sizes, leading, margins… It’s all just a few clicks or lines of code. The message isn’t important anymore. There’s no more “why” behind the “what”.\n\n## Chasing perfection\n\nHuman beings aren’t perfect. Perfection is something that will always elude us. There will always be a small part of humanity in everything we do. No matter how small that part, we should make sure that it transcends the limits of the medium. We have to think about the message first. What typeface should we use and why? Does the typeface match the message and what we want to communicate with it? What will be the leading and why? Will there be more typefaces in our design? On what ground will they be combined? What makes our design unique and why? This is the part of humanity that is left in typography. It might be the last part. Are we really going to give it up?\n\n*Originally published by [Matej Latin](http://matejlatin.co.uk/) on [Medium](https://medium.com/design-notes/humane-typography-in-the-digital-age-9bd5c16199bd?ref=webdesignernews.com#.lygo82z0x).*", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/forkOwner/repo/contents/forkOwner/repo/posts/1970-01-01-first-title.json?ts=300&ref=refs/meta/_netlify_cms", + "headers": { + "Date": "Tue, 10 Sep 2019 13:59:30 GMT", + "Content-Type": "application/vnd.github.VERSION.raw; charset=utf-8", + "Content-Length": "8685", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4683", + "X-RateLimit-Reset": "1568127500", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"6aa2459de242daebf976a6f4bdb3f53068a4ec05\"", + "Last-Modified": "Tue, 10 Sep 2019 13:59:06 GMT", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A34:B4DE:120E243:15FB4A0:5D77AC41", + "connection": "keep-alive" + }, + "response": "{\"type\":\"PR\",\"pr\":{\"number\":5,\"head\":{\"label\":\"forkOwner:cms/forkOwner/repo/posts/1970-01-01-first-title\",\"ref\":\"cms/forkOwner/repo/posts/1970-01-01-first-title\",\"sha\":\"9c648b7438595ffcadde2af9e03f651774c9bbb7\",\"user\":{\"login\":\"forkOwner\",\"id\":53494188,\"node_id\":\"MDQ6VXNlcjUzNDk0MTg4\",\"avatar_url\":\"https://avatars1.githubusercontent.com/u/7892489?v=4\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/forkOwner\",\"html_url\":\"https://github.com/forkOwner\",\"followers_url\":\"https://api.github.com/users/forkOwner/followers\",\"following_url\":\"https://api.github.com/users/forkOwner/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/forkOwner/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/forkOwner/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/forkOwner/subscriptions\",\"organizations_url\":\"https://api.github.com/users/forkOwner/orgs\",\"repos_url\":\"https://api.github.com/users/forkOwner/repos\",\"events_url\":\"https://api.github.com/users/forkOwner/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/forkOwner/received_events\",\"type\":\"User\",\"site_admin\":false},\"repo\":{\"id\":207574049,\"node_id\":\"MDEwOlJlcG9zaXRvcnkyMDc1NzQwNDk=\",\"name\":\"repo\",\"full_name\":\"forkOwner/repo\",\"private\":false,\"owner\":{\"login\":\"forkOwner\",\"id\":53494188,\"node_id\":\"MDQ6VXNlcjUzNDk0MTg4\",\"avatar_url\":\"https://avatars1.githubusercontent.com/u/7892489?v=4\",\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/forkOwner\",\"html_url\":\"https://github.com/forkOwner\",\"followers_url\":\"https://api.github.com/users/forkOwner/followers\",\"following_url\":\"https://api.github.com/users/forkOwner/following{/other_user}\",\"gists_url\":\"https://api.github.com/users/forkOwner/gists{/gist_id}\",\"starred_url\":\"https://api.github.com/users/forkOwner/starred{/owner}{/repo}\",\"subscriptions_url\":\"https://api.github.com/users/forkOwner/subscriptions\",\"organizations_url\":\"https://api.github.com/users/forkOwner/orgs\",\"repos_url\":\"https://api.github.com/users/forkOwner/repos\",\"events_url\":\"https://api.github.com/users/forkOwner/events{/privacy}\",\"received_events_url\":\"https://api.github.com/users/forkOwner/received_events\",\"type\":\"User\",\"site_admin\":false},\"html_url\":\"https://github.com/forkOwner/repo\",\"description\":null,\"fork\":true,\"url\":\"https://api.github.com/repos/forkOwner/repo\",\"forks_url\":\"https://api.github.com/repos/forkOwner/repo/forks\",\"keys_url\":\"https://api.github.com/repos/forkOwner/repo/keys{/key_id}\",\"collaborators_url\":\"https://api.github.com/repos/forkOwner/repo/collaborators{/collaborator}\",\"teams_url\":\"https://api.github.com/repos/forkOwner/repo/teams\",\"hooks_url\":\"https://api.github.com/repos/forkOwner/repo/hooks\",\"issue_events_url\":\"https://api.github.com/repos/forkOwner/repo/issues/events{/number}\",\"events_url\":\"https://api.github.com/repos/forkOwner/repo/events\",\"assignees_url\":\"https://api.github.com/repos/forkOwner/repo/assignees{/user}\",\"branches_url\":\"https://api.github.com/repos/forkOwner/repo/branches{/branch}\",\"tags_url\":\"https://api.github.com/repos/forkOwner/repo/tags\",\"blobs_url\":\"https://api.github.com/repos/forkOwner/repo/git/blobs{/sha}\",\"git_tags_url\":\"https://api.github.com/repos/forkOwner/repo/git/tags{/sha}\",\"git_refs_url\":\"https://api.github.com/repos/forkOwner/repo/git/refs{/sha}\",\"trees_url\":\"https://api.github.com/repos/forkOwner/repo/git/trees{/sha}\",\"statuses_url\":\"https://api.github.com/repos/forkOwner/repo/statuses/{sha}\",\"languages_url\":\"https://api.github.com/repos/forkOwner/repo/languages\",\"stargazers_url\":\"https://api.github.com/repos/forkOwner/repo/stargazers\",\"contributors_url\":\"https://api.github.com/repos/forkOwner/repo/contributors\",\"subscribers_url\":\"https://api.github.com/repos/forkOwner/repo/subscribers\",\"subscription_url\":\"https://api.github.com/repos/forkOwner/repo/subscription\",\"commits_url\":\"https://api.github.com/repos/forkOwner/repo/commits{/sha}\",\"git_commits_url\":\"https://api.github.com/repos/forkOwner/repo/git/commits{/sha}\",\"comments_url\":\"https://api.github.com/repos/forkOwner/repo/comments{/number}\",\"issue_comment_url\":\"https://api.github.com/repos/forkOwner/repo/issues/comments{/number}\",\"contents_url\":\"https://api.github.com/repos/forkOwner/repo/contents/{+path}\",\"compare_url\":\"https://api.github.com/repos/forkOwner/repo/compare/{base}...{head}\",\"merges_url\":\"https://api.github.com/repos/forkOwner/repo/merges\",\"archive_url\":\"https://api.github.com/repos/forkOwner/repo/{archive_format}{/ref}\",\"downloads_url\":\"https://api.github.com/repos/forkOwner/repo/downloads\",\"issues_url\":\"https://api.github.com/repos/forkOwner/repo/issues{/number}\",\"pulls_url\":\"https://api.github.com/repos/forkOwner/repo/pulls{/number}\",\"milestones_url\":\"https://api.github.com/repos/forkOwner/repo/milestones{/number}\",\"notifications_url\":\"https://api.github.com/repos/forkOwner/repo/notifications{?since,all,participating}\",\"labels_url\":\"https://api.github.com/repos/forkOwner/repo/labels{/name}\",\"releases_url\":\"https://api.github.com/repos/forkOwner/repo/releases{/id}\",\"deployments_url\":\"https://api.github.com/repos/forkOwner/repo/deployments\",\"created_at\":\"2019-09-10T13:56:28Z\",\"updated_at\":\"2019-09-10T13:56:30Z\",\"pushed_at\":\"2019-09-10T13:58:55Z\",\"git_url\":\"git://github.com/forkOwner/repo.git\",\"ssh_url\":\"git@github.com:forkOwner/repo.git\",\"clone_url\":\"https://github.com/forkOwner/repo.git\",\"svn_url\":\"https://github.com/forkOwner/repo\",\"homepage\":null,\"size\":0,\"stargazers_count\":0,\"watchers_count\":0,\"language\":null,\"has_issues\":false,\"has_projects\":true,\"has_downloads\":true,\"has_wiki\":true,\"has_pages\":false,\"forks_count\":0,\"mirror_url\":null,\"archived\":false,\"disabled\":false,\"open_issues_count\":0,\"license\":{\"key\":\"mit\",\"name\":\"MIT License\",\"spdx_id\":\"MIT\",\"url\":\"https://api.github.com/licenses/mit\",\"node_id\":\"MDc6TGljZW5zZTEz\"},\"forks\":0,\"open_issues\":0,\"watchers\":0,\"default_branch\":\"master\"}}},\"user\":\"forkOwner\",\"status\":\"pending_review\",\"branch\":\"cms/forkOwner/repo/posts/1970-01-01-first-title\",\"collection\":\"posts\",\"commitMessage\":\"Create Post “1970-01-01-first-title”\",\"title\":\"first title\",\"description\":\"first description\",\"objects\":{\"entry\":{\"path\":\"content/posts/1970-01-01-first-title.md\",\"sha\":\"a041245814892e3f73f63ca54333fda649b7fc0b\"},\"files\":[]},\"timeStamp\":\"1970-01-01T00:00:00.300Z\"}", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=master", + "headers": { + "Date": "Tue, 10 Sep 2019 13:59:30 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "404 Not Found", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4682", + "X-RateLimit-Reset": "1568127500", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A38:2B24:17EEA2E:1D185D8:5D77AC42", + "content-length": "116", + "connection": "keep-alive" + }, + "response": "{\n \"message\": \"Not Found\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/#get-contents\"\n}\n", + "status": 404 + }, + { + "method": "GET", + "url": "/repos/forkOwner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=cms/forkOwner/repo/posts/1970-01-01-first-title", + "headers": { + "Date": "Tue, 10 Sep 2019 13:59:30 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "404 Not Found", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4681", + "X-RateLimit-Reset": "1568127500", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A36:244E4:B01886:D5684C:5D77AC42", + "content-length": "218", + "connection": "keep-alive" + }, + "response": "{\n \"message\": \"No commit found for the ref cms/forkOwner/repo/posts/1970-01-01-first-title\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/\"\n}\n", + "status": 404 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=master", + "headers": { + "Date": "Tue, 10 Sep 2019 13:59:31 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "404 Not Found", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4680", + "X-RateLimit-Reset": "1568127500", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A3B:1510E:AD7AF3:D3651F:5D77AC43", + "content-length": "116", + "connection": "keep-alive" + }, + "response": "{\n \"message\": \"Not Found\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/#get-contents\"\n}\n", + "status": 404 + }, + { + "body": "{\"content\":\"LS0tCnRlbXBsYXRlOiBwb3N0CnRpdGxlOiBmaXJzdCB0aXRsZQpkcmFmdDogdHJ1ZQpkYXRlOiAxOTcwLTAxLTAxVDAwOjAwOjAwLjAwMFoKZGVzY3JpcHRpb246IGZpcnN0IGRlc2NyaXB0aW9uCmNhdGVnb3J5OiBmaXJzdCBjYXRlZ29yeQp0YWdzOgogIC0gdGFnMQotLS0KZmlyc3QgYm9keQo=\",\"encoding\":\"base64\"}", + "method": "POST", + "url": "/repos/forkOwner/repo/git/blobs?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:59:32 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "212", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4679", + "X-RateLimit-Reset": "1568127500", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"9110b0f43bac9b530937daefcc0fde5f\"", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/forkOwner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A3C:244E7:11C04E1:15AA09D:5D77AC43", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"a041245814892e3f73f63ca54333fda649b7fc0b\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b\"\n}\n", + "status": 201 + }, + { + "method": "GET", + "url": "/repos/forkOwner/repo/branches/master?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:59:33 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4678", + "X-RateLimit-Reset": "1568127500", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"f77cc5d5061b3978c67296ca43107299\"", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A3E:B4E0:16DB7F2:1BD280F:5D77AC44", + "content-length": "6021", + "connection": "keep-alive" + }, + "response": "{\n \"name\": \"master\",\n \"commit\": {\n \"sha\": \"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NTc0MDQ5OjcyNjE3MmRlYWU5OWM4YTJjZWE0YzcxZTczNGEwMmE3OTNkNGQ5ZTU=\",\n \"commit\": {\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-08T09:08:14Z\"\n },\n \"committer\": {\n \"name\": \"GitHub\",\n \"email\": \"noreply@github.com\",\n \"date\": \"2019-09-08T09:08:14Z\"\n },\n \"message\": \"Merge pull request #10 from owner/chore/update_dependencies\\n\\nChore: update dependencies\",\n \"tree\": {\n \"sha\": \"c5b7f6d674ba193bb7b4a5fcf4933034e1b7f2b7\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/c5b7f6d674ba193bb7b4a5fcf4933034e1b7f2b7\"\n },\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"comment_count\": 0,\n \"verification\": {\n \"verified\": true,\n \"reason\": \"valid\",\n \"signature\": \"-----BEGIN PGP SIGNATURE-----\\n\\nwsBcBAABCAAQBQJddMT+CRBK7hj4Ov3rIwAAdHIIABWcobVYZFMuqSPezceRaKDr\\npXGqxvB3WLiIrvsQiBz2si9SvufXxLUdq72iaYTbXMCqIAAIBDNwHLltOKcbUF9J\\nKa8pD6cq7jpNyZfhI8xlapMwEZPu53as0tSvwdOnl/0iL+WYjUZUFQR+vrWEmllu\\nhIES9QxU2nk5zcS7t8sFRA+sJdll8GzzhoWYkpw3wgqpxCzJdf5HJS0tWyVCZM5U\\nCgSpSgTvz9bALnQxu7YVrfLGEvi8S7LaOEz5HQc+TV1hNR2dfl5hhiHhWQ1Rsx5w\\nUECV01vItNWhx2dyMn77hIu/G+bTH89WZDU+CmifsNkmvkq90fk4eNt8Hg1mxn4=\\n=6ayM\\n-----END PGP SIGNATURE-----\\n\",\n \"payload\": \"tree c5b7f6d674ba193bb7b4a5fcf4933034e1b7f2b7\\nparent 8ade583d7c02e7769dd685ca64c10851c09f51cf\\nparent 4940957ff42b034d8c47d64b383c34548a34fbb5\\nauthor owner 1567933694 +0300\\ncommitter GitHub 1567933694 +0300\\n\\nMerge pull request #10 from owner/chore/update_dependencies\\n\\nChore: update dependencies\"\n }\n },\n \"url\": \"https://api.github.com/repos/forkOwner/repo/commits/726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"comments_url\": \"https://api.github.com/repos/forkOwner/repo/commits/726172deae99c8a2cea4c71e734a02a793d4d9e5/comments\",\n \"author\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"committer\": {\n \"login\": \"web-flow\",\n \"id\": 19864447,\n \"node_id\": \"MDQ6VXNlcjE5ODY0NDQ3\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/web-flow\",\n \"html_url\": \"https://github.com/web-flow\",\n \"followers_url\": \"https://api.github.com/users/web-flow/followers\",\n \"following_url\": \"https://api.github.com/users/web-flow/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/web-flow/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/web-flow/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/web-flow/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/web-flow/orgs\",\n \"repos_url\": \"https://api.github.com/users/web-flow/repos\",\n \"events_url\": \"https://api.github.com/users/web-flow/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/web-flow/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"parents\": [\n {\n \"sha\": \"8ade583d7c02e7769dd685ca64c10851c09f51cf\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/commits/8ade583d7c02e7769dd685ca64c10851c09f51cf\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/8ade583d7c02e7769dd685ca64c10851c09f51cf\"\n },\n {\n \"sha\": \"4940957ff42b034d8c47d64b383c34548a34fbb5\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/commits/4940957ff42b034d8c47d64b383c34548a34fbb5\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/4940957ff42b034d8c47d64b383c34548a34fbb5\"\n }\n ]\n },\n \"_links\": {\n \"self\": \"https://api.github.com/repos/forkOwner/repo/branches/master\",\n \"html\": \"https://github.com/forkOwner/repo/tree/master\"\n },\n \"protected\": false,\n \"protection\": {\n \"enabled\": false,\n \"required_status_checks\": {\n \"enforcement_level\": \"off\",\n \"contexts\": [\n\n ]\n }\n },\n \"protection_url\": \"https://api.github.com/repos/forkOwner/repo/branches/master/protection\"\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/forkOwner/repo/git/trees/726172deae99c8a2cea4c71e734a02a793d4d9e5?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:59:33 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4677", + "X-RateLimit-Reset": "1568127500", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"4cb59f98c7efebbb9d0b391d65868c46\"", + "Last-Modified": "Tue, 10 Sep 2019 13:56:30 GMT", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A41:2B1F:1242471:1649286:5D77AC45", + "content-length": "11959", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"tree\": [\n {\n \"path\": \".circleci\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"e5e9af3301cac61f120b8e4d40b1733c7a45685a\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/e5e9af3301cac61f120b8e4d40b1733c7a45685a\"\n },\n {\n \"path\": \".eslintignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"80b4531b026d19f8fa589efd122e76199d23f967\",\n \"size\": 39,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/80b4531b026d19f8fa589efd122e76199d23f967\"\n },\n {\n \"path\": \".eslintrc.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"370684994aaed5b858da3a006f48cfa57e88fd27\",\n \"size\": 414,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/370684994aaed5b858da3a006f48cfa57e88fd27\"\n },\n {\n \"path\": \".flowconfig\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14aa2ac4cc0e15223ad98630a6f1325fc81f8043\",\n \"size\": 283,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/14aa2ac4cc0e15223ad98630a6f1325fc81f8043\"\n },\n {\n \"path\": \".gitattributes\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"10a369ddf4f603337cabc6f21646508323941ce1\",\n \"size\": 135,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/10a369ddf4f603337cabc6f21646508323941ce1\"\n },\n {\n \"path\": \".github\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4ebeece548b52b20af59622354530a6d33b50b43\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/4ebeece548b52b20af59622354530a6d33b50b43\"\n },\n {\n \"path\": \".gitignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"c071ba35b0e49899bab6d610a68eef667dbbf157\",\n \"size\": 169,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/c071ba35b0e49899bab6d610a68eef667dbbf157\"\n },\n {\n \"path\": \".prettierignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"393f050e123d998cf8c8b362ff95cc8ac4d250e5\",\n \"size\": 45,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/393f050e123d998cf8c8b362ff95cc8ac4d250e5\"\n },\n {\n \"path\": \".prettierrc\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e52ad05bb13b084d7949dd76e1b2517455162150\",\n \"size\": 223,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/e52ad05bb13b084d7949dd76e1b2517455162150\"\n },\n {\n \"path\": \".stylelintrc.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"4b4c9698d10d756f5faa025659b86375428ed0a7\",\n \"size\": 718,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/4b4c9698d10d756f5faa025659b86375428ed0a7\"\n },\n {\n \"path\": \".vscode\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"286e97ec0113ea8242b41ac222e2c3e8077e6f1e\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/286e97ec0113ea8242b41ac222e2c3e8077e6f1e\"\n },\n {\n \"path\": \"CHANGELOG.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"070a5d4f0eacd2dc0be81ae8996f8982de43046e\",\n \"size\": 2113,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/070a5d4f0eacd2dc0be81ae8996f8982de43046e\"\n },\n {\n \"path\": \"CODE_OF_CONDUCT.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"92bc7565ff0ee145a0041b5179a820f14f39ab22\",\n \"size\": 3355,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/92bc7565ff0ee145a0041b5179a820f14f39ab22\"\n },\n {\n \"path\": \"CONTRIBUTING.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"8552aa241254a61258e1ff9666ab36f32fb1e3b9\",\n \"size\": 3548,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/8552aa241254a61258e1ff9666ab36f32fb1e3b9\"\n },\n {\n \"path\": \"LICENSE\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"42d85938357b49977c126ca03b199129082d4fb8\",\n \"size\": 1091,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/42d85938357b49977c126ca03b199129082d4fb8\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"19df50a78654c8d757ca7f38447aa3d09c7abcce\",\n \"size\": 3698,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/19df50a78654c8d757ca7f38447aa3d09c7abcce\"\n },\n {\n \"path\": \"backend\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\"\n },\n {\n \"path\": \"config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"58afd573bbb69fcca000efd0f5d90b93c93a98dd\",\n \"size\": 853,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/58afd573bbb69fcca000efd0f5d90b93c93a98dd\"\n },\n {\n \"path\": \"content\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/0294ef106c58743907a5c855da1eb0f87b0b6dfc\"\n },\n {\n \"path\": \"flow-typed\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"86c32fd6c3118be5e0dbbb231a834447357236c6\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/86c32fd6c3118be5e0dbbb231a834447357236c6\"\n },\n {\n \"path\": \"flow\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"0af45ad00d155c8d8c7407d913ff85278244c9ce\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/0af45ad00d155c8d8c7407d913ff85278244c9ce\"\n },\n {\n \"path\": \"gatsby-browser.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9bd2c9dce175f04980e91cd9dc295a299e3cdb80\",\n \"size\": 90,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/9bd2c9dce175f04980e91cd9dc295a299e3cdb80\"\n },\n {\n \"path\": \"gatsby-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"353a109dad62e3f25bf9f5e6a2167f21a6c8b459\",\n \"size\": 7228,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/353a109dad62e3f25bf9f5e6a2167f21a6c8b459\"\n },\n {\n \"path\": \"gatsby-node.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14a207883c2093d2cc071bc5a464e165bcc1fead\",\n \"size\": 409,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/14a207883c2093d2cc071bc5a464e165bcc1fead\"\n },\n {\n \"path\": \"gatsby\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4f23c06cd1740bf78304d2c0b29bf6bfdf427981\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/4f23c06cd1740bf78304d2c0b29bf6bfdf427981\"\n },\n {\n \"path\": \"jest\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\"\n },\n {\n \"path\": \"netlify.toml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"599b99cc5700404fde316a7ede829776f23e7d45\",\n \"size\": 137,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/599b99cc5700404fde316a7ede829776f23e7d45\"\n },\n {\n \"path\": \"package.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9d777616438b90a18f1a4ebfd5f114b4c06c6f17\",\n \"size\": 6855,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/9d777616438b90a18f1a4ebfd5f114b4c06c6f17\"\n },\n {\n \"path\": \"postcss-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d216501e9b351a72e00ba0b7459a6500e27e7da2\",\n \"size\": 703,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/d216501e9b351a72e00ba0b7459a6500e27e7da2\"\n },\n {\n \"path\": \"renovate.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"dcc309398785698b8870545c32051a3d72dd8271\",\n \"size\": 460,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/dcc309398785698b8870545c32051a3d72dd8271\"\n },\n {\n \"path\": \"serverless-scripts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ee3701f2fbfc7196ba340f6481d1387d20527898\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/ee3701f2fbfc7196ba340f6481d1387d20527898\"\n },\n {\n \"path\": \"serverless-single-page-app-plugin\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"08763fcfba643a06a452398517019bea4a5850ba\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/08763fcfba643a06a452398517019bea4a5850ba\"\n },\n {\n \"path\": \"serverless.yml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"20b22c5fad229f35d029bf6614d333d82fe8a987\",\n \"size\": 7803,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/20b22c5fad229f35d029bf6614d333d82fe8a987\"\n },\n {\n \"path\": \"src\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"8cdb35a88232c0f32f12f130c92c7cc55f97f471\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/8cdb35a88232c0f32f12f130c92c7cc55f97f471\"\n },\n {\n \"path\": \"static\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"53c6380a600a030d3722bff7ecde36f749fb6964\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/53c6380a600a030d3722bff7ecde36f749fb6964\"\n },\n {\n \"path\": \"utils\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"a592549c9f74db40b51efefcda2fd76810405f27\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/a592549c9f74db40b51efefcda2fd76810405f27\"\n },\n {\n \"path\": \"yarn.lock\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"475c9c1924ca752a0686303e2fdeb7b13ad75f57\",\n \"size\": 793903,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/475c9c1924ca752a0686303e2fdeb7b13ad75f57\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/forkOwner/repo/git/trees/0294ef106c58743907a5c855da1eb0f87b0b6dfc?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:59:34 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4676", + "X-RateLimit-Reset": "1568127500", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"145b65676fde9944237823c2b2f7e235\"", + "Last-Modified": "Tue, 10 Sep 2019 13:56:30 GMT", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A42:3ED7B:1281045:167A612:5D77AC46", + "content-length": "846", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\n \"tree\": [\n {\n \"path\": \"pages\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\"\n },\n {\n \"path\": \"posts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"34892575e216c06e757093f036bd8e057c78a52f\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/34892575e216c06e757093f036bd8e057c78a52f\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/forkOwner/repo/git/trees/34892575e216c06e757093f036bd8e057c78a52f?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:59:34 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4675", + "X-RateLimit-Reset": "1568127500", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"dffeebbaee00b1940716502bcfd835a4\"", + "Last-Modified": "Tue, 10 Sep 2019 13:56:30 GMT", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A44:244E4:B01BAD:D56C42:5D77AC46", + "content-length": "2060", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"34892575e216c06e757093f036bd8e057c78a52f\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/34892575e216c06e757093f036bd8e057c78a52f\",\n \"tree\": [\n {\n \"path\": \"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"size\": 1707,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\"\n },\n {\n \"path\": \"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"size\": 2565,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\"\n },\n {\n \"path\": \"2016-02-02---A-Brief-History-of-Typography.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"0eea554365f002d0f1572af9a58522d335a794d5\",\n \"size\": 2786,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\"\n },\n {\n \"path\": \"2017-18-08---The-Birth-of-Movable-Type.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"44f78c474d04273185a95821426f75affc9b0044\",\n \"size\": 16071,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\"\n },\n {\n \"path\": \"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"size\": 7465,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 200 + }, + { + "body": "{\"base_tree\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"tree\":[{\"path\":\"1970-01-01-first-title.md\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"a041245814892e3f73f63ca54333fda649b7fc0b\"}]}", + "method": "POST", + "url": "/repos/forkOwner/repo/git/trees?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:59:35 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "2397", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4674", + "X-RateLimit-Reset": "1568127500", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"2724f7374e1cabc1fc97fc93d56683f7\"", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/forkOwner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A47:3ED76:48E02A:59543C:5D77AC47", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a041245814892e3f73f63ca54333fda649b7fc0b\",\n \"size\": 167,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b\"\n },\n {\n \"path\": \"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"size\": 1707,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\"\n },\n {\n \"path\": \"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"size\": 2565,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\"\n },\n {\n \"path\": \"2016-02-02---A-Brief-History-of-Typography.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"0eea554365f002d0f1572af9a58522d335a794d5\",\n \"size\": 2786,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\"\n },\n {\n \"path\": \"2017-18-08---The-Birth-of-Movable-Type.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"44f78c474d04273185a95821426f75affc9b0044\",\n \"size\": 16071,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\"\n },\n {\n \"path\": \"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"size\": 7465,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"base_tree\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\"tree\":[{\"path\":\"posts\",\"mode\":\"040000\",\"type\":\"tree\",\"sha\":\"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\"parentSha\":\"34892575e216c06e757093f036bd8e057c78a52f\"}]}", + "method": "POST", + "url": "/repos/forkOwner/repo/git/trees?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:59:36 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "846", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4673", + "X-RateLimit-Reset": "1568127500", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"3a18ca43d35ad985a7254b1d8e5912fe\"", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/forkOwner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A48:244E7:11C0AFF:15AA816:5D77AC47", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"tree\": [\n {\n \"path\": \"pages\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\"\n },\n {\n \"path\": \"posts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"base_tree\":\"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\"tree\":[{\"path\":\"content\",\"mode\":\"040000\",\"type\":\"tree\",\"sha\":\"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\"parentSha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\"}]}", + "method": "POST", + "url": "/repos/forkOwner/repo/git/trees?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:59:37 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "11959", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4672", + "X-RateLimit-Reset": "1568127500", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"642fe7ffc59b49d6b9b4eda36ef3fd38\"", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/forkOwner/repo/git/trees/daee8d5d15d144e8779955166a2afeccde2770e1", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7ADF:3ED82:18A25C2:1DF912C:5D77AC48", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"daee8d5d15d144e8779955166a2afeccde2770e1\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/daee8d5d15d144e8779955166a2afeccde2770e1\",\n \"tree\": [\n {\n \"path\": \".circleci\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"e5e9af3301cac61f120b8e4d40b1733c7a45685a\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/e5e9af3301cac61f120b8e4d40b1733c7a45685a\"\n },\n {\n \"path\": \".eslintignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"80b4531b026d19f8fa589efd122e76199d23f967\",\n \"size\": 39,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/80b4531b026d19f8fa589efd122e76199d23f967\"\n },\n {\n \"path\": \".eslintrc.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"370684994aaed5b858da3a006f48cfa57e88fd27\",\n \"size\": 414,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/370684994aaed5b858da3a006f48cfa57e88fd27\"\n },\n {\n \"path\": \".flowconfig\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14aa2ac4cc0e15223ad98630a6f1325fc81f8043\",\n \"size\": 283,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/14aa2ac4cc0e15223ad98630a6f1325fc81f8043\"\n },\n {\n \"path\": \".gitattributes\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"10a369ddf4f603337cabc6f21646508323941ce1\",\n \"size\": 135,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/10a369ddf4f603337cabc6f21646508323941ce1\"\n },\n {\n \"path\": \".github\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4ebeece548b52b20af59622354530a6d33b50b43\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/4ebeece548b52b20af59622354530a6d33b50b43\"\n },\n {\n \"path\": \".gitignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"c071ba35b0e49899bab6d610a68eef667dbbf157\",\n \"size\": 169,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/c071ba35b0e49899bab6d610a68eef667dbbf157\"\n },\n {\n \"path\": \".prettierignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"393f050e123d998cf8c8b362ff95cc8ac4d250e5\",\n \"size\": 45,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/393f050e123d998cf8c8b362ff95cc8ac4d250e5\"\n },\n {\n \"path\": \".prettierrc\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e52ad05bb13b084d7949dd76e1b2517455162150\",\n \"size\": 223,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/e52ad05bb13b084d7949dd76e1b2517455162150\"\n },\n {\n \"path\": \".stylelintrc.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"4b4c9698d10d756f5faa025659b86375428ed0a7\",\n \"size\": 718,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/4b4c9698d10d756f5faa025659b86375428ed0a7\"\n },\n {\n \"path\": \".vscode\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"286e97ec0113ea8242b41ac222e2c3e8077e6f1e\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/286e97ec0113ea8242b41ac222e2c3e8077e6f1e\"\n },\n {\n \"path\": \"CHANGELOG.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"070a5d4f0eacd2dc0be81ae8996f8982de43046e\",\n \"size\": 2113,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/070a5d4f0eacd2dc0be81ae8996f8982de43046e\"\n },\n {\n \"path\": \"CODE_OF_CONDUCT.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"92bc7565ff0ee145a0041b5179a820f14f39ab22\",\n \"size\": 3355,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/92bc7565ff0ee145a0041b5179a820f14f39ab22\"\n },\n {\n \"path\": \"CONTRIBUTING.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"8552aa241254a61258e1ff9666ab36f32fb1e3b9\",\n \"size\": 3548,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/8552aa241254a61258e1ff9666ab36f32fb1e3b9\"\n },\n {\n \"path\": \"LICENSE\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"42d85938357b49977c126ca03b199129082d4fb8\",\n \"size\": 1091,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/42d85938357b49977c126ca03b199129082d4fb8\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"19df50a78654c8d757ca7f38447aa3d09c7abcce\",\n \"size\": 3698,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/19df50a78654c8d757ca7f38447aa3d09c7abcce\"\n },\n {\n \"path\": \"backend\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\"\n },\n {\n \"path\": \"config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"58afd573bbb69fcca000efd0f5d90b93c93a98dd\",\n \"size\": 853,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/58afd573bbb69fcca000efd0f5d90b93c93a98dd\"\n },\n {\n \"path\": \"content\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639\"\n },\n {\n \"path\": \"flow-typed\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"86c32fd6c3118be5e0dbbb231a834447357236c6\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/86c32fd6c3118be5e0dbbb231a834447357236c6\"\n },\n {\n \"path\": \"flow\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"0af45ad00d155c8d8c7407d913ff85278244c9ce\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/0af45ad00d155c8d8c7407d913ff85278244c9ce\"\n },\n {\n \"path\": \"gatsby-browser.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9bd2c9dce175f04980e91cd9dc295a299e3cdb80\",\n \"size\": 90,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/9bd2c9dce175f04980e91cd9dc295a299e3cdb80\"\n },\n {\n \"path\": \"gatsby-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"353a109dad62e3f25bf9f5e6a2167f21a6c8b459\",\n \"size\": 7228,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/353a109dad62e3f25bf9f5e6a2167f21a6c8b459\"\n },\n {\n \"path\": \"gatsby-node.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14a207883c2093d2cc071bc5a464e165bcc1fead\",\n \"size\": 409,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/14a207883c2093d2cc071bc5a464e165bcc1fead\"\n },\n {\n \"path\": \"gatsby\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4f23c06cd1740bf78304d2c0b29bf6bfdf427981\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/4f23c06cd1740bf78304d2c0b29bf6bfdf427981\"\n },\n {\n \"path\": \"jest\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\"\n },\n {\n \"path\": \"netlify.toml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"599b99cc5700404fde316a7ede829776f23e7d45\",\n \"size\": 137,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/599b99cc5700404fde316a7ede829776f23e7d45\"\n },\n {\n \"path\": \"package.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9d777616438b90a18f1a4ebfd5f114b4c06c6f17\",\n \"size\": 6855,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/9d777616438b90a18f1a4ebfd5f114b4c06c6f17\"\n },\n {\n \"path\": \"postcss-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d216501e9b351a72e00ba0b7459a6500e27e7da2\",\n \"size\": 703,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/d216501e9b351a72e00ba0b7459a6500e27e7da2\"\n },\n {\n \"path\": \"renovate.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"dcc309398785698b8870545c32051a3d72dd8271\",\n \"size\": 460,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/dcc309398785698b8870545c32051a3d72dd8271\"\n },\n {\n \"path\": \"serverless-scripts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ee3701f2fbfc7196ba340f6481d1387d20527898\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/ee3701f2fbfc7196ba340f6481d1387d20527898\"\n },\n {\n \"path\": \"serverless-single-page-app-plugin\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"08763fcfba643a06a452398517019bea4a5850ba\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/08763fcfba643a06a452398517019bea4a5850ba\"\n },\n {\n \"path\": \"serverless.yml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"20b22c5fad229f35d029bf6614d333d82fe8a987\",\n \"size\": 7803,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/20b22c5fad229f35d029bf6614d333d82fe8a987\"\n },\n {\n \"path\": \"src\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"8cdb35a88232c0f32f12f130c92c7cc55f97f471\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/8cdb35a88232c0f32f12f130c92c7cc55f97f471\"\n },\n {\n \"path\": \"static\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"53c6380a600a030d3722bff7ecde36f749fb6964\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/53c6380a600a030d3722bff7ecde36f749fb6964\"\n },\n {\n \"path\": \"utils\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"a592549c9f74db40b51efefcda2fd76810405f27\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/a592549c9f74db40b51efefcda2fd76810405f27\"\n },\n {\n \"path\": \"yarn.lock\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"475c9c1924ca752a0686303e2fdeb7b13ad75f57\",\n \"size\": 793903,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/475c9c1924ca752a0686303e2fdeb7b13ad75f57\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"message\":\"Create Post “1970-01-01-first-title”\",\"tree\":\"daee8d5d15d144e8779955166a2afeccde2770e1\",\"parents\":[\"726172deae99c8a2cea4c71e734a02a793d4d9e5\"]}", + "method": "POST", + "url": "/repos/forkOwner/repo/git/commits?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:59:38 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "1565", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4671", + "X-RateLimit-Reset": "1568127500", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"986648cd1fb4edceb708d775fb53d3bc\"", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/forkOwner/repo/git/commits/d79b56ce73ffb33c35198e448f34c5e293c9ae14", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7AE0:15110:18A7C92:1DF52FC:5D77AC49", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"d79b56ce73ffb33c35198e448f34c5e293c9ae14\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NTc0MDQ5OmQ3OWI1NmNlNzNmZmIzM2MzNTE5OGU0NDhmMzRjNWUyOTNjOWFlMTQ=\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/d79b56ce73ffb33c35198e448f34c5e293c9ae14\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/d79b56ce73ffb33c35198e448f34c5e293c9ae14\",\n \"author\": {\n \"name\": \"forkOwner\",\n \"email\": \"53494188+forkOwner@users.noreply.github.com\",\n \"date\": \"2019-09-10T13:59:37Z\"\n },\n \"committer\": {\n \"name\": \"forkOwner\",\n \"email\": \"53494188+forkOwner@users.noreply.github.com\",\n \"date\": \"2019-09-10T13:59:37Z\"\n },\n \"tree\": {\n \"sha\": \"daee8d5d15d144e8779955166a2afeccde2770e1\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/daee8d5d15d144e8779955166a2afeccde2770e1\"\n },\n \"message\": \"Create Post “1970-01-01-first-title”\",\n \"parents\": [\n {\n \"sha\": \"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/726172deae99c8a2cea4c71e734a02a793d4d9e5\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "status": 201 + }, + { + "body": "{\"ref\":\"refs/heads/cms/forkOwner/repo/posts/1970-01-01-first-title\",\"sha\":\"d79b56ce73ffb33c35198e448f34c5e293c9ae14\"}", + "method": "POST", + "url": "/repos/forkOwner/repo/git/refs?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:59:39 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "764", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4670", + "X-RateLimit-Reset": "1568127500", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"be0936e4ec3a45e2216060700137c04a\"", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "Location": "https://api.github.com/repos/forkOwner/repo/git/refs/heads/cms/forkOwner/repo/posts/1970-01-01-first-title", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7AE2:15110:18A7DCF:1DF5484:5D77AC4A", + "connection": "keep-alive" + }, + "response": "{\n \"ref\": \"refs/heads/cms/forkOwner/repo/posts/1970-01-01-first-title\",\n \"node_id\": \"MDM6UmVmMjA3NTc0MDQ5OmNtcy9lcmV6cm9rYWgtdGVzdC9nYXRzYnktbmV0bGlmeS1jbXMtYXdzLTE1NjgxMjM1NzQwNTEtZWRhNWpwYjFkN28vcG9zdHMvMTk3MC0wMS0wMS1maXJzdC10aXRsZQ==\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/refs/heads/cms/forkOwner/repo/posts/1970-01-01-first-title\",\n \"object\": {\n \"sha\": \"d79b56ce73ffb33c35198e448f34c5e293c9ae14\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/d79b56ce73ffb33c35198e448f34c5e293c9ae14\"\n }\n}\n", + "status": 201 + }, + { + "method": "GET", + "url": "/repos/forkOwner/repo/git/refs/meta/_netlify_cms?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:59:40 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4669", + "X-RateLimit-Reset": "1568127500", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"935ec6013edebb9966742e49280f0ca3\"", + "Last-Modified": "Tue, 10 Sep 2019 13:56:30 GMT", + "X-Poll-Interval": "300", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7AE5:244EB:182F759:1D61398:5D77AC4B", + "content-length": "494", + "connection": "keep-alive" + }, + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NTc0MDQ5OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"454bad1fa90d83a669ff9f8a0245d71a5f0dd017\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/454bad1fa90d83a669ff9f8a0245d71a5f0dd017\"\n }\n}\n", + "status": 200 + }, + { + "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJ1c2VyIjoiZm9ya093bmVyIiwic3RhdHVzIjoiZHJhZnQiLCJicmFuY2giOiJjbXMvZm9ya093bmVyL3JlcG8vcG9zdHMvMTk3MC0wMS0wMS1maXJzdC10aXRsZSIsImNvbGxlY3Rpb24iOiJwb3N0cyIsImNvbW1pdE1lc3NhZ2UiOiJDcmVhdGUgUG9zdCDigJwxOTcwLTAxLTAxLWZpcnN0LXRpdGxl4oCdIiwidGl0bGUiOiJmaXJzdCB0aXRsZSIsImRlc2NyaXB0aW9uIjoiZmlyc3QgZGVzY3JpcHRpb24iLCJvYmplY3RzIjp7ImVudHJ5Ijp7InBhdGgiOiJjb250ZW50L3Bvc3RzLzE5NzAtMDEtMDEtZmlyc3QtdGl0bGUubWQiLCJzaGEiOiJhMDQxMjQ1ODE0ODkyZTNmNzNmNjNjYTU0MzMzZmRhNjQ5YjdmYzBiIn0sImZpbGVzIjpbXX0sInRpbWVTdGFtcCI6IjE5NzAtMDEtMDFUMDA6MDA6MDAuMzAwWiJ9\",\"encoding\":\"base64\"}", + "method": "POST", + "url": "/repos/forkOwner/repo/git/blobs?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:59:40 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "212", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4668", + "X-RateLimit-Reset": "1568127500", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"1c80b93e938233b53de969f9edee439f\"", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/forkOwner/repo/git/blobs/82976a6de475d051a4819a4a72f8c983d062263f", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7AE6:9D21:175F08E:1C7A21C:5D77AC4C", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"82976a6de475d051a4819a4a72f8c983d062263f\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/82976a6de475d051a4819a4a72f8c983d062263f\"\n}\n", + "status": 201 + }, + { + "method": "GET", + "url": "/repos/forkOwner/repo/git/trees/454bad1fa90d83a669ff9f8a0245d71a5f0dd017?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:59:41 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4667", + "X-RateLimit-Reset": "1568127500", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"0cf310e700d22b9a8428039549b150eb\"", + "Last-Modified": "Tue, 10 Sep 2019 13:56:30 GMT", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7AE8:244E4:B02074:D57251:5D77AC4D", + "content-length": "878", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"454bad1fa90d83a669ff9f8a0245d71a5f0dd017\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/454bad1fa90d83a669ff9f8a0245d71a5f0dd017\",\n \"tree\": [\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n },\n {\n \"path\": \"forkOwner\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"e83c2fbf688c719176b6a958a6e4d36b567d2c7e\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/e83c2fbf688c719176b6a958a6e4d36b567d2c7e\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 200 + }, + { + "body": "{\"base_tree\":\"454bad1fa90d83a669ff9f8a0245d71a5f0dd017\",\"tree\":[{\"path\":\"forkOwner/repo/posts/1970-01-01-first-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"82976a6de475d051a4819a4a72f8c983d062263f\"}]}", + "method": "POST", + "url": "/repos/forkOwner/repo/git/trees?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:59:42 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "878", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4666", + "X-RateLimit-Reset": "1568127500", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"f84e48cd87adfda33063948f8f88b32d\"", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/forkOwner/repo/git/trees/b1fea30f625f7ed258f441a52a8ad2283090a7a5", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7AEA:244E7:11C131C:15AB1FB:5D77AC4D", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"b1fea30f625f7ed258f441a52a8ad2283090a7a5\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/b1fea30f625f7ed258f441a52a8ad2283090a7a5\",\n \"tree\": [\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n },\n {\n \"path\": \"forkOwner\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"f2b6be6cd5f4514b035e9cb00badad1e6b763cc5\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/f2b6be6cd5f4514b035e9cb00badad1e6b763cc5\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"message\":\"Updating “forkOwner/repo/posts/1970-01-01-first-title” metadata\",\"tree\":\"b1fea30f625f7ed258f441a52a8ad2283090a7a5\",\"parents\":[\"454bad1fa90d83a669ff9f8a0245d71a5f0dd017\"]}", + "method": "POST", + "url": "/repos/forkOwner/repo/git/commits?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:59:42 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "1641", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4665", + "X-RateLimit-Reset": "1568127500", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"d4bd8b26090c75bdeabc5fbbbf654739\"", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/forkOwner/repo/git/commits/e1a9f5c39ecd7d604339c7d25424dd9421acec31", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7AEC:15110:18A84A7:1DF5D0E:5D77AC4E", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"e1a9f5c39ecd7d604339c7d25424dd9421acec31\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NTc0MDQ5OmUxYTlmNWMzOWVjZDdkNjA0MzM5YzdkMjU0MjRkZDk0MjFhY2VjMzE=\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/e1a9f5c39ecd7d604339c7d25424dd9421acec31\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/e1a9f5c39ecd7d604339c7d25424dd9421acec31\",\n \"author\": {\n \"name\": \"forkOwner\",\n \"email\": \"53494188+forkOwner@users.noreply.github.com\",\n \"date\": \"2019-09-10T13:59:42Z\"\n },\n \"committer\": {\n \"name\": \"forkOwner\",\n \"email\": \"53494188+forkOwner@users.noreply.github.com\",\n \"date\": \"2019-09-10T13:59:42Z\"\n },\n \"tree\": {\n \"sha\": \"b1fea30f625f7ed258f441a52a8ad2283090a7a5\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/b1fea30f625f7ed258f441a52a8ad2283090a7a5\"\n },\n \"message\": \"Updating “forkOwner/repo/posts/1970-01-01-first-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"454bad1fa90d83a669ff9f8a0245d71a5f0dd017\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/454bad1fa90d83a669ff9f8a0245d71a5f0dd017\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/454bad1fa90d83a669ff9f8a0245d71a5f0dd017\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "status": 201 + }, + { + "body": "{\"sha\":\"e1a9f5c39ecd7d604339c7d25424dd9421acec31\",\"force\":false}", + "method": "PATCH", + "url": "/repos/forkOwner/repo/git/refs/meta/_netlify_cms?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:59:44 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4664", + "X-RateLimit-Reset": "1568127500", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"6109fb0d1e5a40e895e5a835ec9a094a\"", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7AEE:3ED76:48E312:5957DE:5D77AC4F", + "content-length": "494", + "connection": "keep-alive" + }, + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NTc0MDQ5OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"e1a9f5c39ecd7d604339c7d25424dd9421acec31\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/e1a9f5c39ecd7d604339c7d25424dd9421acec31\"\n }\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=master", + "headers": { + "Date": "Tue, 10 Sep 2019 13:59:44 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "404 Not Found", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4663", + "X-RateLimit-Reset": "1568127500", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7AF0:2B24:17F01D1:1D1A33B:5D77AC50", + "content-length": "116", + "connection": "keep-alive" + }, + "response": "{\n \"message\": \"Not Found\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/#get-contents\"\n}\n", + "status": 404 + }, + { + "method": "GET", + "url": "/repos/forkOwner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=cms/forkOwner/repo/posts/1970-01-01-first-title", + "headers": { + "Date": "Tue, 10 Sep 2019 13:59:44 GMT", + "Content-Type": "application/vnd.github.VERSION.raw; charset=utf-8", + "Content-Length": "167", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4662", + "X-RateLimit-Reset": "1568127500", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"a041245814892e3f73f63ca54333fda649b7fc0b\"", + "Last-Modified": "Tue, 10 Sep 2019 13:59:37 GMT", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7AF2:2B19:AA7979:CF8353:5D77AC50", + "connection": "keep-alive" + }, + "response": "---\ntemplate: post\ntitle: first title\ndraft: true\ndate: 1970-01-01T00:00:00.000Z\ndescription: first description\ncategory: first category\ntags:\n - tag1\n---\nfirst body\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/forkOwner/repo/git/refs/heads/cms?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:59:46 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4661", + "X-RateLimit-Reset": "1568127500", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"5a60a37248662afb8e8e233129d37d40\"", + "Last-Modified": "Tue, 10 Sep 2019 13:56:30 GMT", + "X-Poll-Interval": "300", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7AF6:1510F:124F818:163994F:5D77AC51", + "content-length": "788", + "connection": "keep-alive" + }, + "response": "[\n {\n \"ref\": \"refs/heads/cms/forkOwner/repo/posts/1970-01-01-first-title\",\n \"node_id\": \"MDM6UmVmMjA3NTc0MDQ5OmNtcy9lcmV6cm9rYWgtdGVzdC9nYXRzYnktbmV0bGlmeS1jbXMtYXdzLTE1NjgxMjM1NzQwNTEtZWRhNWpwYjFkN28vcG9zdHMvMTk3MC0wMS0wMS1maXJzdC10aXRsZQ==\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/refs/heads/cms/forkOwner/repo/posts/1970-01-01-first-title\",\n \"object\": {\n \"sha\": \"d79b56ce73ffb33c35198e448f34c5e293c9ae14\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/d79b56ce73ffb33c35198e448f34c5e293c9ae14\"\n }\n }\n]\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=master", + "headers": { + "Date": "Tue, 10 Sep 2019 13:59:46 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "404 Not Found", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4660", + "X-RateLimit-Reset": "1568127500", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7AFB:3ED82:18A3616:1DFA513:5D77AC52", + "content-length": "116", + "connection": "keep-alive" + }, + "response": "{\n \"message\": \"Not Found\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/#get-contents\"\n}\n", + "status": 404 + }, + { + "method": "GET", + "url": "/repos/forkOwner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=cms/forkOwner/repo/posts/1970-01-01-first-title", + "headers": { + "Date": "Tue, 10 Sep 2019 13:59:46 GMT", + "Content-Type": "application/vnd.github.VERSION.raw; charset=utf-8", + "Content-Length": "167", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4659", + "X-RateLimit-Reset": "1568127500", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"a041245814892e3f73f63ca54333fda649b7fc0b\"", + "Last-Modified": "Tue, 10 Sep 2019 13:59:37 GMT", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7AF8:B4E0:16DCF7A:1BD44C3:5D77AC52", + "connection": "keep-alive" + }, + "response": "---\ntemplate: post\ntitle: first title\ndraft: true\ndate: 1970-01-01T00:00:00.000Z\ndescription: first description\ncategory: first category\ntags:\n - tag1\n---\nfirst body\n", + "status": 200 + }, + { + "body": "{\"title\":\"Create Post “1970-01-01-first-title”\",\"body\":\"Automatically generated by Netlify CMS\",\"head\":\"forkOwner:cms/forkOwner/repo/posts/1970-01-01-first-title\",\"base\":\"master\"}", + "method": "POST", + "url": "/repos/owner/repo/pulls?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:59:48 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "22245", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4658", + "X-RateLimit-Reset": "1568127500", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"23fd6533ad899521ba2e9045d8df4b11\"", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/pulls/6", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7AFD:9D20:116E20A:1550EFA:5D77AC53", + "connection": "keep-alive" + }, + "response": "{\n \"url\": \"https://api.github.com/repos/owner/repo/pulls/6\",\n \"id\": 316009752,\n \"node_id\": \"MDExOlB1bGxSZXF1ZXN0MzE2MDA5NzUy\",\n \"html_url\": \"https://github.com/owner/repo/pull/6\",\n \"diff_url\": \"https://github.com/owner/repo/pull/6.diff\",\n \"patch_url\": \"https://github.com/owner/repo/pull/6.patch\",\n \"issue_url\": \"https://api.github.com/repos/owner/repo/issues/6\",\n \"number\": 6,\n \"state\": \"open\",\n \"locked\": false,\n \"title\": \"Create Post “1970-01-01-first-title”\",\n \"user\": {\n \"login\": \"forkOwner\",\n \"id\": 53494188,\n \"node_id\": \"MDQ6VXNlcjUzNDk0MTg4\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/forkOwner\",\n \"html_url\": \"https://github.com/forkOwner\",\n \"followers_url\": \"https://api.github.com/users/forkOwner/followers\",\n \"following_url\": \"https://api.github.com/users/forkOwner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/forkOwner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/forkOwner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/forkOwner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/forkOwner/orgs\",\n \"repos_url\": \"https://api.github.com/users/forkOwner/repos\",\n \"events_url\": \"https://api.github.com/users/forkOwner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/forkOwner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Automatically generated by Netlify CMS\",\n \"created_at\": \"2019-09-10T13:59:47Z\",\n \"updated_at\": \"2019-09-10T13:59:47Z\",\n \"closed_at\": null,\n \"merged_at\": null,\n \"merge_commit_sha\": null,\n \"assignee\": null,\n \"assignees\": [\n\n ],\n \"requested_reviewers\": [\n\n ],\n \"requested_teams\": [\n\n ],\n \"labels\": [\n\n ],\n \"milestone\": null,\n \"commits_url\": \"https://api.github.com/repos/owner/repo/pulls/6/commits\",\n \"review_comments_url\": \"https://api.github.com/repos/owner/repo/pulls/6/comments\",\n \"review_comment_url\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/issues/6/comments\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/d79b56ce73ffb33c35198e448f34c5e293c9ae14\",\n \"head\": {\n \"label\": \"forkOwner:cms/forkOwner/repo/posts/1970-01-01-first-title\",\n \"ref\": \"cms/forkOwner/repo/posts/1970-01-01-first-title\",\n \"sha\": \"d79b56ce73ffb33c35198e448f34c5e293c9ae14\",\n \"user\": {\n \"login\": \"forkOwner\",\n \"id\": 53494188,\n \"node_id\": \"MDQ6VXNlcjUzNDk0MTg4\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/forkOwner\",\n \"html_url\": \"https://github.com/forkOwner\",\n \"followers_url\": \"https://api.github.com/users/forkOwner/followers\",\n \"following_url\": \"https://api.github.com/users/forkOwner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/forkOwner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/forkOwner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/forkOwner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/forkOwner/orgs\",\n \"repos_url\": \"https://api.github.com/users/forkOwner/repos\",\n \"events_url\": \"https://api.github.com/users/forkOwner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/forkOwner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 207574049,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NzQwNDk=\",\n \"name\": \"repo\",\n \"full_name\": \"forkOwner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"forkOwner\",\n \"id\": 53494188,\n \"node_id\": \"MDQ6VXNlcjUzNDk0MTg4\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/forkOwner\",\n \"html_url\": \"https://github.com/forkOwner\",\n \"followers_url\": \"https://api.github.com/users/forkOwner/followers\",\n \"following_url\": \"https://api.github.com/users/forkOwner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/forkOwner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/forkOwner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/forkOwner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/forkOwner/orgs\",\n \"repos_url\": \"https://api.github.com/users/forkOwner/repos\",\n \"events_url\": \"https://api.github.com/users/forkOwner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/forkOwner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/forkOwner/repo\",\n \"description\": null,\n \"fork\": true,\n \"url\": \"https://api.github.com/repos/forkOwner/repo\",\n \"forks_url\": \"https://api.github.com/repos/forkOwner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/forkOwner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/forkOwner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/forkOwner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/forkOwner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/forkOwner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/forkOwner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/forkOwner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/forkOwner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/forkOwner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/forkOwner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/forkOwner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/forkOwner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/forkOwner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/forkOwner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/forkOwner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/forkOwner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/forkOwner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/forkOwner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/forkOwner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/forkOwner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/forkOwner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/forkOwner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/forkOwner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/forkOwner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/forkOwner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/forkOwner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/forkOwner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/forkOwner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/forkOwner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/forkOwner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/forkOwner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/forkOwner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/forkOwner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/forkOwner/repo/deployments\",\n \"created_at\": \"2019-09-10T13:56:28Z\",\n \"updated_at\": \"2019-09-10T13:56:30Z\",\n \"pushed_at\": \"2019-09-10T13:59:44Z\",\n \"git_url\": \"git://github.com/forkOwner/repo.git\",\n \"ssh_url\": \"git@github.com:forkOwner/repo.git\",\n \"clone_url\": \"https://github.com/forkOwner/repo.git\",\n \"svn_url\": \"https://github.com/forkOwner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": null,\n \"has_issues\": false,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"base\": {\n \"label\": \"owner:master\",\n \"ref\": \"master\",\n \"sha\": \"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 207573159,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NzMxNTk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-10T13:52:54Z\",\n \"updated_at\": \"2019-09-10T13:56:22Z\",\n \"pushed_at\": \"2019-09-10T13:59:00Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 1,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 1,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/6\"\n },\n \"html\": {\n \"href\": \"https://github.com/owner/repo/pull/6\"\n },\n \"issue\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/6\"\n },\n \"comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/6/comments\"\n },\n \"review_comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/6/comments\"\n },\n \"review_comment\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\"\n },\n \"commits\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/6/commits\"\n },\n \"statuses\": {\n \"href\": \"https://api.github.com/repos/owner/repo/statuses/d79b56ce73ffb33c35198e448f34c5e293c9ae14\"\n }\n },\n \"author_association\": \"NONE\",\n \"merged\": false,\n \"mergeable\": null,\n \"rebaseable\": null,\n \"mergeable_state\": \"unknown\",\n \"merged_by\": null,\n \"comments\": 0,\n \"review_comments\": 0,\n \"maintainer_can_modify\": true,\n \"commits\": 1,\n \"additions\": 11,\n \"deletions\": 0,\n \"changed_files\": 1\n}\n", + "status": 201 + }, + { + "method": "GET", + "url": "/repos/forkOwner/repo/git/refs/meta/_netlify_cms?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:59:48 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4657", + "X-RateLimit-Reset": "1568127500", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"6109fb0d1e5a40e895e5a835ec9a094a\"", + "Last-Modified": "Tue, 10 Sep 2019 13:56:30 GMT", + "X-Poll-Interval": "300", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7AFE:3ED7B:1282223:167BC78:5D77AC54", + "content-length": "494", + "connection": "keep-alive" + }, + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NTc0MDQ5OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"e1a9f5c39ecd7d604339c7d25424dd9421acec31\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/e1a9f5c39ecd7d604339c7d25424dd9421acec31\"\n }\n}\n", + "status": 200 + }, + { + "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjYsImhlYWQiOnsibGFiZWwiOiJmb3JrT3duZXI6Y21zL2ZvcmtPd25lci9yZXBvL3Bvc3RzLzE5NzAtMDEtMDEtZmlyc3QtdGl0bGUiLCJyZWYiOiJjbXMvZm9ya093bmVyL3JlcG8vcG9zdHMvMTk3MC0wMS0wMS1maXJzdC10aXRsZSIsInNoYSI6ImQ3OWI1NmNlNzNmZmIzM2MzNTE5OGU0NDhmMzRjNWUyOTNjOWFlMTQiLCJ1c2VyIjp7ImxvZ2luIjoiZm9ya093bmVyIiwiaWQiOjUzNDk0MTg4LCJub2RlX2lkIjoiTURRNlZYTmxjalV6TkRrME1UZzQiLCJhdmF0YXJfdXJsIjoiaHR0cHM6Ly9hdmF0YXJzMS5naXRodWJ1c2VyY29udGVudC5jb20vdS83ODkyNDg5P3Y9NCIsImdyYXZhdGFyX2lkIjoiIiwidXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS91c2Vycy9mb3JrT3duZXIiLCJodG1sX3VybCI6Imh0dHBzOi8vZ2l0aHViLmNvbS9mb3JrT3duZXIiLCJmb2xsb3dlcnNfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS91c2Vycy9mb3JrT3duZXIvZm9sbG93ZXJzIiwiZm9sbG93aW5nX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vdXNlcnMvZm9ya093bmVyL2ZvbGxvd2luZ3svb3RoZXJfdXNlcn0iLCJnaXN0c191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3VzZXJzL2ZvcmtPd25lci9naXN0c3svZ2lzdF9pZH0iLCJzdGFycmVkX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vdXNlcnMvZm9ya093bmVyL3N0YXJyZWR7L293bmVyfXsvcmVwb30iLCJzdWJzY3JpcHRpb25zX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vdXNlcnMvZm9ya093bmVyL3N1YnNjcmlwdGlvbnMiLCJvcmdhbml6YXRpb25zX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vdXNlcnMvZm9ya093bmVyL29yZ3MiLCJyZXBvc191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3VzZXJzL2ZvcmtPd25lci9yZXBvcyIsImV2ZW50c191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3VzZXJzL2ZvcmtPd25lci9ldmVudHN7L3ByaXZhY3l9IiwicmVjZWl2ZWRfZXZlbnRzX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vdXNlcnMvZm9ya093bmVyL3JlY2VpdmVkX2V2ZW50cyIsInR5cGUiOiJVc2VyIiwic2l0ZV9hZG1pbiI6ZmFsc2V9LCJyZXBvIjp7ImlkIjoyMDc1NzQwNDksIm5vZGVfaWQiOiJNREV3T2xKbGNHOXphWFJ2Y25reU1EYzFOelF3TkRrPSIsIm5hbWUiOiJyZXBvIiwiZnVsbF9uYW1lIjoiZm9ya093bmVyL3JlcG8iLCJwcml2YXRlIjpmYWxzZSwib3duZXIiOnsibG9naW4iOiJmb3JrT3duZXIiLCJpZCI6NTM0OTQxODgsIm5vZGVfaWQiOiJNRFE2VlhObGNqVXpORGswTVRnNCIsImF2YXRhcl91cmwiOiJodHRwczovL2F2YXRhcnMxLmdpdGh1YnVzZXJjb250ZW50LmNvbS91Lzc4OTI0ODk/dj00IiwiZ3JhdmF0YXJfaWQiOiIiLCJ1cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3VzZXJzL2ZvcmtPd25lciIsImh0bWxfdXJsIjoiaHR0cHM6Ly9naXRodWIuY29tL2ZvcmtPd25lciIsImZvbGxvd2Vyc191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3VzZXJzL2ZvcmtPd25lci9mb2xsb3dlcnMiLCJmb2xsb3dpbmdfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS91c2Vycy9mb3JrT3duZXIvZm9sbG93aW5ney9vdGhlcl91c2VyfSIsImdpc3RzX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vdXNlcnMvZm9ya093bmVyL2dpc3Rzey9naXN0X2lkfSIsInN0YXJyZWRfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS91c2Vycy9mb3JrT3duZXIvc3RhcnJlZHsvb3duZXJ9ey9yZXBvfSIsInN1YnNjcmlwdGlvbnNfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS91c2Vycy9mb3JrT3duZXIvc3Vic2NyaXB0aW9ucyIsIm9yZ2FuaXphdGlvbnNfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS91c2Vycy9mb3JrT3duZXIvb3JncyIsInJlcG9zX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vdXNlcnMvZm9ya093bmVyL3JlcG9zIiwiZXZlbnRzX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vdXNlcnMvZm9ya093bmVyL2V2ZW50c3svcHJpdmFjeX0iLCJyZWNlaXZlZF9ldmVudHNfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS91c2Vycy9mb3JrT3duZXIvcmVjZWl2ZWRfZXZlbnRzIiwidHlwZSI6IlVzZXIiLCJzaXRlX2FkbWluIjpmYWxzZX0sImh0bWxfdXJsIjoiaHR0cHM6Ly9naXRodWIuY29tL2ZvcmtPd25lci9yZXBvIiwiZGVzY3JpcHRpb24iOm51bGwsImZvcmsiOnRydWUsInVybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vcmVwb3MvZm9ya093bmVyL3JlcG8iLCJmb3Jrc191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL2ZvcmtzIiwia2V5c191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL2tleXN7L2tleV9pZH0iLCJjb2xsYWJvcmF0b3JzX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vcmVwb3MvZm9ya093bmVyL3JlcG8vY29sbGFib3JhdG9yc3svY29sbGFib3JhdG9yfSIsInRlYW1zX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vcmVwb3MvZm9ya093bmVyL3JlcG8vdGVhbXMiLCJob29rc191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL2hvb2tzIiwiaXNzdWVfZXZlbnRzX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vcmVwb3MvZm9ya093bmVyL3JlcG8vaXNzdWVzL2V2ZW50c3svbnVtYmVyfSIsImV2ZW50c191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL2V2ZW50cyIsImFzc2lnbmVlc191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL2Fzc2lnbmVlc3svdXNlcn0iLCJicmFuY2hlc191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL2JyYW5jaGVzey9icmFuY2h9IiwidGFnc191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL3RhZ3MiLCJibG9ic191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL2dpdC9ibG9ic3svc2hhfSIsImdpdF90YWdzX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vcmVwb3MvZm9ya093bmVyL3JlcG8vZ2l0L3RhZ3N7L3NoYX0iLCJnaXRfcmVmc191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL2dpdC9yZWZzey9zaGF9IiwidHJlZXNfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS9yZXBvcy9mb3JrT3duZXIvcmVwby9naXQvdHJlZXN7L3NoYX0iLCJzdGF0dXNlc191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL3N0YXR1c2VzL3tzaGF9IiwibGFuZ3VhZ2VzX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vcmVwb3MvZm9ya093bmVyL3JlcG8vbGFuZ3VhZ2VzIiwic3RhcmdhemVyc191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL3N0YXJnYXplcnMiLCJjb250cmlidXRvcnNfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS9yZXBvcy9mb3JrT3duZXIvcmVwby9jb250cmlidXRvcnMiLCJzdWJzY3JpYmVyc191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL3N1YnNjcmliZXJzIiwic3Vic2NyaXB0aW9uX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vcmVwb3MvZm9ya093bmVyL3JlcG8vc3Vic2NyaXB0aW9uIiwiY29tbWl0c191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL2NvbW1pdHN7L3NoYX0iLCJnaXRfY29tbWl0c191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL2dpdC9jb21taXRzey9zaGF9IiwiY29tbWVudHNfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS9yZXBvcy9mb3JrT3duZXIvcmVwby9jb21tZW50c3svbnVtYmVyfSIsImlzc3VlX2NvbW1lbnRfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS9yZXBvcy9mb3JrT3duZXIvcmVwby9pc3N1ZXMvY29tbWVudHN7L251bWJlcn0iLCJjb250ZW50c191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL2NvbnRlbnRzL3srcGF0aH0iLCJjb21wYXJlX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vcmVwb3MvZm9ya093bmVyL3JlcG8vY29tcGFyZS97YmFzZX0uLi57aGVhZH0iLCJtZXJnZXNfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS9yZXBvcy9mb3JrT3duZXIvcmVwby9tZXJnZXMiLCJhcmNoaXZlX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vcmVwb3MvZm9ya093bmVyL3JlcG8ve2FyY2hpdmVfZm9ybWF0fXsvcmVmfSIsImRvd25sb2Fkc191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL2Rvd25sb2FkcyIsImlzc3Vlc191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL2lzc3Vlc3svbnVtYmVyfSIsInB1bGxzX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vcmVwb3MvZm9ya093bmVyL3JlcG8vcHVsbHN7L251bWJlcn0iLCJtaWxlc3RvbmVzX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vcmVwb3MvZm9ya093bmVyL3JlcG8vbWlsZXN0b25lc3svbnVtYmVyfSIsIm5vdGlmaWNhdGlvbnNfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS9yZXBvcy9mb3JrT3duZXIvcmVwby9ub3RpZmljYXRpb25zez9zaW5jZSxhbGwscGFydGljaXBhdGluZ30iLCJsYWJlbHNfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS9yZXBvcy9mb3JrT3duZXIvcmVwby9sYWJlbHN7L25hbWV9IiwicmVsZWFzZXNfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS9yZXBvcy9mb3JrT3duZXIvcmVwby9yZWxlYXNlc3svaWR9IiwiZGVwbG95bWVudHNfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS9yZXBvcy9mb3JrT3duZXIvcmVwby9kZXBsb3ltZW50cyIsImNyZWF0ZWRfYXQiOiIyMDE5LTA5LTEwVDEzOjU2OjI4WiIsInVwZGF0ZWRfYXQiOiIyMDE5LTA5LTEwVDEzOjU2OjMwWiIsInB1c2hlZF9hdCI6IjIwMTktMDktMTBUMTM6NTk6NDRaIiwiZ2l0X3VybCI6ImdpdDovL2dpdGh1Yi5jb20vZm9ya093bmVyL3JlcG8uZ2l0Iiwic3NoX3VybCI6ImdpdEBnaXRodWIuY29tOmZvcmtPd25lci9yZXBvLmdpdCIsImNsb25lX3VybCI6Imh0dHBzOi8vZ2l0aHViLmNvbS9mb3JrT3duZXIvcmVwby5naXQiLCJzdm5fdXJsIjoiaHR0cHM6Ly9naXRodWIuY29tL2ZvcmtPd25lci9yZXBvIiwiaG9tZXBhZ2UiOm51bGwsInNpemUiOjAsInN0YXJnYXplcnNfY291bnQiOjAsIndhdGNoZXJzX2NvdW50IjowLCJsYW5ndWFnZSI6bnVsbCwiaGFzX2lzc3VlcyI6ZmFsc2UsImhhc19wcm9qZWN0cyI6dHJ1ZSwiaGFzX2Rvd25sb2FkcyI6dHJ1ZSwiaGFzX3dpa2kiOnRydWUsImhhc19wYWdlcyI6ZmFsc2UsImZvcmtzX2NvdW50IjowLCJtaXJyb3JfdXJsIjpudWxsLCJhcmNoaXZlZCI6ZmFsc2UsImRpc2FibGVkIjpmYWxzZSwib3Blbl9pc3N1ZXNfY291bnQiOjAsImxpY2Vuc2UiOnsia2V5IjoibWl0IiwibmFtZSI6Ik1JVCBMaWNlbnNlIiwic3BkeF9pZCI6Ik1JVCIsInVybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vbGljZW5zZXMvbWl0Iiwibm9kZV9pZCI6Ik1EYzZUR2xqWlc1elpURXoifSwiZm9ya3MiOjAsIm9wZW5faXNzdWVzIjowLCJ3YXRjaGVycyI6MCwiZGVmYXVsdF9icmFuY2giOiJtYXN0ZXIifX19LCJ1c2VyIjoiZm9ya093bmVyIiwic3RhdHVzIjoicGVuZGluZ19yZXZpZXciLCJicmFuY2giOiJjbXMvZm9ya093bmVyL3JlcG8vcG9zdHMvMTk3MC0wMS0wMS1maXJzdC10aXRsZSIsImNvbGxlY3Rpb24iOiJwb3N0cyIsImNvbW1pdE1lc3NhZ2UiOiJDcmVhdGUgUG9zdCDigJwxOTcwLTAxLTAxLWZpcnN0LXRpdGxl4oCdIiwidGl0bGUiOiJmaXJzdCB0aXRsZSIsImRlc2NyaXB0aW9uIjoiZmlyc3QgZGVzY3JpcHRpb24iLCJvYmplY3RzIjp7ImVudHJ5Ijp7InBhdGgiOiJjb250ZW50L3Bvc3RzLzE5NzAtMDEtMDEtZmlyc3QtdGl0bGUubWQiLCJzaGEiOiJhMDQxMjQ1ODE0ODkyZTNmNzNmNjNjYTU0MzMzZmRhNjQ5YjdmYzBiIn0sImZpbGVzIjpbXX0sInRpbWVTdGFtcCI6IjE5NzAtMDEtMDFUMDA6MDA6MDAuMzAwWiJ9\",\"encoding\":\"base64\"}", + "method": "POST", + "url": "/repos/forkOwner/repo/git/blobs?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:59:49 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "212", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4656", + "X-RateLimit-Reset": "1568127500", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"09a01a6be1e90b8e2d29f335221eecfc\"", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/forkOwner/repo/git/blobs/587ac739498c4b030389b1d02adb4e5c60bbfb83", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B00:1510D:479278:57C65D:5D77AC55", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"587ac739498c4b030389b1d02adb4e5c60bbfb83\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/587ac739498c4b030389b1d02adb4e5c60bbfb83\"\n}\n", + "status": 201 + }, + { + "method": "GET", + "url": "/repos/forkOwner/repo/git/trees/e1a9f5c39ecd7d604339c7d25424dd9421acec31?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:59:50 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4655", + "X-RateLimit-Reset": "1568127500", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"158f23c6f3fda3aff8c4028748b02789\"", + "Last-Modified": "Tue, 10 Sep 2019 13:56:30 GMT", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B02:2B1F:12437F7:164AAFC:5D77AC55", + "content-length": "878", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"e1a9f5c39ecd7d604339c7d25424dd9421acec31\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/e1a9f5c39ecd7d604339c7d25424dd9421acec31\",\n \"tree\": [\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n },\n {\n \"path\": \"forkOwner\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"f2b6be6cd5f4514b035e9cb00badad1e6b763cc5\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/f2b6be6cd5f4514b035e9cb00badad1e6b763cc5\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 200 + }, + { + "body": "{\"base_tree\":\"e1a9f5c39ecd7d604339c7d25424dd9421acec31\",\"tree\":[{\"path\":\"forkOwner/repo/posts/1970-01-01-first-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"587ac739498c4b030389b1d02adb4e5c60bbfb83\"}]}", + "method": "POST", + "url": "/repos/forkOwner/repo/git/trees?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:59:50 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "878", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4654", + "X-RateLimit-Reset": "1568127500", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"34cc19634142e46d87c3fee571fbb78c\"", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/forkOwner/repo/git/trees/e8e786cc481de070ff66bba1fd9dad5b1616c7d0", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B04:15110:18A91AE:1DF6D1F:5D77AC56", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"e8e786cc481de070ff66bba1fd9dad5b1616c7d0\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/e8e786cc481de070ff66bba1fd9dad5b1616c7d0\",\n \"tree\": [\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n },\n {\n \"path\": \"forkOwner\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ebcb62b2261c0bdbfe45d203096f14fbbf320e7c\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/ebcb62b2261c0bdbfe45d203096f14fbbf320e7c\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"message\":\"Updating “forkOwner/repo/posts/1970-01-01-first-title” metadata\",\"tree\":\"e8e786cc481de070ff66bba1fd9dad5b1616c7d0\",\"parents\":[\"e1a9f5c39ecd7d604339c7d25424dd9421acec31\"]}", + "method": "POST", + "url": "/repos/forkOwner/repo/git/commits?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:59:51 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "1641", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4653", + "X-RateLimit-Reset": "1568127500", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"e6dbc44b0ed649e010966b8ecd7bfc97\"", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/forkOwner/repo/git/commits/0595b67ccc55a7b5bd0bced5faa72ec14dbeabe1", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B06:B4DC:ACD432:D24416:5D77AC57", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"0595b67ccc55a7b5bd0bced5faa72ec14dbeabe1\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NTc0MDQ5OjA1OTViNjdjY2M1NWE3YjViZDBiY2VkNWZhYTcyZWMxNGRiZWFiZTE=\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/0595b67ccc55a7b5bd0bced5faa72ec14dbeabe1\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/0595b67ccc55a7b5bd0bced5faa72ec14dbeabe1\",\n \"author\": {\n \"name\": \"forkOwner\",\n \"email\": \"53494188+forkOwner@users.noreply.github.com\",\n \"date\": \"2019-09-10T13:59:51Z\"\n },\n \"committer\": {\n \"name\": \"forkOwner\",\n \"email\": \"53494188+forkOwner@users.noreply.github.com\",\n \"date\": \"2019-09-10T13:59:51Z\"\n },\n \"tree\": {\n \"sha\": \"e8e786cc481de070ff66bba1fd9dad5b1616c7d0\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/e8e786cc481de070ff66bba1fd9dad5b1616c7d0\"\n },\n \"message\": \"Updating “forkOwner/repo/posts/1970-01-01-first-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"e1a9f5c39ecd7d604339c7d25424dd9421acec31\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/e1a9f5c39ecd7d604339c7d25424dd9421acec31\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/e1a9f5c39ecd7d604339c7d25424dd9421acec31\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "status": 201 + }, + { + "body": "{\"sha\":\"0595b67ccc55a7b5bd0bced5faa72ec14dbeabe1\",\"force\":false}", + "method": "PATCH", + "url": "/repos/forkOwner/repo/git/refs/meta/_netlify_cms?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:59:52 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4652", + "X-RateLimit-Reset": "1568127500", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"afe37cf2706f6d3322f246638e644cdc\"", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B08:9D1F:A40526:C82835:5D77AC58", + "content-length": "494", + "connection": "keep-alive" + }, + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NTc0MDQ5OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"0595b67ccc55a7b5bd0bced5faa72ec14dbeabe1\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/0595b67ccc55a7b5bd0bced5faa72ec14dbeabe1\"\n }\n}\n", + "status": 200 + }, + { + "body": "{\"state\":\"closed\"}", + "method": "PATCH", + "url": "/repos/owner/repo/pulls/6?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:59:54 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4651", + "X-RateLimit-Reset": "1568127500", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"458ad1f13a1d0de571a2d7f708b6e083\"", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B0A:3ED77:ACB2D6:D15DED:5D77AC59", + "content-length": "22302", + "connection": "keep-alive" + }, + "response": "{\n \"url\": \"https://api.github.com/repos/owner/repo/pulls/6\",\n \"id\": 316009752,\n \"node_id\": \"MDExOlB1bGxSZXF1ZXN0MzE2MDA5NzUy\",\n \"html_url\": \"https://github.com/owner/repo/pull/6\",\n \"diff_url\": \"https://github.com/owner/repo/pull/6.diff\",\n \"patch_url\": \"https://github.com/owner/repo/pull/6.patch\",\n \"issue_url\": \"https://api.github.com/repos/owner/repo/issues/6\",\n \"number\": 6,\n \"state\": \"closed\",\n \"locked\": false,\n \"title\": \"Create Post “1970-01-01-first-title”\",\n \"user\": {\n \"login\": \"forkOwner\",\n \"id\": 53494188,\n \"node_id\": \"MDQ6VXNlcjUzNDk0MTg4\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/forkOwner\",\n \"html_url\": \"https://github.com/forkOwner\",\n \"followers_url\": \"https://api.github.com/users/forkOwner/followers\",\n \"following_url\": \"https://api.github.com/users/forkOwner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/forkOwner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/forkOwner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/forkOwner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/forkOwner/orgs\",\n \"repos_url\": \"https://api.github.com/users/forkOwner/repos\",\n \"events_url\": \"https://api.github.com/users/forkOwner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/forkOwner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Automatically generated by Netlify CMS\",\n \"created_at\": \"2019-09-10T13:59:47Z\",\n \"updated_at\": \"2019-09-10T13:59:54Z\",\n \"closed_at\": \"2019-09-10T13:59:54Z\",\n \"merged_at\": null,\n \"merge_commit_sha\": \"350f509156b304a50b04def4b13505aa2b042a57\",\n \"assignee\": null,\n \"assignees\": [\n\n ],\n \"requested_reviewers\": [\n\n ],\n \"requested_teams\": [\n\n ],\n \"labels\": [\n\n ],\n \"milestone\": null,\n \"commits_url\": \"https://api.github.com/repos/owner/repo/pulls/6/commits\",\n \"review_comments_url\": \"https://api.github.com/repos/owner/repo/pulls/6/comments\",\n \"review_comment_url\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/issues/6/comments\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/d79b56ce73ffb33c35198e448f34c5e293c9ae14\",\n \"head\": {\n \"label\": \"forkOwner:cms/forkOwner/repo/posts/1970-01-01-first-title\",\n \"ref\": \"cms/forkOwner/repo/posts/1970-01-01-first-title\",\n \"sha\": \"d79b56ce73ffb33c35198e448f34c5e293c9ae14\",\n \"user\": {\n \"login\": \"forkOwner\",\n \"id\": 53494188,\n \"node_id\": \"MDQ6VXNlcjUzNDk0MTg4\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/forkOwner\",\n \"html_url\": \"https://github.com/forkOwner\",\n \"followers_url\": \"https://api.github.com/users/forkOwner/followers\",\n \"following_url\": \"https://api.github.com/users/forkOwner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/forkOwner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/forkOwner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/forkOwner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/forkOwner/orgs\",\n \"repos_url\": \"https://api.github.com/users/forkOwner/repos\",\n \"events_url\": \"https://api.github.com/users/forkOwner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/forkOwner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 207574049,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NzQwNDk=\",\n \"name\": \"repo\",\n \"full_name\": \"forkOwner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"forkOwner\",\n \"id\": 53494188,\n \"node_id\": \"MDQ6VXNlcjUzNDk0MTg4\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/forkOwner\",\n \"html_url\": \"https://github.com/forkOwner\",\n \"followers_url\": \"https://api.github.com/users/forkOwner/followers\",\n \"following_url\": \"https://api.github.com/users/forkOwner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/forkOwner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/forkOwner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/forkOwner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/forkOwner/orgs\",\n \"repos_url\": \"https://api.github.com/users/forkOwner/repos\",\n \"events_url\": \"https://api.github.com/users/forkOwner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/forkOwner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/forkOwner/repo\",\n \"description\": null,\n \"fork\": true,\n \"url\": \"https://api.github.com/repos/forkOwner/repo\",\n \"forks_url\": \"https://api.github.com/repos/forkOwner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/forkOwner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/forkOwner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/forkOwner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/forkOwner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/forkOwner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/forkOwner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/forkOwner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/forkOwner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/forkOwner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/forkOwner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/forkOwner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/forkOwner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/forkOwner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/forkOwner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/forkOwner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/forkOwner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/forkOwner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/forkOwner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/forkOwner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/forkOwner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/forkOwner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/forkOwner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/forkOwner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/forkOwner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/forkOwner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/forkOwner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/forkOwner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/forkOwner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/forkOwner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/forkOwner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/forkOwner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/forkOwner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/forkOwner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/forkOwner/repo/deployments\",\n \"created_at\": \"2019-09-10T13:56:28Z\",\n \"updated_at\": \"2019-09-10T13:56:30Z\",\n \"pushed_at\": \"2019-09-10T13:59:52Z\",\n \"git_url\": \"git://github.com/forkOwner/repo.git\",\n \"ssh_url\": \"git@github.com:forkOwner/repo.git\",\n \"clone_url\": \"https://github.com/forkOwner/repo.git\",\n \"svn_url\": \"https://github.com/forkOwner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": null,\n \"has_issues\": false,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"base\": {\n \"label\": \"owner:master\",\n \"ref\": \"master\",\n \"sha\": \"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 207573159,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NzMxNTk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-10T13:52:54Z\",\n \"updated_at\": \"2019-09-10T13:56:22Z\",\n \"pushed_at\": \"2019-09-10T13:59:48Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/6\"\n },\n \"html\": {\n \"href\": \"https://github.com/owner/repo/pull/6\"\n },\n \"issue\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/6\"\n },\n \"comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/6/comments\"\n },\n \"review_comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/6/comments\"\n },\n \"review_comment\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\"\n },\n \"commits\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/6/commits\"\n },\n \"statuses\": {\n \"href\": \"https://api.github.com/repos/owner/repo/statuses/d79b56ce73ffb33c35198e448f34c5e293c9ae14\"\n }\n },\n \"author_association\": \"NONE\",\n \"merged\": false,\n \"mergeable\": true,\n \"rebaseable\": true,\n \"mergeable_state\": \"clean\",\n \"merged_by\": null,\n \"comments\": 0,\n \"review_comments\": 0,\n \"maintainer_can_modify\": false,\n \"commits\": 1,\n \"additions\": 11,\n \"deletions\": 0,\n \"changed_files\": 1\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/commits/d79b56ce73ffb33c35198e448f34c5e293c9ae14/status?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:59:55 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4650", + "X-RateLimit-Reset": "1568127500", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"251f87df2cd2f36b8437edafd0cd28ea\"", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo, repo:status", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B0E:2B24:17F1482:1D1BA4C:5D77AC5B", + "content-length": "6574", + "connection": "keep-alive" + }, + "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"d79b56ce73ffb33c35198e448f34c5e293c9ae14\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 207573159,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NzMxNTk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/d79b56ce73ffb33c35198e448f34c5e293c9ae14\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/d79b56ce73ffb33c35198e448f34c5e293c9ae14/status\"\n}\n", + "status": 200 + }, + { + "method": "DELETE", + "url": "/repos/forkOwner/repo/git/refs/heads/cms%2FforkOwner%2Frepo%2Fposts%2F1970-01-01-first-title?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:59:55 GMT", + "Content-Type": "application/octet-stream", + "Server": "GitHub.com", + "Status": "204 No Content", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4649", + "X-RateLimit-Reset": "1568127500", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7B0C:244EB:183107D:1D632DF:5D77AC5A", + "content-length": "0", + "connection": "keep-alive" + }, + "response": null, + "status": 204 + } +] \ No newline at end of file diff --git a/cypress/fixtures/Github Backend Editorial Workflow - REST API - Open Authoring__can publish an editorial workflow entry.json b/cypress/fixtures/Github Backend Editorial Workflow - REST API - Open Authoring__can publish an editorial workflow entry.json new file mode 100644 index 00000000..e7d2e99c --- /dev/null +++ b/cypress/fixtures/Github Backend Editorial Workflow - REST API - Open Authoring__can publish an editorial workflow entry.json @@ -0,0 +1,1634 @@ +[ + { + "method": "GET", + "url": "/user", + "headers": { + "Date": "Tue, 10 Sep 2019 13:55:26 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4495", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"fb606f875be1d23b690ea5f5e26b9fe9\"", + "Last-Modified": "Wed, 28 Aug 2019 04:48:54 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B84:15110:188D7F6:1DD4D0A:5D77AB4D", + "content-length": "1321", + "connection": "keep-alive" + }, + "response": "{\"login\":\"owner\",\"id\":1,\"avatar_url\":\"https://avatars1.githubusercontent.com/u/7892489?v=4\",\"name\":\"owner\"}", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/collaborators/owner/permission", + "headers": { + "Date": "Tue, 10 Sep 2019 13:55:26 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4494", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"254416b9fc40a4c5acc82d271a9b493b\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B86:244EB:181666F:1D42227:5D77AB4E", + "content-length": "1071", + "connection": "keep-alive" + }, + "response": "{\n \"permission\": \"admin\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/user?ts=0", + "headers": { + "Date": "Tue, 10 Sep 2019 13:55:27 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4493", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"fb606f875be1d23b690ea5f5e26b9fe9\"", + "Last-Modified": "Wed, 28 Aug 2019 04:48:54 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B88:3ED7B:126D6AA:1662272:5D77AB4E", + "content-length": "1321", + "connection": "keep-alive" + }, + "response": "{\"login\":\"owner\",\"id\":1,\"avatar_url\":\"https://avatars1.githubusercontent.com/u/7892489?v=4\",\"name\":\"owner\"}", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo?ts=0", + "headers": { + "Date": "Tue, 10 Sep 2019 13:55:27 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4492", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"6ce576437405c9060b3f02eeea6a9fb7\"", + "Last-Modified": "Tue, 10 Sep 2019 13:53:22 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B8A:244E4:AF52B1:D473EB:5D77AB4F", + "content-length": "7296", + "connection": "keep-alive" + }, + "response": "{\n \"id\": 207573159,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NzMxNTk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-10T13:52:54Z\",\n \"updated_at\": \"2019-09-10T13:53:22Z\",\n \"pushed_at\": \"2019-09-10T13:55:17Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\",\n \"permissions\": {\n \"admin\": true,\n \"push\": true,\n \"pull\": true\n },\n \"allow_squash_merge\": true,\n \"allow_merge_commit\": true,\n \"allow_rebase_merge\": true,\n \"network_count\": 0,\n \"subscribers_count\": 1\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/static/media?ts=0&ref=master", + "headers": { + "Date": "Tue, 10 Sep 2019 13:55:28 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4491", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"c5b7f6d674ba193bb7b4a5fcf4933034e1b7f2b7\"", + "Last-Modified": "Tue, 10 Sep 2019 13:53:22 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B8E:2B24:17D5AA8:1CF9977:5D77AB50", + "content-length": "12362", + "connection": "keep-alive" + }, + "response": "[\n {\n \"name\": \"42-line-bible.jpg\",\n \"path\": \"static/media/42-line-bible.jpg\",\n \"sha\": \"41c8d12f9ca5864beb827c381fbeff935209d5fb\",\n \"size\": 671242,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/static/media/42-line-bible.jpg?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/static/media/42-line-bible.jpg\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/41c8d12f9ca5864beb827c381fbeff935209d5fb\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/static/media/42-line-bible.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/static/media/42-line-bible.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/41c8d12f9ca5864beb827c381fbeff935209d5fb\",\n \"html\": \"https://github.com/owner/repo/blob/master/static/media/42-line-bible.jpg\"\n }\n },\n {\n \"name\": \"gutenberg.jpg\",\n \"path\": \"static/media/gutenberg.jpg\",\n \"sha\": \"04315e355873ea5d358d9c371c39a6845c1ae4ae\",\n \"size\": 155002,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/static/media/gutenberg.jpg?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/static/media/gutenberg.jpg\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/04315e355873ea5d358d9c371c39a6845c1ae4ae\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/static/media/gutenberg.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/static/media/gutenberg.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/04315e355873ea5d358d9c371c39a6845c1ae4ae\",\n \"html\": \"https://github.com/owner/repo/blob/master/static/media/gutenberg.jpg\"\n }\n },\n {\n \"name\": \"image-0.jpg\",\n \"path\": \"static/media/image-0.jpg\",\n \"sha\": \"b70a1b64fd4fa9635823231a0ba92c6dc9393f16\",\n \"size\": 660287,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/static/media/image-0.jpg?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/static/media/image-0.jpg\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/b70a1b64fd4fa9635823231a0ba92c6dc9393f16\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/static/media/image-0.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/static/media/image-0.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/b70a1b64fd4fa9635823231a0ba92c6dc9393f16\",\n \"html\": \"https://github.com/owner/repo/blob/master/static/media/image-0.jpg\"\n }\n },\n {\n \"name\": \"image-1.jpg\",\n \"path\": \"static/media/image-1.jpg\",\n \"sha\": \"05eedae372b829c62501ac751b2d42dcc432541b\",\n \"size\": 392411,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/static/media/image-1.jpg?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/static/media/image-1.jpg\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/05eedae372b829c62501ac751b2d42dcc432541b\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/static/media/image-1.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/static/media/image-1.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/05eedae372b829c62501ac751b2d42dcc432541b\",\n \"html\": \"https://github.com/owner/repo/blob/master/static/media/image-1.jpg\"\n }\n },\n {\n \"name\": \"image-2.jpg\",\n \"path\": \"static/media/image-2.jpg\",\n \"sha\": \"53845ed35faf8939bea242bb85eda7c324b1be0b\",\n \"size\": 99147,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/static/media/image-2.jpg?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/static/media/image-2.jpg\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/53845ed35faf8939bea242bb85eda7c324b1be0b\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/static/media/image-2.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/static/media/image-2.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/53845ed35faf8939bea242bb85eda7c324b1be0b\",\n \"html\": \"https://github.com/owner/repo/blob/master/static/media/image-2.jpg\"\n }\n },\n {\n \"name\": \"image-3.jpg\",\n \"path\": \"static/media/image-3.jpg\",\n \"sha\": \"8b2339d97069e826fae1f156212e40ae458454e3\",\n \"size\": 358022,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/static/media/image-3.jpg?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/static/media/image-3.jpg\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/8b2339d97069e826fae1f156212e40ae458454e3\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/static/media/image-3.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/static/media/image-3.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/8b2339d97069e826fae1f156212e40ae458454e3\",\n \"html\": \"https://github.com/owner/repo/blob/master/static/media/image-3.jpg\"\n }\n },\n {\n \"name\": \"image-4.jpg\",\n \"path\": \"static/media/image-4.jpg\",\n \"sha\": \"a8f6f21253a67a4284b5a953b2fe633d44152ecd\",\n \"size\": 114837,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/static/media/image-4.jpg?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/static/media/image-4.jpg\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/a8f6f21253a67a4284b5a953b2fe633d44152ecd\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/static/media/image-4.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/static/media/image-4.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/a8f6f21253a67a4284b5a953b2fe633d44152ecd\",\n \"html\": \"https://github.com/owner/repo/blob/master/static/media/image-4.jpg\"\n }\n },\n {\n \"name\": \"movable-type.jpg\",\n \"path\": \"static/media/movable-type.jpg\",\n \"sha\": \"57b4e925ea00bd8e195cf4418eb6eb2995ea5f10\",\n \"size\": 559028,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/static/media/movable-type.jpg?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/static/media/movable-type.jpg\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/57b4e925ea00bd8e195cf4418eb6eb2995ea5f10\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/static/media/movable-type.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/static/media/movable-type.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/57b4e925ea00bd8e195cf4418eb6eb2995ea5f10\",\n \"html\": \"https://github.com/owner/repo/blob/master/static/media/movable-type.jpg\"\n }\n },\n {\n \"name\": \"printing-press.jpg\",\n \"path\": \"static/media/printing-press.jpg\",\n \"sha\": \"d27f56c9437d9becd2f56cc627c9322c2f1f61f6\",\n \"size\": 279283,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/static/media/printing-press.jpg?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/static/media/printing-press.jpg\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/d27f56c9437d9becd2f56cc627c9322c2f1f61f6\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/static/media/printing-press.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/static/media/printing-press.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/d27f56c9437d9becd2f56cc627c9322c2f1f61f6\",\n \"html\": \"https://github.com/owner/repo/blob/master/static/media/printing-press.jpg\"\n }\n },\n {\n \"name\": \"type-through-time.jpg\",\n \"path\": \"static/media/type-through-time.jpg\",\n \"sha\": \"3f08366a805c51a60ec5056010f22de4ba08abaa\",\n \"size\": 117689,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/static/media/type-through-time.jpg?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/static/media/type-through-time.jpg\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/3f08366a805c51a60ec5056010f22de4ba08abaa\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/static/media/type-through-time.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/static/media/type-through-time.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/3f08366a805c51a60ec5056010f22de4ba08abaa\",\n \"html\": \"https://github.com/owner/repo/blob/master/static/media/type-through-time.jpg\"\n }\n }\n]\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/content/posts?ts=0&ref=master", + "headers": { + "Date": "Tue, 10 Sep 2019 13:55:28 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4490", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"c5b7f6d674ba193bb7b4a5fcf4933034e1b7f2b7\"", + "Last-Modified": "Tue, 10 Sep 2019 13:53:22 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B8C:15110:188DB78:1DD514D:5D77AB50", + "content-length": "7422", + "connection": "keep-alive" + }, + "response": "[\n {\n \"name\": \"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"path\": \"content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"sha\": \"6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"size\": 1707,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"html\": \"https://github.com/owner/repo/blob/master/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md\"\n }\n },\n {\n \"name\": \"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"path\": \"content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"sha\": \"d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"size\": 2565,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"html\": \"https://github.com/owner/repo/blob/master/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\"\n }\n },\n {\n \"name\": \"2016-02-02---A-Brief-History-of-Typography.md\",\n \"path\": \"content/posts/2016-02-02---A-Brief-History-of-Typography.md\",\n \"sha\": \"0eea554365f002d0f1572af9a58522d335a794d5\",\n \"size\": 2786,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2016-02-02---A-Brief-History-of-Typography.md?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/content/posts/2016-02-02---A-Brief-History-of-Typography.md\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/content/posts/2016-02-02---A-Brief-History-of-Typography.md\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2016-02-02---A-Brief-History-of-Typography.md?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\",\n \"html\": \"https://github.com/owner/repo/blob/master/content/posts/2016-02-02---A-Brief-History-of-Typography.md\"\n }\n },\n {\n \"name\": \"2017-18-08---The-Birth-of-Movable-Type.md\",\n \"path\": \"content/posts/2017-18-08---The-Birth-of-Movable-Type.md\",\n \"sha\": \"44f78c474d04273185a95821426f75affc9b0044\",\n \"size\": 16071,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2017-18-08---The-Birth-of-Movable-Type.md?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/content/posts/2017-18-08---The-Birth-of-Movable-Type.md\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/content/posts/2017-18-08---The-Birth-of-Movable-Type.md\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2017-18-08---The-Birth-of-Movable-Type.md?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\",\n \"html\": \"https://github.com/owner/repo/blob/master/content/posts/2017-18-08---The-Birth-of-Movable-Type.md\"\n }\n },\n {\n \"name\": \"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"path\": \"content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"sha\": \"a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"size\": 7465,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"html\": \"https://github.com/owner/repo/blob/master/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md\"\n }\n }\n]\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043?ts=0", + "headers": { + "Date": "Tue, 10 Sep 2019 13:55:29 GMT", + "Content-Type": "text/plain; charset=iso-8859-1", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4489", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"b11610ec1fe2f13ce388952c3fdf3423\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B90:3ED77:ABDC11:D054B9:5D77AB50", + "content-length": "1707", + "connection": "keep-alive" + }, + "response": "---\ntitle: Perfecting the Art of Perfection\ndate: \"2016-09-01T23:46:37.121Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Design Inspiration\"\ntags:\n - \"Handwriting\"\n - \"Learning to write\"\ndescription: \"Quisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\"\ncanonical: ''\n---\n\nQuisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\n\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-2.jpg)\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. \n\nPraesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774?ts=0", + "headers": { + "Date": "Tue, 10 Sep 2019 13:55:29 GMT", + "Content-Type": "text/plain; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4488", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"d2bb4e67afce9cad20457cc0c72b8a41\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B98:1510F:123B370:16207AC:5D77AB50", + "content-length": "7465", + "connection": "keep-alive" + }, + "response": "---\ntitle: Humane Typography in the Digital Age\ndate: \"2017-08-19T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Typography\"\ntags:\n - \"Design\"\n - \"Typography\"\n - \"Web Development\"\ndescription: \"An Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\"\ncanonical: ''\n---\n\n- [The first transition](#the-first-transition)\n- [The digital age](#the-digital-age)\n- [Loss of humanity through transitions](#loss-of-humanity-through-transitions)\n- [Chasing perfection](#chasing-perfection)\n\nAn Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\n\nThe typography of this industrial age was no longer handcrafted. Mass production and profit became more important. Quantity mattered more than the quality. The books and printed works in general lost a part of its humanity. The typefaces were not produced by craftsmen anymore. It was the machines printing and tying the books together now. The craftsmen had to let go of their craft and became a cog in the process. An extension of the industrial machine.\n\nBut the victory of the industrialism didn’t mean that the craftsmen were completely extinct. The two worlds continued to coexist independently. Each recognising the good in the other — the power of industrialism and the humanity of craftsmanship. This was the second transition that would strip typography of a part of its humanity. We have to go 500 years back in time to meet the first one.\n\n## The first transition\n\nA similar conflict emerged after the invention of the first printing press in Europe. Johannes Gutenberg invented movable type and used it to produce different compositions. His workshop could print up to 240 impressions per hour. Until then, the books were being copied by hand. All the books were handwritten and decorated with hand drawn ornaments and figures. A process of copying a book was long but each book, even a copy, was a work of art.\n\nThe first printed books were, at first, perceived as inferior to the handwritten ones. They were smaller and cheaper to produce. Movable type provided the printers with flexibility that allowed them to print books in languages other than Latin. Gill describes the transition to industrialism as something that people needed and wanted. Something similar happened after the first printed books emerged. People wanted books in a language they understood and they wanted books they could take with them. They were hungry for knowledge and printed books satisfied this hunger.\n\n![42-line-bible.jpg](/media/42-line-bible.jpg)\n\n*The 42–Line Bible, printed by Gutenberg.*\n\nBut, through this transition, the book lost a large part of its humanity. The machine took over most of the process but craftsmanship was still a part of it. The typefaces were cut manually by the first punch cutters. The paper was made by hand. The illustrations and ornaments were still being hand drawn. These were the remains of the craftsmanship that went almost extinct in the times of Eric Gill.\n\n## The digital age\n\nThe first transition took away a large part of humanity from written communication. Industrialisation, the second transition described by Eric Gill, took away most of what was left. But it’s the third transition that stripped it naked. Typefaces are faceless these days. They’re just fonts on our computers. Hardly anyone knows their stories. Hardly anyone cares. Flicking through thousands of typefaces and finding the “right one” is a matter of minutes.\n\n> In the new computer age the proliferation of typefaces and type manipulations represents a new level of visual pollution threatening our culture. Out of thousands of typefaces, all we need are a few basic ones, and trash the rest.\n>\n— Massimo Vignelli\n\nTypography is not about typefaces. It’s not about what looks best, it’s about what feels right. What communicates the message best. Typography, in its essence, is about the message. “Typographical design should perform optically what the speaker creates through voice and gesture of his thoughts.”, as El Lissitzky, a famous Russian typographer, put it.\n\n## Loss of humanity through transitions\n\nEach transition took away a part of humanity from written language. Handwritten books being the most humane form and the digital typefaces being the least. Overuse of Helvetica is a good example. Messages are being told in a typeface just because it’s a safe option. It’s always there. Everyone knows it but yet, nobody knows it. Stop someone on the street and ask him what Helvetica is? Ask a designer the same question. Ask him where it came from, when, why and who designed it. Most of them will fail to answer these questions. Most of them used it in their precious projects but they still don’t spot it in the street.\n\n
\n\t
\n\t\t

Knowledge of the quality of a typeface is of the greatest importance for the functional, aesthetic and psychological effect.

\n\t\t
\n\t\t\t— Josef Mueller-Brockmann\n\t\t
\n\t
\n
\n\nTypefaces don’t look handmade these days. And that’s all right. They don’t have to. Industrialism took that away from them and we’re fine with it. We’ve traded that part of humanity for a process that produces more books that are easier to read. That can’t be bad. And it isn’t.\n\n> Humane typography will often be comparatively rough and even uncouth; but while a certain uncouthness does not seriously matter in humane works, uncouthness has no excuse whatever in the productions of the machine.\n>\n> — Eric Gill\n\nWe’ve come close to “perfection” in the last five centuries. The letters are crisp and without rough edges. We print our compositions with high–precision printers on a high quality, machine made paper.\n\n![type-through-time.jpg](/media/type-through-time.jpg)\n\n*Type through 5 centuries.*\n\nWe lost a part of ourselves because of this chase after perfection. We forgot about the craftsmanship along the way. And the worst part is that we don’t care. The transition to the digital age made that clear. We choose typefaces like clueless zombies. There’s no meaning in our work. Type sizes, leading, margins… It’s all just a few clicks or lines of code. The message isn’t important anymore. There’s no more “why” behind the “what”.\n\n## Chasing perfection\n\nHuman beings aren’t perfect. Perfection is something that will always elude us. There will always be a small part of humanity in everything we do. No matter how small that part, we should make sure that it transcends the limits of the medium. We have to think about the message first. What typeface should we use and why? Does the typeface match the message and what we want to communicate with it? What will be the leading and why? Will there be more typefaces in our design? On what ground will they be combined? What makes our design unique and why? This is the part of humanity that is left in typography. It might be the last part. Are we really going to give it up?\n\n*Originally published by [Matej Latin](http://matejlatin.co.uk/) on [Medium](https://medium.com/design-notes/humane-typography-in-the-digital-age-9bd5c16199bd?ref=webdesignernews.com#.lygo82z0x).*", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9?ts=0", + "headers": { + "Date": "Tue, 10 Sep 2019 13:55:29 GMT", + "Content-Type": "text/plain; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4487", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"f9b97e27090d24f9b7c773ede73acd0c\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B92:2B19:A9A089:CE78F3:5D77AB50", + "content-length": "2565", + "connection": "keep-alive" + }, + "response": "---\ntitle: The Origins of Social Stationery Lettering\ndate: \"2016-12-01T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Design Culture\"\ndescription: \"Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante.\"\ncanonical: ''\n---\n\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\n\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-3.jpg)\n\n## Header Level 2\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \n\n
\n\t
\n\t\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\n\t\t
\n\t\t\t— Aliquam tincidunt mauris eu risus.\n\t\t
\n\t
\n
\n\n### Header Level 3\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\n\n```css\n#header h1 a {\n display: block;\n width: 300px;\n height: 80px;\n}\n```\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044?ts=0", + "headers": { + "Date": "Tue, 10 Sep 2019 13:55:29 GMT", + "Content-Type": "text/plain; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4486", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"6e2453f34250f47bb0adc4ff2f6887a8\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B96:1510E:ACA2A8:D25CBA:5D77AB50", + "content-length": "16071", + "connection": "keep-alive" + }, + "response": "---\ntitle: \"Johannes Gutenberg: The Birth of Movable Type\"\ndate: \"2017-08-18T22:12:03.284Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Typography\"\ntags:\n - \"Open source\"\n - \"Gatsby\"\n - \"Typography\"\ndescription: \"German inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\"\ncanonical: ''\n---\n\nGerman inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\n\n**Johannes Gensfleisch zur Laden zum Gutenberg** (c. 1398 – 1468) was a German blacksmith, goldsmith, printer, and publisher who introduced printing to Europe. His invention of mechanical movable type printing started the Printing Revolution and is widely regarded as the most important event of the modern period. It played a key role in the development of the Renaissance, Reformation, the Age of Enlightenment, and the Scientific revolution and laid the material basis for the modern knowledge-based economy and the spread of learning to the masses.\n\n
\n\t\"Gutenberg\"\n\t
Johannes Gutenberg
\n
\n\nWith his invention of the printing press, Gutenberg was the first European to use movable type printing, in around 1439. Among his many contributions to printing are: the invention of a process for mass-producing movable type; the use of oil-based ink; and the use of a wooden printing press similar to the agricultural screw presses of the period. His truly epochal invention was the combination of these elements into a practical system that allowed the mass production of printed books and was economically viable for printers and readers alike. Gutenberg's method for making type is traditionally considered to have included a type metal alloy and a hand mould for casting type. The alloy was a mixture of lead, tin, and antimony that melted at a relatively low temperature for faster and more economical casting, cast well, and created a durable type.\n\nIn Renaissance Europe, the arrival of mechanical movable type printing introduced the era of mass communication which permanently altered the structure of society. The relatively unrestricted circulation of information — including revolutionary ideas — transcended borders, captured the masses in the Reformation and threatened the power of political and religious authorities; the sharp increase in literacy broke the monopoly of the literate elite on education and learning and bolstered the emerging middle class. Across Europe, the increasing cultural self-awareness of its people led to the rise of proto-nationalism, accelerated by the flowering of the European vernacular languages to the detriment of Latin's status as lingua franca. In the 19th century, the replacement of the hand-operated Gutenberg-style press by steam-powered rotary presses allowed printing on an industrial scale, while Western-style printing was adopted all over the world, becoming practically the sole medium for modern bulk printing.\n\nThe use of movable type was a marked improvement on the handwritten manuscript, which was the existing method of book production in Europe, and upon woodblock printing, and revolutionized European book-making. Gutenberg's printing technology spread rapidly throughout Europe and later the world.\n\nHis major work, the Gutenberg Bible (also known as the 42-line Bible), has been acclaimed for its high aesthetic and technical quality.\n\n## Printing Press\n\nAround 1439, Gutenberg was involved in a financial misadventure making polished metal mirrors (which were believed to capture holy light from religious relics) for sale to pilgrims to Aachen: in 1439 the city was planning to exhibit its collection of relics from Emperor Charlemagne but the event was delayed by one year due to a severe flood and the capital already spent could not be repaid. When the question of satisfying the investors came up, Gutenberg is said to have promised to share a “secret”. It has been widely speculated that this secret may have been the idea of printing with movable type. Also around 1439–1440, the Dutch Laurens Janszoon Coster came up with the idea of printing. Legend has it that the idea came to him “like a ray of light”.\n\n
\n\t\"Early\n\t
Early wooden printing press as depicted in 1568.
\n
\n\nUntil at least 1444 he lived in Strasbourg, most likely in the St. Arbogast parish. It was in Strasbourg in 1440 that Gutenberg is said to have perfected and unveiled the secret of printing based on his research, mysteriously entitled Kunst und Aventur (art and enterprise). It is not clear what work he was engaged in, or whether some early trials with printing from movable type may have been conducted there. After this, there is a gap of four years in the record. In 1448, he was back in Mainz, where he took out a loan from his brother-in-law Arnold Gelthus, quite possibly for a printing press or related paraphernalia. By this date, Gutenberg may have been familiar with intaglio printing; it is claimed that he had worked on copper engravings with an artist known as the Master of Playing Cards.\n\nBy 1450, the press was in operation, and a German poem had been printed, possibly the first item to be printed there. Gutenberg was able to convince the wealthy moneylender Johann Fust for a loan of 800 guilders. Peter Schöffer, who became Fust’s son-in-law, also joined the enterprise. Schöffer had worked as a scribe in Paris and is believed to have designed some of the first typefaces.\n\n
\n\t
\n\t\t

All that has been written to me about that marvelous man seen at Frankfurt is true. I have not seen complete Bibles but only a number of quires of various books of the Bible. The script was very neat and legible, not at all difficult to follow—your grace would be able to read it without effort, and indeed without glasses.

\n\t\t
\n\t\t\t—Future pope Pius II in a letter to Cardinal Carvajal, March 1455\n\t\t
\n\t
\n
\n\nGutenberg's workshop was set up at Hof Humbrecht, a property belonging to a distant relative. It is not clear when Gutenberg conceived the Bible project, but for this he borrowed another 800 guilders from Fust, and work commenced in 1452. At the same time, the press was also printing other, more lucrative texts (possibly Latin grammars). There is also some speculation that there may have been two presses, one for the pedestrian texts, and one for the Bible. One of the profit-making enterprises of the new press was the printing of thousands of indulgences for the church, documented from 1454–55.\n\nIn 1455 Gutenberg completed his 42-line Bible, known as the Gutenberg Bible. About 180 copies were printed, most on paper and some on vellum.\n\n## Court Case\n\nSome time in 1456, there was a dispute between Gutenberg and Fust, and Fust demanded his money back, accusing Gutenberg of misusing the funds. Meanwhile the expenses of the Bible project had proliferated, and Gutenberg's debt now exceeded 20,000 guilders. Fust sued at the archbishop's court. A November 1455 legal document records that there was a partnership for a \"project of the books,\" the funds for which Gutenberg had used for other purposes, according to Fust. The court decided in favor of Fust, giving him control over the Bible printing workshop and half of all printed Bibles.\n\nThus Gutenberg was effectively bankrupt, but it appears he retained (or re-started) a small printing shop, and participated in the printing of a Bible in the town of Bamberg around 1459, for which he seems at least to have supplied the type. But since his printed books never carry his name or a date, it is difficult to be certain, and there is consequently a considerable scholarly debate on this subject. It is also possible that the large Catholicon dictionary, 300 copies of 754 pages, printed in Mainz in 1460, may have been executed in his workshop.\n\nMeanwhile, the Fust–Schöffer shop was the first in Europe to bring out a book with the printer's name and date, the Mainz Psalter of August 1457, and while proudly proclaiming the mechanical process by which it had been produced, it made no mention of Gutenberg.\n\n## Later Life\n\nIn 1462, during a conflict between two archbishops, Mainz was sacked by archbishop Adolph von Nassau, and Gutenberg was exiled. An old man by now, he moved to Eltville where he may have initiated and supervised a new printing press belonging to the brothers Bechtermünze.\n\nIn January 1465, Gutenberg's achievements were recognized and he was given the title Hofmann (gentleman of the court) by von Nassau. This honor included a stipend, an annual court outfit, as well as 2,180 litres of grain and 2,000 litres of wine tax-free. It is believed he may have moved back to Mainz around this time, but this is not certain.\n\n***\n\nGutenberg died in 1468 and was buried in the Franciscan church at Mainz, his contributions largely unknown. This church and the cemetery were later destroyed, and Gutenberg's grave is now lost.\n\nIn 1504, he was mentioned as the inventor of typography in a book by Professor Ivo Wittig. It was not until 1567 that the first portrait of Gutenberg, almost certainly an imaginary reconstruction, appeared in Heinrich Pantaleon's biography of famous Germans.\n\n## Printing Method With Movable Type\n\nGutenberg's early printing process, and what tests he may have made with movable type, are not known in great detail. His later Bibles were printed in such a way as to have required large quantities of type, some estimates suggesting as many as 100,000 individual sorts. Setting each page would take, perhaps, half a day, and considering all the work in loading the press, inking the type, pulling the impressions, hanging up the sheets, distributing the type, etc., it is thought that the Gutenberg–Fust shop might have employed as many as 25 craftsmen.\n\n![Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5](/media/movable-type.jpg)\n\n*Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5*\n\nGutenberg's technique of making movable type remains unclear. In the following decades, punches and copper matrices became standardized in the rapidly disseminating printing presses across Europe. Whether Gutenberg used this sophisticated technique or a somewhat primitive version has been the subject of considerable debate.\n\nIn the standard process of making type, a hard metal punch (made by punchcutting, with the letter carved back to front) is hammered into a softer copper bar, creating a matrix. This is then placed into a hand-held mould and a piece of type, or \"sort\", is cast by filling the mould with molten type-metal; this cools almost at once, and the resulting piece of type can be removed from the mould. The matrix can be reused to create hundreds, or thousands, of identical sorts so that the same character appearing anywhere within the book will appear very uniform, giving rise, over time, to the development of distinct styles of typefaces or fonts. After casting, the sorts are arranged into type-cases, and used to make up pages which are inked and printed, a procedure which can be repeated hundreds, or thousands, of times. The sorts can be reused in any combination, earning the process the name of “movable type”.\n\nThe invention of the making of types with punch, matrix and mold has been widely attributed to Gutenberg. However, recent evidence suggests that Gutenberg's process was somewhat different. If he used the punch and matrix approach, all his letters should have been nearly identical, with some variations due to miscasting and inking. However, the type used in Gutenberg's earliest work shows other variations.\n\n
\n\t
\n\t\t

It is a press, certainly, but a press from which shall flow in inexhaustible streams… Through it, god will spread his word.

\n\t\t
\n\t\t\t—Johannes Gutenberg\n\t\t
\n\t
\n
\n\nIn 2001, the physicist Blaise Agüera y Arcas and Princeton librarian Paul Needham, used digital scans of a Papal bull in the Scheide Library, Princeton, to carefully compare the same letters (types) appearing in different parts of the printed text. The irregularities in Gutenberg's type, particularly in simple characters such as the hyphen, suggested that the variations could not have come from either ink smear or from wear and damage on the pieces of metal on the types themselves. While some identical types are clearly used on other pages, other variations, subjected to detailed image analysis, suggested that they could not have been produced from the same matrix. Transmitted light pictures of the page also appeared to reveal substructures in the type that could not arise from traditional punchcutting techniques. They hypothesized that the method may have involved impressing simple shapes to create alphabets in “cuneiform” style in a matrix made of some soft material, perhaps sand. Casting the type would destroy the mould, and the matrix would need to be recreated to make each additional sort. This could explain the variations in the type, as well as the substructures observed in the printed images.\n\nThus, they feel that “the decisive factor for the birth of typography”, the use of reusable moulds for casting type, might have been a more progressive process than was previously thought. They suggest that the additional step of using the punch to create a mould that could be reused many times was not taken until twenty years later, in the 1470s. Others have not accepted some or all of their suggestions, and have interpreted the evidence in other ways, and the truth of the matter remains very uncertain.\n\nA 1568 history by Hadrianus Junius of Holland claims that the basic idea of the movable type came to Gutenberg from Laurens Janszoon Coster via Fust, who was apprenticed to Coster in the 1430s and may have brought some of his equipment from Haarlem to Mainz. While Coster appears to have experimented with moulds and castable metal type, there is no evidence that he had actually printed anything with this technology. He was an inventor and a goldsmith. However, there is one indirect supporter of the claim that Coster might be the inventor. The author of the Cologne Chronicle of 1499 quotes Ulrich Zell, the first printer of Cologne, that printing was performed in Mainz in 1450, but that some type of printing of lower quality had previously occurred in the Netherlands. However, the chronicle does not mention the name of Coster, while it actually credits Gutenberg as the \"first inventor of printing\" in the very same passage (fol. 312). The first securely dated book by Dutch printers is from 1471, and the Coster connection is today regarded as a mere legend.\n\nThe 19th century printer and typefounder Fournier Le Jeune suggested that Gutenberg might not have been using type cast with a reusable matrix, but possibly wooden types that were carved individually. A similar suggestion was made by Nash in 2004. This remains possible, albeit entirely unproven.\n\nIt has also been questioned whether Gutenberg used movable types at all. In 2004, Italian professor Bruno Fabbiani claimed that examination of the 42-line Bible revealed an overlapping of letters, suggesting that Gutenberg did not in fact use movable type (individual cast characters) but rather used whole plates made from a system somewhat like a modern typewriter, whereby the letters were stamped successively into the plate and then printed. However, most specialists regard the occasional overlapping of type as caused by paper movement over pieces of type of slightly unequal height.", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5?ts=0", + "headers": { + "Date": "Tue, 10 Sep 2019 13:55:29 GMT", + "Content-Type": "text/plain; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4485", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"733ab4cffe213d8db3be254e7fee8f69\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B95:2B24:17D5BD6:1CF9AFB:5D77AB50", + "content-length": "2786", + "connection": "keep-alive" + }, + "response": "---\ntitle: \"A Brief History of Typography\"\ndate: \"2016-02-02T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Design Inspiration\"\ntags:\n - \"Linotype\"\n - \"Monotype\"\n - \"History of typography\"\n - \"Helvetica\"\ndescription: \"Morbi in sem quis dui placerat ornare. Pellentesque odio nisi, euismod in, pharetra a, ultricies in, diam. Sed arcu. Cras consequat.\"\ncanonical: ''\n---\n\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\n\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-0.jpg)\n\n## Header Level 2\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \n\n
\n\t
\n\t\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\n\t\t
\n\t\t\t— Aliquam tincidunt mauris eu risus.\n\t\t
\n\t
\n
\n\n### Header Level 3\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\n\n```css\n#header h1 a {\n display: block;\n width: 300px;\n height: 80px;\n}\n```\n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/1970-01-01-first-title.json?ts=300&ref=refs/meta/_netlify_cms", + "headers": { + "Date": "Tue, 10 Sep 2019 13:55:33 GMT", + "Content-Type": "application/vnd.github.VERSION.raw; charset=utf-8", + "Content-Length": "462", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4484", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"be405ba2940293898aa4fb54ceb8c94f7b40e232\"", + "Last-Modified": "Tue, 10 Sep 2019 13:55:05 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BA4:9D1F:A3299B:C71C1B:5D77AB54", + "connection": "keep-alive" + }, + "response": "{\"type\":\"PR\",\"pr\":{\"number\":2,\"head\":\"8c8903cdd71381d845159e600a2181a9afa33558\"},\"user\":\"owner\",\"status\":\"draft\",\"branch\":\"cms/1970-01-01-first-title\",\"collection\":\"posts\",\"commitMessage\":\"Create Post “1970-01-01-first-title”\",\"title\":\"first title\",\"description\":\"first description\",\"objects\":{\"entry\":{\"path\":\"content/posts/1970-01-01-first-title.md\",\"sha\":\"a041245814892e3f73f63ca54333fda649b7fc0b\"},\"files\":[]},\"timeStamp\":\"1970-01-01T00:00:00.600Z\"}", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=cms/1970-01-01-first-title", + "headers": { + "Date": "Tue, 10 Sep 2019 13:55:33 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "404 Not Found", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4483", + "X-RateLimit-Reset": "1568126651", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BA6:B4DA:52C178:64F28A:5D77AB55", + "content-length": "148", + "connection": "keep-alive" + }, + "response": "{\n \"message\": \"No commit found for the ref cms/1970-01-01-first-title\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/\"\n}\n", + "status": 404 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=master", + "headers": { + "Date": "Tue, 10 Sep 2019 13:55:33 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "404 Not Found", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4482", + "X-RateLimit-Reset": "1568126651", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BA8:2B15:4E52DA:5F0F0E:5D77AB55", + "content-length": "116", + "connection": "keep-alive" + }, + "response": "{\n \"message\": \"Not Found\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/#get-contents\"\n}\n", + "status": 404 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=master", + "headers": { + "Date": "Tue, 10 Sep 2019 13:55:34 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "404 Not Found", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4481", + "X-RateLimit-Reset": "1568126651", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BAA:2B1F:122FD81:1632304:5D77AB55", + "content-length": "116", + "connection": "keep-alive" + }, + "response": "{\n \"message\": \"Not Found\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/#get-contents\"\n}\n", + "status": 404 + }, + { + "body": "{\"content\":\"LS0tCnRlbXBsYXRlOiBwb3N0CnRpdGxlOiBmaXJzdCB0aXRsZQpkcmFmdDogdHJ1ZQpkYXRlOiAxOTcwLTAxLTAxVDAwOjAwOjAwLjAwMFoKZGVzY3JpcHRpb246IGZpcnN0IGRlc2NyaXB0aW9uCmNhdGVnb3J5OiBmaXJzdCBjYXRlZ29yeQp0YWdzOgogIC0gdGFnMQotLS0KZmlyc3QgYm9keQo=\",\"encoding\":\"base64\"}", + "method": "POST", + "url": "/repos/owner/repo/git/blobs?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:55:34 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "207", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4480", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"56a87df1038fbc514d2fc013aa391906\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BAC:2B0F:19FBD8:1FD455:5D77AB56", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"a041245814892e3f73f63ca54333fda649b7fc0b\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b\"\n}\n", + "status": 201 + }, + { + "method": "GET", + "url": "/repos/owner/repo/branches/master?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:55:35 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4479", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"f47adc6d20eeac555786fbffd72595af\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BAF:15110:188E5BE:1DD5E31:5D77AB57", + "content-length": "5961", + "connection": "keep-alive" + }, + "response": "{\n \"name\": \"master\",\n \"commit\": {\n \"sha\": \"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NTczMTU5OjcyNjE3MmRlYWU5OWM4YTJjZWE0YzcxZTczNGEwMmE3OTNkNGQ5ZTU=\",\n \"commit\": {\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-08T09:08:14Z\"\n },\n \"committer\": {\n \"name\": \"GitHub\",\n \"email\": \"noreply@github.com\",\n \"date\": \"2019-09-08T09:08:14Z\"\n },\n \"message\": \"Merge pull request #10 from owner/chore/update_dependencies\\n\\nChore: update dependencies\",\n \"tree\": {\n \"sha\": \"c5b7f6d674ba193bb7b4a5fcf4933034e1b7f2b7\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/c5b7f6d674ba193bb7b4a5fcf4933034e1b7f2b7\"\n },\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"comment_count\": 0,\n \"verification\": {\n \"verified\": true,\n \"reason\": \"valid\",\n \"signature\": \"-----BEGIN PGP SIGNATURE-----\\n\\nwsBcBAABCAAQBQJddMT+CRBK7hj4Ov3rIwAAdHIIABWcobVYZFMuqSPezceRaKDr\\npXGqxvB3WLiIrvsQiBz2si9SvufXxLUdq72iaYTbXMCqIAAIBDNwHLltOKcbUF9J\\nKa8pD6cq7jpNyZfhI8xlapMwEZPu53as0tSvwdOnl/0iL+WYjUZUFQR+vrWEmllu\\nhIES9QxU2nk5zcS7t8sFRA+sJdll8GzzhoWYkpw3wgqpxCzJdf5HJS0tWyVCZM5U\\nCgSpSgTvz9bALnQxu7YVrfLGEvi8S7LaOEz5HQc+TV1hNR2dfl5hhiHhWQ1Rsx5w\\nUECV01vItNWhx2dyMn77hIu/G+bTH89WZDU+CmifsNkmvkq90fk4eNt8Hg1mxn4=\\n=6ayM\\n-----END PGP SIGNATURE-----\\n\",\n \"payload\": \"tree c5b7f6d674ba193bb7b4a5fcf4933034e1b7f2b7\\nparent 8ade583d7c02e7769dd685ca64c10851c09f51cf\\nparent 4940957ff42b034d8c47d64b383c34548a34fbb5\\nauthor owner 1567933694 +0300\\ncommitter GitHub 1567933694 +0300\\n\\nMerge pull request #10 from owner/chore/update_dependencies\\n\\nChore: update dependencies\"\n }\n },\n \"url\": \"https://api.github.com/repos/owner/repo/commits/726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"html_url\": \"https://github.com/owner/repo/commit/726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/commits/726172deae99c8a2cea4c71e734a02a793d4d9e5/comments\",\n \"author\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"committer\": {\n \"login\": \"web-flow\",\n \"id\": 19864447,\n \"node_id\": \"MDQ6VXNlcjE5ODY0NDQ3\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/web-flow\",\n \"html_url\": \"https://github.com/web-flow\",\n \"followers_url\": \"https://api.github.com/users/web-flow/followers\",\n \"following_url\": \"https://api.github.com/users/web-flow/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/web-flow/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/web-flow/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/web-flow/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/web-flow/orgs\",\n \"repos_url\": \"https://api.github.com/users/web-flow/repos\",\n \"events_url\": \"https://api.github.com/users/web-flow/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/web-flow/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"parents\": [\n {\n \"sha\": \"8ade583d7c02e7769dd685ca64c10851c09f51cf\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/8ade583d7c02e7769dd685ca64c10851c09f51cf\",\n \"html_url\": \"https://github.com/owner/repo/commit/8ade583d7c02e7769dd685ca64c10851c09f51cf\"\n },\n {\n \"sha\": \"4940957ff42b034d8c47d64b383c34548a34fbb5\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/4940957ff42b034d8c47d64b383c34548a34fbb5\",\n \"html_url\": \"https://github.com/owner/repo/commit/4940957ff42b034d8c47d64b383c34548a34fbb5\"\n }\n ]\n },\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/branches/master\",\n \"html\": \"https://github.com/owner/repo/tree/master\"\n },\n \"protected\": false,\n \"protection\": {\n \"enabled\": false,\n \"required_status_checks\": {\n \"enforcement_level\": \"off\",\n \"contexts\": [\n\n ]\n }\n },\n \"protection_url\": \"https://api.github.com/repos/owner/repo/branches/master/protection\"\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/trees/726172deae99c8a2cea4c71e734a02a793d4d9e5?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:55:36 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4478", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"d77b8ce9e58b2411117ccbf09ab34ed8\"", + "Last-Modified": "Tue, 10 Sep 2019 13:53:22 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BB0:1510B:6DEDA:884A7:5D77AB57", + "content-length": "11769", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"tree\": [\n {\n \"path\": \".circleci\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"e5e9af3301cac61f120b8e4d40b1733c7a45685a\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/e5e9af3301cac61f120b8e4d40b1733c7a45685a\"\n },\n {\n \"path\": \".eslintignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"80b4531b026d19f8fa589efd122e76199d23f967\",\n \"size\": 39,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/80b4531b026d19f8fa589efd122e76199d23f967\"\n },\n {\n \"path\": \".eslintrc.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"370684994aaed5b858da3a006f48cfa57e88fd27\",\n \"size\": 414,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/370684994aaed5b858da3a006f48cfa57e88fd27\"\n },\n {\n \"path\": \".flowconfig\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14aa2ac4cc0e15223ad98630a6f1325fc81f8043\",\n \"size\": 283,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14aa2ac4cc0e15223ad98630a6f1325fc81f8043\"\n },\n {\n \"path\": \".gitattributes\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"10a369ddf4f603337cabc6f21646508323941ce1\",\n \"size\": 135,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/10a369ddf4f603337cabc6f21646508323941ce1\"\n },\n {\n \"path\": \".github\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4ebeece548b52b20af59622354530a6d33b50b43\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4ebeece548b52b20af59622354530a6d33b50b43\"\n },\n {\n \"path\": \".gitignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"c071ba35b0e49899bab6d610a68eef667dbbf157\",\n \"size\": 169,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/c071ba35b0e49899bab6d610a68eef667dbbf157\"\n },\n {\n \"path\": \".prettierignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"393f050e123d998cf8c8b362ff95cc8ac4d250e5\",\n \"size\": 45,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/393f050e123d998cf8c8b362ff95cc8ac4d250e5\"\n },\n {\n \"path\": \".prettierrc\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e52ad05bb13b084d7949dd76e1b2517455162150\",\n \"size\": 223,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/e52ad05bb13b084d7949dd76e1b2517455162150\"\n },\n {\n \"path\": \".stylelintrc.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"4b4c9698d10d756f5faa025659b86375428ed0a7\",\n \"size\": 718,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/4b4c9698d10d756f5faa025659b86375428ed0a7\"\n },\n {\n \"path\": \".vscode\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"286e97ec0113ea8242b41ac222e2c3e8077e6f1e\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/286e97ec0113ea8242b41ac222e2c3e8077e6f1e\"\n },\n {\n \"path\": \"CHANGELOG.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"070a5d4f0eacd2dc0be81ae8996f8982de43046e\",\n \"size\": 2113,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/070a5d4f0eacd2dc0be81ae8996f8982de43046e\"\n },\n {\n \"path\": \"CODE_OF_CONDUCT.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"92bc7565ff0ee145a0041b5179a820f14f39ab22\",\n \"size\": 3355,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/92bc7565ff0ee145a0041b5179a820f14f39ab22\"\n },\n {\n \"path\": \"CONTRIBUTING.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"8552aa241254a61258e1ff9666ab36f32fb1e3b9\",\n \"size\": 3548,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/8552aa241254a61258e1ff9666ab36f32fb1e3b9\"\n },\n {\n \"path\": \"LICENSE\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"42d85938357b49977c126ca03b199129082d4fb8\",\n \"size\": 1091,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/42d85938357b49977c126ca03b199129082d4fb8\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"19df50a78654c8d757ca7f38447aa3d09c7abcce\",\n \"size\": 3698,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/19df50a78654c8d757ca7f38447aa3d09c7abcce\"\n },\n {\n \"path\": \"backend\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\"\n },\n {\n \"path\": \"config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"58afd573bbb69fcca000efd0f5d90b93c93a98dd\",\n \"size\": 853,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/58afd573bbb69fcca000efd0f5d90b93c93a98dd\"\n },\n {\n \"path\": \"content\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/0294ef106c58743907a5c855da1eb0f87b0b6dfc\"\n },\n {\n \"path\": \"flow-typed\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"86c32fd6c3118be5e0dbbb231a834447357236c6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/86c32fd6c3118be5e0dbbb231a834447357236c6\"\n },\n {\n \"path\": \"flow\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"0af45ad00d155c8d8c7407d913ff85278244c9ce\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/0af45ad00d155c8d8c7407d913ff85278244c9ce\"\n },\n {\n \"path\": \"gatsby-browser.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9bd2c9dce175f04980e91cd9dc295a299e3cdb80\",\n \"size\": 90,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9bd2c9dce175f04980e91cd9dc295a299e3cdb80\"\n },\n {\n \"path\": \"gatsby-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"353a109dad62e3f25bf9f5e6a2167f21a6c8b459\",\n \"size\": 7228,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/353a109dad62e3f25bf9f5e6a2167f21a6c8b459\"\n },\n {\n \"path\": \"gatsby-node.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14a207883c2093d2cc071bc5a464e165bcc1fead\",\n \"size\": 409,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14a207883c2093d2cc071bc5a464e165bcc1fead\"\n },\n {\n \"path\": \"gatsby\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4f23c06cd1740bf78304d2c0b29bf6bfdf427981\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4f23c06cd1740bf78304d2c0b29bf6bfdf427981\"\n },\n {\n \"path\": \"jest\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\"\n },\n {\n \"path\": \"netlify.toml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"599b99cc5700404fde316a7ede829776f23e7d45\",\n \"size\": 137,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/599b99cc5700404fde316a7ede829776f23e7d45\"\n },\n {\n \"path\": \"package.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9d777616438b90a18f1a4ebfd5f114b4c06c6f17\",\n \"size\": 6855,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9d777616438b90a18f1a4ebfd5f114b4c06c6f17\"\n },\n {\n \"path\": \"postcss-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d216501e9b351a72e00ba0b7459a6500e27e7da2\",\n \"size\": 703,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d216501e9b351a72e00ba0b7459a6500e27e7da2\"\n },\n {\n \"path\": \"renovate.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"dcc309398785698b8870545c32051a3d72dd8271\",\n \"size\": 460,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/dcc309398785698b8870545c32051a3d72dd8271\"\n },\n {\n \"path\": \"serverless-scripts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ee3701f2fbfc7196ba340f6481d1387d20527898\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ee3701f2fbfc7196ba340f6481d1387d20527898\"\n },\n {\n \"path\": \"serverless-single-page-app-plugin\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"08763fcfba643a06a452398517019bea4a5850ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/08763fcfba643a06a452398517019bea4a5850ba\"\n },\n {\n \"path\": \"serverless.yml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"20b22c5fad229f35d029bf6614d333d82fe8a987\",\n \"size\": 7803,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/20b22c5fad229f35d029bf6614d333d82fe8a987\"\n },\n {\n \"path\": \"src\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"8cdb35a88232c0f32f12f130c92c7cc55f97f471\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/8cdb35a88232c0f32f12f130c92c7cc55f97f471\"\n },\n {\n \"path\": \"static\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"53c6380a600a030d3722bff7ecde36f749fb6964\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/53c6380a600a030d3722bff7ecde36f749fb6964\"\n },\n {\n \"path\": \"utils\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"a592549c9f74db40b51efefcda2fd76810405f27\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/a592549c9f74db40b51efefcda2fd76810405f27\"\n },\n {\n \"path\": \"yarn.lock\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"475c9c1924ca752a0686303e2fdeb7b13ad75f57\",\n \"size\": 793903,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/475c9c1924ca752a0686303e2fdeb7b13ad75f57\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/trees/0294ef106c58743907a5c855da1eb0f87b0b6dfc?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:55:36 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4477", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"0abcbf354911bd78b253b880b84d8da0\"", + "Last-Modified": "Tue, 10 Sep 2019 13:53:22 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BB2:3ED7B:126E27A:16630E5:5D77AB58", + "content-length": "831", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\n \"tree\": [\n {\n \"path\": \"pages\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\"\n },\n {\n \"path\": \"posts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"34892575e216c06e757093f036bd8e057c78a52f\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/34892575e216c06e757093f036bd8e057c78a52f\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/trees/34892575e216c06e757093f036bd8e057c78a52f?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:55:37 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4476", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"29693f84571fe2df8dc664b09d0872b0\"", + "Last-Modified": "Tue, 10 Sep 2019 13:53:22 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BB4:B4DA:52C333:64F4AA:5D77AB59", + "content-length": "2030", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"34892575e216c06e757093f036bd8e057c78a52f\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/34892575e216c06e757093f036bd8e057c78a52f\",\n \"tree\": [\n {\n \"path\": \"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"size\": 1707,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\"\n },\n {\n \"path\": \"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"size\": 2565,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\"\n },\n {\n \"path\": \"2016-02-02---A-Brief-History-of-Typography.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"0eea554365f002d0f1572af9a58522d335a794d5\",\n \"size\": 2786,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\"\n },\n {\n \"path\": \"2017-18-08---The-Birth-of-Movable-Type.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"44f78c474d04273185a95821426f75affc9b0044\",\n \"size\": 16071,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\"\n },\n {\n \"path\": \"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"size\": 7465,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 200 + }, + { + "body": "{\"base_tree\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"tree\":[{\"path\":\"1970-01-01-first-title.md\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"a041245814892e3f73f63ca54333fda649b7fc0b\"}]}", + "method": "POST", + "url": "/repos/owner/repo/git/trees?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:55:38 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "2362", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4475", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"ebc1ab128eebad51810afca6f07ccff1\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BB6:244EB:181780F:1D43802:5D77AB59", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a041245814892e3f73f63ca54333fda649b7fc0b\",\n \"size\": 167,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b\"\n },\n {\n \"path\": \"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"size\": 1707,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\"\n },\n {\n \"path\": \"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"size\": 2565,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\"\n },\n {\n \"path\": \"2016-02-02---A-Brief-History-of-Typography.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"0eea554365f002d0f1572af9a58522d335a794d5\",\n \"size\": 2786,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\"\n },\n {\n \"path\": \"2017-18-08---The-Birth-of-Movable-Type.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"44f78c474d04273185a95821426f75affc9b0044\",\n \"size\": 16071,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\"\n },\n {\n \"path\": \"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"size\": 7465,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"base_tree\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\"tree\":[{\"path\":\"posts\",\"mode\":\"040000\",\"type\":\"tree\",\"sha\":\"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\"parentSha\":\"34892575e216c06e757093f036bd8e057c78a52f\"}]}", + "method": "POST", + "url": "/repos/owner/repo/git/trees?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:55:39 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "831", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4474", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"cf11b691192f3fcf082e39fe0a214ad1\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BB8:244E7:11ADF11:15934FA:5D77AB5A", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"tree\": [\n {\n \"path\": \"pages\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\"\n },\n {\n \"path\": \"posts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"base_tree\":\"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\"tree\":[{\"path\":\"content\",\"mode\":\"040000\",\"type\":\"tree\",\"sha\":\"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\"parentSha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\"}]}", + "method": "POST", + "url": "/repos/owner/repo/git/trees?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:55:39 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "11769", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4473", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"259bcf85cfa917532f552d4919781c7b\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/trees/daee8d5d15d144e8779955166a2afeccde2770e1", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BBA:B4DE:11FC779:15E55E9:5D77AB5B", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"daee8d5d15d144e8779955166a2afeccde2770e1\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/daee8d5d15d144e8779955166a2afeccde2770e1\",\n \"tree\": [\n {\n \"path\": \".circleci\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"e5e9af3301cac61f120b8e4d40b1733c7a45685a\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/e5e9af3301cac61f120b8e4d40b1733c7a45685a\"\n },\n {\n \"path\": \".eslintignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"80b4531b026d19f8fa589efd122e76199d23f967\",\n \"size\": 39,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/80b4531b026d19f8fa589efd122e76199d23f967\"\n },\n {\n \"path\": \".eslintrc.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"370684994aaed5b858da3a006f48cfa57e88fd27\",\n \"size\": 414,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/370684994aaed5b858da3a006f48cfa57e88fd27\"\n },\n {\n \"path\": \".flowconfig\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14aa2ac4cc0e15223ad98630a6f1325fc81f8043\",\n \"size\": 283,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14aa2ac4cc0e15223ad98630a6f1325fc81f8043\"\n },\n {\n \"path\": \".gitattributes\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"10a369ddf4f603337cabc6f21646508323941ce1\",\n \"size\": 135,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/10a369ddf4f603337cabc6f21646508323941ce1\"\n },\n {\n \"path\": \".github\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4ebeece548b52b20af59622354530a6d33b50b43\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4ebeece548b52b20af59622354530a6d33b50b43\"\n },\n {\n \"path\": \".gitignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"c071ba35b0e49899bab6d610a68eef667dbbf157\",\n \"size\": 169,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/c071ba35b0e49899bab6d610a68eef667dbbf157\"\n },\n {\n \"path\": \".prettierignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"393f050e123d998cf8c8b362ff95cc8ac4d250e5\",\n \"size\": 45,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/393f050e123d998cf8c8b362ff95cc8ac4d250e5\"\n },\n {\n \"path\": \".prettierrc\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e52ad05bb13b084d7949dd76e1b2517455162150\",\n \"size\": 223,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/e52ad05bb13b084d7949dd76e1b2517455162150\"\n },\n {\n \"path\": \".stylelintrc.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"4b4c9698d10d756f5faa025659b86375428ed0a7\",\n \"size\": 718,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/4b4c9698d10d756f5faa025659b86375428ed0a7\"\n },\n {\n \"path\": \".vscode\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"286e97ec0113ea8242b41ac222e2c3e8077e6f1e\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/286e97ec0113ea8242b41ac222e2c3e8077e6f1e\"\n },\n {\n \"path\": \"CHANGELOG.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"070a5d4f0eacd2dc0be81ae8996f8982de43046e\",\n \"size\": 2113,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/070a5d4f0eacd2dc0be81ae8996f8982de43046e\"\n },\n {\n \"path\": \"CODE_OF_CONDUCT.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"92bc7565ff0ee145a0041b5179a820f14f39ab22\",\n \"size\": 3355,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/92bc7565ff0ee145a0041b5179a820f14f39ab22\"\n },\n {\n \"path\": \"CONTRIBUTING.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"8552aa241254a61258e1ff9666ab36f32fb1e3b9\",\n \"size\": 3548,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/8552aa241254a61258e1ff9666ab36f32fb1e3b9\"\n },\n {\n \"path\": \"LICENSE\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"42d85938357b49977c126ca03b199129082d4fb8\",\n \"size\": 1091,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/42d85938357b49977c126ca03b199129082d4fb8\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"19df50a78654c8d757ca7f38447aa3d09c7abcce\",\n \"size\": 3698,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/19df50a78654c8d757ca7f38447aa3d09c7abcce\"\n },\n {\n \"path\": \"backend\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\"\n },\n {\n \"path\": \"config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"58afd573bbb69fcca000efd0f5d90b93c93a98dd\",\n \"size\": 853,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/58afd573bbb69fcca000efd0f5d90b93c93a98dd\"\n },\n {\n \"path\": \"content\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639\"\n },\n {\n \"path\": \"flow-typed\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"86c32fd6c3118be5e0dbbb231a834447357236c6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/86c32fd6c3118be5e0dbbb231a834447357236c6\"\n },\n {\n \"path\": \"flow\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"0af45ad00d155c8d8c7407d913ff85278244c9ce\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/0af45ad00d155c8d8c7407d913ff85278244c9ce\"\n },\n {\n \"path\": \"gatsby-browser.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9bd2c9dce175f04980e91cd9dc295a299e3cdb80\",\n \"size\": 90,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9bd2c9dce175f04980e91cd9dc295a299e3cdb80\"\n },\n {\n \"path\": \"gatsby-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"353a109dad62e3f25bf9f5e6a2167f21a6c8b459\",\n \"size\": 7228,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/353a109dad62e3f25bf9f5e6a2167f21a6c8b459\"\n },\n {\n \"path\": \"gatsby-node.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14a207883c2093d2cc071bc5a464e165bcc1fead\",\n \"size\": 409,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14a207883c2093d2cc071bc5a464e165bcc1fead\"\n },\n {\n \"path\": \"gatsby\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4f23c06cd1740bf78304d2c0b29bf6bfdf427981\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4f23c06cd1740bf78304d2c0b29bf6bfdf427981\"\n },\n {\n \"path\": \"jest\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\"\n },\n {\n \"path\": \"netlify.toml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"599b99cc5700404fde316a7ede829776f23e7d45\",\n \"size\": 137,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/599b99cc5700404fde316a7ede829776f23e7d45\"\n },\n {\n \"path\": \"package.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9d777616438b90a18f1a4ebfd5f114b4c06c6f17\",\n \"size\": 6855,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9d777616438b90a18f1a4ebfd5f114b4c06c6f17\"\n },\n {\n \"path\": \"postcss-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d216501e9b351a72e00ba0b7459a6500e27e7da2\",\n \"size\": 703,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d216501e9b351a72e00ba0b7459a6500e27e7da2\"\n },\n {\n \"path\": \"renovate.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"dcc309398785698b8870545c32051a3d72dd8271\",\n \"size\": 460,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/dcc309398785698b8870545c32051a3d72dd8271\"\n },\n {\n \"path\": \"serverless-scripts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ee3701f2fbfc7196ba340f6481d1387d20527898\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ee3701f2fbfc7196ba340f6481d1387d20527898\"\n },\n {\n \"path\": \"serverless-single-page-app-plugin\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"08763fcfba643a06a452398517019bea4a5850ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/08763fcfba643a06a452398517019bea4a5850ba\"\n },\n {\n \"path\": \"serverless.yml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"20b22c5fad229f35d029bf6614d333d82fe8a987\",\n \"size\": 7803,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/20b22c5fad229f35d029bf6614d333d82fe8a987\"\n },\n {\n \"path\": \"src\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"8cdb35a88232c0f32f12f130c92c7cc55f97f471\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/8cdb35a88232c0f32f12f130c92c7cc55f97f471\"\n },\n {\n \"path\": \"static\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"53c6380a600a030d3722bff7ecde36f749fb6964\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/53c6380a600a030d3722bff7ecde36f749fb6964\"\n },\n {\n \"path\": \"utils\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"a592549c9f74db40b51efefcda2fd76810405f27\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/a592549c9f74db40b51efefcda2fd76810405f27\"\n },\n {\n \"path\": \"yarn.lock\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"475c9c1924ca752a0686303e2fdeb7b13ad75f57\",\n \"size\": 793903,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/475c9c1924ca752a0686303e2fdeb7b13ad75f57\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"message\":\"Create Post “1970-01-01-first-title”\",\"tree\":\"daee8d5d15d144e8779955166a2afeccde2770e1\",\"parents\":[\"726172deae99c8a2cea4c71e734a02a793d4d9e5\"]}", + "method": "POST", + "url": "/repos/owner/repo/git/commits?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:55:40 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "1504", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4472", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"97dbdc551fa041f17f66423a64a95fbb\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/commits/b0e9355d97e69d58c0a943f4ee24f3290f58bd59", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BBC:2B0F:19FC8A:1FD536:5D77AB5C", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"b0e9355d97e69d58c0a943f4ee24f3290f58bd59\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NTczMTU5OmIwZTkzNTVkOTdlNjlkNThjMGE5NDNmNGVlMjRmMzI5MGY1OGJkNTk=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/b0e9355d97e69d58c0a943f4ee24f3290f58bd59\",\n \"html_url\": \"https://github.com/owner/repo/commit/b0e9355d97e69d58c0a943f4ee24f3290f58bd59\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T13:55:40Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T13:55:40Z\"\n },\n \"tree\": {\n \"sha\": \"daee8d5d15d144e8779955166a2afeccde2770e1\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/daee8d5d15d144e8779955166a2afeccde2770e1\"\n },\n \"message\": \"Create Post “1970-01-01-first-title”\",\n \"parents\": [\n {\n \"sha\": \"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"html_url\": \"https://github.com/owner/repo/commit/726172deae99c8a2cea4c71e734a02a793d4d9e5\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "status": 201 + }, + { + "body": "{\"ref\":\"refs/heads/cms/1970-01-01-first-title\",\"sha\":\"b0e9355d97e69d58c0a943f4ee24f3290f58bd59\"}", + "method": "POST", + "url": "/repos/owner/repo/git/refs?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:55:41 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "518", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4471", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"68d0fc2eb0201c32e8e0d32e8137d562\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "Location": "https://api.github.com/repos/owner/repo/git/refs/heads/cms/1970-01-01-first-title", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BBE:15110:188EEE9:1DD6992:5D77AB5C", + "connection": "keep-alive" + }, + "response": "{\n \"ref\": \"refs/heads/cms/1970-01-01-first-title\",\n \"node_id\": \"MDM6UmVmMjA3NTczMTU5OmNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxl\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/heads/cms/1970-01-01-first-title\",\n \"object\": {\n \"sha\": \"b0e9355d97e69d58c0a943f4ee24f3290f58bd59\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/b0e9355d97e69d58c0a943f4ee24f3290f58bd59\"\n }\n}\n", + "status": 201 + }, + { + "body": "{\"title\":\"Create Post “1970-01-01-first-title”\",\"body\":\"Automatically generated by Netlify CMS\",\"head\":\"cms/1970-01-01-first-title\",\"base\":\"master\"}", + "method": "POST", + "url": "/repos/owner/repo/pulls?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:55:42 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "21715", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4470", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"4046644dbf63d26717dc7765215447f1\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/pulls/3", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BC2:B4DE:11FCA9B:15E59E3:5D77AB5D", + "connection": "keep-alive" + }, + "response": "{\n \"url\": \"https://api.github.com/repos/owner/repo/pulls/3\",\n \"id\": 316007715,\n \"node_id\": \"MDExOlB1bGxSZXF1ZXN0MzE2MDA3NzE1\",\n \"html_url\": \"https://github.com/owner/repo/pull/3\",\n \"diff_url\": \"https://github.com/owner/repo/pull/3.diff\",\n \"patch_url\": \"https://github.com/owner/repo/pull/3.patch\",\n \"issue_url\": \"https://api.github.com/repos/owner/repo/issues/3\",\n \"number\": 3,\n \"state\": \"open\",\n \"locked\": false,\n \"title\": \"Create Post “1970-01-01-first-title”\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Automatically generated by Netlify CMS\",\n \"created_at\": \"2019-09-10T13:55:42Z\",\n \"updated_at\": \"2019-09-10T13:55:42Z\",\n \"closed_at\": null,\n \"merged_at\": null,\n \"merge_commit_sha\": null,\n \"assignee\": null,\n \"assignees\": [\n\n ],\n \"requested_reviewers\": [\n\n ],\n \"requested_teams\": [\n\n ],\n \"labels\": [\n\n ],\n \"milestone\": null,\n \"commits_url\": \"https://api.github.com/repos/owner/repo/pulls/3/commits\",\n \"review_comments_url\": \"https://api.github.com/repos/owner/repo/pulls/3/comments\",\n \"review_comment_url\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/issues/3/comments\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/b0e9355d97e69d58c0a943f4ee24f3290f58bd59\",\n \"head\": {\n \"label\": \"owner:cms/1970-01-01-first-title\",\n \"ref\": \"cms/1970-01-01-first-title\",\n \"sha\": \"b0e9355d97e69d58c0a943f4ee24f3290f58bd59\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 207573159,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NzMxNTk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-10T13:52:54Z\",\n \"updated_at\": \"2019-09-10T13:53:22Z\",\n \"pushed_at\": \"2019-09-10T13:55:41Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 1,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 1,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"base\": {\n \"label\": \"owner:master\",\n \"ref\": \"master\",\n \"sha\": \"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 207573159,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NzMxNTk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-10T13:52:54Z\",\n \"updated_at\": \"2019-09-10T13:53:22Z\",\n \"pushed_at\": \"2019-09-10T13:55:41Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 1,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 1,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/3\"\n },\n \"html\": {\n \"href\": \"https://github.com/owner/repo/pull/3\"\n },\n \"issue\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/3\"\n },\n \"comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/3/comments\"\n },\n \"review_comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/3/comments\"\n },\n \"review_comment\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\"\n },\n \"commits\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/3/commits\"\n },\n \"statuses\": {\n \"href\": \"https://api.github.com/repos/owner/repo/statuses/b0e9355d97e69d58c0a943f4ee24f3290f58bd59\"\n }\n },\n \"author_association\": \"OWNER\",\n \"merged\": false,\n \"mergeable\": null,\n \"rebaseable\": null,\n \"mergeable_state\": \"unknown\",\n \"merged_by\": null,\n \"comments\": 0,\n \"review_comments\": 0,\n \"maintainer_can_modify\": false,\n \"commits\": 1,\n \"additions\": 11,\n \"deletions\": 0,\n \"changed_files\": 1\n}\n", + "status": 201 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:55:43 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4469", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"ce7d2bb64318ceee8e7faf3cba3f201f\"", + "Last-Modified": "Tue, 10 Sep 2019 13:53:22 GMT", + "X-Poll-Interval": "300", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BC4:9D20:115BFF3:153A62A:5D77AB5F", + "content-length": "484", + "connection": "keep-alive" + }, + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NTczMTU5OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"beb8dc98fe555f22d7c350ec0afbb9ce9fed098a\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/beb8dc98fe555f22d7c350ec0afbb9ce9fed098a\"\n }\n}\n", + "status": 200 + }, + { + "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjMsImhlYWQiOiJiMGU5MzU1ZDk3ZTY5ZDU4YzBhOTQzZjRlZTI0ZjMyOTBmNThiZDU5In0sInVzZXIiOiJvd25lciIsInN0YXR1cyI6ImRyYWZ0IiwiYnJhbmNoIjoiY21zLzE5NzAtMDEtMDEtZmlyc3QtdGl0bGUiLCJjb2xsZWN0aW9uIjoicG9zdHMiLCJjb21taXRNZXNzYWdlIjoiQ3JlYXRlIFBvc3Qg4oCcMTk3MC0wMS0wMS1maXJzdC10aXRsZeKAnSIsInRpdGxlIjoiZmlyc3QgdGl0bGUiLCJkZXNjcmlwdGlvbiI6ImZpcnN0IGRlc2NyaXB0aW9uIiwib2JqZWN0cyI6eyJlbnRyeSI6eyJwYXRoIjoiY29udGVudC9wb3N0cy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxlLm1kIiwic2hhIjoiYTA0MTI0NTgxNDg5MmUzZjczZjYzY2E1NDMzM2ZkYTY0OWI3ZmMwYiJ9LCJmaWxlcyI6W119LCJ0aW1lU3RhbXAiOiIxOTcwLTAxLTAxVDAwOjAwOjAwLjMwMFoifQ==\",\"encoding\":\"base64\"}", + "method": "POST", + "url": "/repos/owner/repo/git/blobs?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:55:44 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "207", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4468", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"fa1f12348203bef782771c8de4fdbfff\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/blobs/373a50db665dce834385356409ec24eb0d5f8a0b", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BC9:B4DA:52C604:64F820:5D77AB60", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"373a50db665dce834385356409ec24eb0d5f8a0b\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/373a50db665dce834385356409ec24eb0d5f8a0b\"\n}\n", + "status": 201 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/trees/beb8dc98fe555f22d7c350ec0afbb9ce9fed098a?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:55:45 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4467", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"c880c7ebc158b3cbb0dc226254b16515\"", + "Last-Modified": "Tue, 10 Sep 2019 13:53:22 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BCA:2B19:A9AD53:CE889B:5D77AB60", + "content-length": "895", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"beb8dc98fe555f22d7c350ec0afbb9ce9fed098a\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/beb8dc98fe555f22d7c350ec0afbb9ce9fed098a\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"be405ba2940293898aa4fb54ceb8c94f7b40e232\",\n \"size\": 462,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/be405ba2940293898aa4fb54ceb8c94f7b40e232\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 200 + }, + { + "body": "{\"base_tree\":\"beb8dc98fe555f22d7c350ec0afbb9ce9fed098a\",\"tree\":[{\"path\":\"1970-01-01-first-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"373a50db665dce834385356409ec24eb0d5f8a0b\"}]}", + "method": "POST", + "url": "/repos/owner/repo/git/trees?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:55:46 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "895", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4466", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"3bc95cbba3985b0cfcc55aa88efe85c4\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/trees/b2e71c234cbabd8ca0c67e7423e6c16f1eb9cfe6", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BCD:B4DE:11FCEB6:15E5F15:5D77AB61", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"b2e71c234cbabd8ca0c67e7423e6c16f1eb9cfe6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/b2e71c234cbabd8ca0c67e7423e6c16f1eb9cfe6\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"373a50db665dce834385356409ec24eb0d5f8a0b\",\n \"size\": 462,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/373a50db665dce834385356409ec24eb0d5f8a0b\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"message\":\"Updating “1970-01-01-first-title” metadata\",\"tree\":\"b2e71c234cbabd8ca0c67e7423e6c16f1eb9cfe6\",\"parents\":[\"beb8dc98fe555f22d7c350ec0afbb9ce9fed098a\"]}", + "method": "POST", + "url": "/repos/owner/repo/git/commits?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:55:47 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "1510", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4465", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"a39aee575c4a7c2b99027a63dd0e4fc1\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/commits/2390021d666b19e6fc0a9e504f9502dad29b0f01", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BCE:1510F:123C89D:16221E4:5D77AB62", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"2390021d666b19e6fc0a9e504f9502dad29b0f01\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NTczMTU5OjIzOTAwMjFkNjY2YjE5ZTZmYzBhOWU1MDRmOTUwMmRhZDI5YjBmMDE=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/2390021d666b19e6fc0a9e504f9502dad29b0f01\",\n \"html_url\": \"https://github.com/owner/repo/commit/2390021d666b19e6fc0a9e504f9502dad29b0f01\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T13:55:46Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T13:55:46Z\"\n },\n \"tree\": {\n \"sha\": \"b2e71c234cbabd8ca0c67e7423e6c16f1eb9cfe6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/b2e71c234cbabd8ca0c67e7423e6c16f1eb9cfe6\"\n },\n \"message\": \"Updating “1970-01-01-first-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"beb8dc98fe555f22d7c350ec0afbb9ce9fed098a\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/beb8dc98fe555f22d7c350ec0afbb9ce9fed098a\",\n \"html_url\": \"https://github.com/owner/repo/commit/beb8dc98fe555f22d7c350ec0afbb9ce9fed098a\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "status": 201 + }, + { + "body": "{\"sha\":\"2390021d666b19e6fc0a9e504f9502dad29b0f01\",\"force\":false}", + "method": "PATCH", + "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:55:48 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4464", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"7581dbab3331ff5e2bdfe777fc15c050\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BD1:1510E:ACB1BC:D26F7C:5D77AB63", + "content-length": "484", + "connection": "keep-alive" + }, + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NTczMTU5OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"2390021d666b19e6fc0a9e504f9502dad29b0f01\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/2390021d666b19e6fc0a9e504f9502dad29b0f01\"\n }\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=master", + "headers": { + "Date": "Tue, 10 Sep 2019 13:55:49 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "404 Not Found", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4463", + "X-RateLimit-Reset": "1568126651", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BD2:244E7:11AEAFA:15943D9:5D77AB64", + "content-length": "116", + "connection": "keep-alive" + }, + "response": "{\n \"message\": \"Not Found\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/#get-contents\"\n}\n", + "status": 404 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=cms/1970-01-01-first-title", + "headers": { + "Date": "Tue, 10 Sep 2019 13:55:49 GMT", + "Content-Type": "application/vnd.github.VERSION.raw; charset=utf-8", + "Content-Length": "167", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4462", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"a041245814892e3f73f63ca54333fda649b7fc0b\"", + "Last-Modified": "Tue, 10 Sep 2019 13:55:40 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BD5:2B24:17D7B95:1CFC1E1:5D77AB64", + "connection": "keep-alive" + }, + "response": "---\ntemplate: post\ntitle: first title\ndraft: true\ndate: 1970-01-01T00:00:00.000Z\ndescription: first description\ncategory: first category\ntags:\n - tag1\n---\nfirst body\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/commits/b0e9355d97e69d58c0a943f4ee24f3290f58bd59/status?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:55:50 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4461", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"2008102c401357e19b8324a1634f33f1\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo, repo:status", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BD6:1510E:ACB372:D27186:5D77AB65", + "content-length": "6574", + "connection": "keep-alive" + }, + "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"b0e9355d97e69d58c0a943f4ee24f3290f58bd59\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 207573159,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NzMxNTk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/b0e9355d97e69d58c0a943f4ee24f3290f58bd59\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/b0e9355d97e69d58c0a943f4ee24f3290f58bd59/status\"\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/refs/heads/cms?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:55:50 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4460", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"7daa84027147d8341a52a73353b463f5\"", + "Last-Modified": "Tue, 10 Sep 2019 13:53:22 GMT", + "X-Poll-Interval": "300", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BD8:244EB:1818C25:1D450BA:5D77AB65", + "content-length": "542", + "connection": "keep-alive" + }, + "response": "[\n {\n \"ref\": \"refs/heads/cms/1970-01-01-first-title\",\n \"node_id\": \"MDM6UmVmMjA3NTczMTU5OmNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxl\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/heads/cms/1970-01-01-first-title\",\n \"object\": {\n \"sha\": \"b0e9355d97e69d58c0a943f4ee24f3290f58bd59\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/b0e9355d97e69d58c0a943f4ee24f3290f58bd59\"\n }\n }\n]\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/pulls?ts=300&head=cms/1970-01-01-first-title&state=open&base=master", + "headers": { + "Date": "Tue, 10 Sep 2019 13:55:51 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4459", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"003874cfda60445b0e160b2123308ff1\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BDA:15110:188FE1E:1DD7C85:5D77AB66", + "content-length": "22154", + "connection": "keep-alive" + }, + "response": "[\n {\n \"url\": \"https://api.github.com/repos/owner/repo/pulls/3\",\n \"id\": 316007715,\n \"node_id\": \"MDExOlB1bGxSZXF1ZXN0MzE2MDA3NzE1\",\n \"html_url\": \"https://github.com/owner/repo/pull/3\",\n \"diff_url\": \"https://github.com/owner/repo/pull/3.diff\",\n \"patch_url\": \"https://github.com/owner/repo/pull/3.patch\",\n \"issue_url\": \"https://api.github.com/repos/owner/repo/issues/3\",\n \"number\": 3,\n \"state\": \"open\",\n \"locked\": false,\n \"title\": \"Create Post “1970-01-01-first-title”\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Automatically generated by Netlify CMS\",\n \"created_at\": \"2019-09-10T13:55:42Z\",\n \"updated_at\": \"2019-09-10T13:55:42Z\",\n \"closed_at\": null,\n \"merged_at\": null,\n \"merge_commit_sha\": \"bbe282ef5e0ef7802d6133b3c08ea65c4a0924e4\",\n \"assignee\": null,\n \"assignees\": [\n\n ],\n \"requested_reviewers\": [\n\n ],\n \"requested_teams\": [\n\n ],\n \"labels\": [\n\n ],\n \"milestone\": null,\n \"commits_url\": \"https://api.github.com/repos/owner/repo/pulls/3/commits\",\n \"review_comments_url\": \"https://api.github.com/repos/owner/repo/pulls/3/comments\",\n \"review_comment_url\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/issues/3/comments\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/b0e9355d97e69d58c0a943f4ee24f3290f58bd59\",\n \"head\": {\n \"label\": \"owner:cms/1970-01-01-first-title\",\n \"ref\": \"cms/1970-01-01-first-title\",\n \"sha\": \"b0e9355d97e69d58c0a943f4ee24f3290f58bd59\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 207573159,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NzMxNTk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-10T13:52:54Z\",\n \"updated_at\": \"2019-09-10T13:53:22Z\",\n \"pushed_at\": \"2019-09-10T13:55:48Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 1,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 1,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"base\": {\n \"label\": \"owner:master\",\n \"ref\": \"master\",\n \"sha\": \"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 207573159,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NzMxNTk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-10T13:52:54Z\",\n \"updated_at\": \"2019-09-10T13:53:22Z\",\n \"pushed_at\": \"2019-09-10T13:55:48Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 1,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 1,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/3\"\n },\n \"html\": {\n \"href\": \"https://github.com/owner/repo/pull/3\"\n },\n \"issue\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/3\"\n },\n \"comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/3/comments\"\n },\n \"review_comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/3/comments\"\n },\n \"review_comment\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\"\n },\n \"commits\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/3/commits\"\n },\n \"statuses\": {\n \"href\": \"https://api.github.com/repos/owner/repo/statuses/b0e9355d97e69d58c0a943f4ee24f3290f58bd59\"\n }\n },\n \"author_association\": \"OWNER\"\n }\n]\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=cms/1970-01-01-first-title", + "headers": { + "Date": "Tue, 10 Sep 2019 13:55:51 GMT", + "Content-Type": "application/vnd.github.VERSION.raw; charset=utf-8", + "Content-Length": "167", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4458", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"a041245814892e3f73f63ca54333fda649b7fc0b\"", + "Last-Modified": "Tue, 10 Sep 2019 13:55:40 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BDC:1510E:ACB4D2:D27337:5D77AB67", + "connection": "keep-alive" + }, + "response": "---\ntemplate: post\ntitle: first title\ndraft: true\ndate: 1970-01-01T00:00:00.000Z\ndescription: first description\ncategory: first category\ntags:\n - tag1\n---\nfirst body\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=master", + "headers": { + "Date": "Tue, 10 Sep 2019 13:55:51 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "404 Not Found", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4457", + "X-RateLimit-Reset": "1568126651", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BDF:3ED7B:126F59A:166483E:5D77AB67", + "content-length": "116", + "connection": "keep-alive" + }, + "response": "{\n \"message\": \"Not Found\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/#get-contents\"\n}\n", + "status": 404 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:55:53 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4456", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"7581dbab3331ff5e2bdfe777fc15c050\"", + "Last-Modified": "Tue, 10 Sep 2019 13:53:22 GMT", + "X-Poll-Interval": "300", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BE0:B4DC:AC1E7E:D161C6:5D77AB68", + "content-length": "484", + "connection": "keep-alive" + }, + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NTczMTU5OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"2390021d666b19e6fc0a9e504f9502dad29b0f01\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/2390021d666b19e6fc0a9e504f9502dad29b0f01\"\n }\n}\n", + "status": 200 + }, + { + "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjMsImhlYWQiOiJiMGU5MzU1ZDk3ZTY5ZDU4YzBhOTQzZjRlZTI0ZjMyOTBmNThiZDU5In0sInVzZXIiOiJvd25lciIsInN0YXR1cyI6InBlbmRpbmdfcHVibGlzaCIsImJyYW5jaCI6ImNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxlIiwiY29sbGVjdGlvbiI6InBvc3RzIiwiY29tbWl0TWVzc2FnZSI6IkNyZWF0ZSBQb3N0IOKAnDE5NzAtMDEtMDEtZmlyc3QtdGl0bGXigJ0iLCJ0aXRsZSI6ImZpcnN0IHRpdGxlIiwiZGVzY3JpcHRpb24iOiJmaXJzdCBkZXNjcmlwdGlvbiIsIm9iamVjdHMiOnsiZW50cnkiOnsicGF0aCI6ImNvbnRlbnQvcG9zdHMvMTk3MC0wMS0wMS1maXJzdC10aXRsZS5tZCIsInNoYSI6ImEwNDEyNDU4MTQ4OTJlM2Y3M2Y2M2NhNTQzMzNmZGE2NDliN2ZjMGIifSwiZmlsZXMiOltdfSwidGltZVN0YW1wIjoiMTk3MC0wMS0wMVQwMDowMDowMC4zMDBaIn0=\",\"encoding\":\"base64\"}", + "method": "POST", + "url": "/repos/owner/repo/git/blobs?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:55:53 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "207", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4455", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"63df2c260081bb18386a2f13455e0049\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/blobs/f1eeceb99397f78994740f0f9a14bc2d11160d76", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BE3:3ED7B:126F886:1664BBF:5D77AB69", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"f1eeceb99397f78994740f0f9a14bc2d11160d76\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/f1eeceb99397f78994740f0f9a14bc2d11160d76\"\n}\n", + "status": 201 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/trees/2390021d666b19e6fc0a9e504f9502dad29b0f01?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:55:54 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4454", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"3b2b12cd6d98efb193288a1d3b962562\"", + "Last-Modified": "Tue, 10 Sep 2019 13:53:22 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BE4:3ED82:188CABC:1DDDFAC:5D77AB6A", + "content-length": "895", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"2390021d666b19e6fc0a9e504f9502dad29b0f01\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/2390021d666b19e6fc0a9e504f9502dad29b0f01\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"373a50db665dce834385356409ec24eb0d5f8a0b\",\n \"size\": 462,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/373a50db665dce834385356409ec24eb0d5f8a0b\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 200 + }, + { + "body": "{\"base_tree\":\"2390021d666b19e6fc0a9e504f9502dad29b0f01\",\"tree\":[{\"path\":\"1970-01-01-first-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"f1eeceb99397f78994740f0f9a14bc2d11160d76\"}]}", + "method": "POST", + "url": "/repos/owner/repo/git/trees?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:55:55 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "895", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4453", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"a0781992b44bbf8875a026681fcd1930\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/trees/7a5162bc5535e369455b09e4fd3c627b71fc3fbc", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BE6:2B1F:1231484:1633FD3:5D77AB6A", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"7a5162bc5535e369455b09e4fd3c627b71fc3fbc\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/7a5162bc5535e369455b09e4fd3c627b71fc3fbc\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"f1eeceb99397f78994740f0f9a14bc2d11160d76\",\n \"size\": 472,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/f1eeceb99397f78994740f0f9a14bc2d11160d76\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "method": "GET", + "url": "/repos/owner/repo/commits/b0e9355d97e69d58c0a943f4ee24f3290f58bd59/status?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:55:55 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4452", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"2008102c401357e19b8324a1634f33f1\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo, repo:status", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BE9:15110:189064A:1DD8698:5D77AB6B", + "content-length": "6574", + "connection": "keep-alive" + }, + "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"b0e9355d97e69d58c0a943f4ee24f3290f58bd59\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 207573159,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NzMxNTk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/b0e9355d97e69d58c0a943f4ee24f3290f58bd59\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/b0e9355d97e69d58c0a943f4ee24f3290f58bd59/status\"\n}\n", + "status": 200 + }, + { + "body": "{\"message\":\"Updating “1970-01-01-first-title” metadata\",\"tree\":\"7a5162bc5535e369455b09e4fd3c627b71fc3fbc\",\"parents\":[\"2390021d666b19e6fc0a9e504f9502dad29b0f01\"]}", + "method": "POST", + "url": "/repos/owner/repo/git/commits?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:55:56 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "1510", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4451", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"a01b1169d9c06fb50cc05ffa743131ac\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/commits/1aa078e6b8fcda0b8ebb428fa24dbf0d8f6aaa20", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BEA:2B24:17D864F:1CFCF32:5D77AB6B", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"1aa078e6b8fcda0b8ebb428fa24dbf0d8f6aaa20\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NTczMTU5OjFhYTA3OGU2YjhmY2RhMGI4ZWJiNDI4ZmEyNGRiZjBkOGY2YWFhMjA=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/1aa078e6b8fcda0b8ebb428fa24dbf0d8f6aaa20\",\n \"html_url\": \"https://github.com/owner/repo/commit/1aa078e6b8fcda0b8ebb428fa24dbf0d8f6aaa20\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T13:55:55Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T13:55:55Z\"\n },\n \"tree\": {\n \"sha\": \"7a5162bc5535e369455b09e4fd3c627b71fc3fbc\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/7a5162bc5535e369455b09e4fd3c627b71fc3fbc\"\n },\n \"message\": \"Updating “1970-01-01-first-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"2390021d666b19e6fc0a9e504f9502dad29b0f01\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/2390021d666b19e6fc0a9e504f9502dad29b0f01\",\n \"html_url\": \"https://github.com/owner/repo/commit/2390021d666b19e6fc0a9e504f9502dad29b0f01\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "status": 201 + }, + { + "body": "{\"sha\":\"1aa078e6b8fcda0b8ebb428fa24dbf0d8f6aaa20\",\"force\":false}", + "method": "PATCH", + "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:55:57 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4450", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"1e9794f4f0bd9f99377486c31d561a53\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BEC:9D21:1749BAA:1C5F7EE:5D77AB6C", + "content-length": "484", + "connection": "keep-alive" + }, + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NTczMTU5OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"1aa078e6b8fcda0b8ebb428fa24dbf0d8f6aaa20\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/1aa078e6b8fcda0b8ebb428fa24dbf0d8f6aaa20\"\n }\n}\n", + "status": 200 + }, + { + "body": "{\"commit_message\":\"Automatically generated. Merged on Netlify CMS.\",\"sha\":\"b0e9355d97e69d58c0a943f4ee24f3290f58bd59\",\"merge_method\":\"merge\"}", + "method": "PUT", + "url": "/repos/owner/repo/pulls/3/merge?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:55:59 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4449", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"ac7cc408a6a62f19a78370e233b960be\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BEE:15110:1890A99:1DD8C01:5D77AB6E", + "content-length": "123", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"7c85a08b7b5b05f916095c043c59a9379231f8d4\",\n \"merged\": true,\n \"message\": \"Pull Request successfully merged\"\n}\n", + "status": 200 + }, + { + "method": "DELETE", + "url": "/repos/owner/repo/git/refs/heads/cms%2F1970-01-01-first-title?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:56:01 GMT", + "Content-Type": "application/octet-stream", + "Server": "GitHub.com", + "Status": "204 No Content", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4448", + "X-RateLimit-Reset": "1568126651", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7BF0:2B24:17D8CE3:1CFD754:5D77AB6F", + "content-length": "0", + "connection": "keep-alive" + }, + "response": null, + "status": 204 + }, + { + "method": "GET", + "url": "/repos/owner/repo/commits/b0e9355d97e69d58c0a943f4ee24f3290f58bd59/status?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:56:01 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4447", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"2008102c401357e19b8324a1634f33f1\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo, repo:status", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BF2:15110:1890F94:1DD9237:5D77AB71", + "content-length": "6574", + "connection": "keep-alive" + }, + "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"b0e9355d97e69d58c0a943f4ee24f3290f58bd59\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 207573159,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NzMxNTk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/b0e9355d97e69d58c0a943f4ee24f3290f58bd59\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/b0e9355d97e69d58c0a943f4ee24f3290f58bd59/status\"\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=master", + "headers": { + "Date": "Tue, 10 Sep 2019 13:56:01 GMT", + "Content-Type": "application/vnd.github.VERSION.raw; charset=utf-8", + "Content-Length": "167", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4446", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"a041245814892e3f73f63ca54333fda649b7fc0b\"", + "Last-Modified": "Tue, 10 Sep 2019 13:55:58 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BF4:B4E0:16C5E2D:1BB7FF6:5D77AB71", + "connection": "keep-alive" + }, + "response": "---\ntemplate: post\ntitle: first title\ndraft: true\ndate: 1970-01-01T00:00:00.000Z\ndescription: first description\ncategory: first category\ntags:\n - tag1\n---\nfirst body\n", + "status": 200 + } +] \ No newline at end of file diff --git a/cypress/fixtures/Github Backend Editorial Workflow - REST API - Open Authoring__can return entry to draft and delete it.json b/cypress/fixtures/Github Backend Editorial Workflow - REST API - Open Authoring__can return entry to draft and delete it.json new file mode 100644 index 00000000..b2a317d8 --- /dev/null +++ b/cypress/fixtures/Github Backend Editorial Workflow - REST API - Open Authoring__can return entry to draft and delete it.json @@ -0,0 +1,1870 @@ +[ + { + "method": "GET", + "url": "/user", + "headers": { + "Date": "Wed, 11 Sep 2019 06:22:26 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4927", + "X-RateLimit-Reset": "1568186244", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"9f179b9cd93543dd93e6a5636e9e17a6\"", + "Last-Modified": "Sun, 01 Sep 2019 18:04:11 GMT", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BD6:15110:2B8C0CA:35051A5:5D7892A2", + "content-length": "1333", + "connection": "keep-alive" + }, + "response": "{\"login\":\"forkOwner\",\"id\":2,\"avatar_url\":\"https://avatars1.githubusercontent.com/u/7892489?v=4\",\"name\":\"forkOwner\"}", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/collaborators/forkOwner/permission", + "headers": { + "Date": "Wed, 11 Sep 2019 06:22:27 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "403 Forbidden", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4926", + "X-RateLimit-Reset": "1568186244", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BD8:244E7:1F4878B:264586C:5D7892A3", + "content-length": "185", + "connection": "keep-alive" + }, + "response": "{\n \"message\": \"Must have push access to view collaborator permission.\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/collaborators/#review-a-users-permission-level\"\n}\n", + "status": 403 + }, + { + "method": "POST", + "url": "/repos/owner/repo/forks", + "headers": { + "Date": "Wed, 11 Sep 2019 06:22:28 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "22055", + "Server": "GitHub.com", + "Status": "202 Accepted", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4925", + "X-RateLimit-Reset": "1568186244", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BDA:15110:2B8C236:3505357:5D7892A3", + "connection": "keep-alive" + }, + "response": "{\n \"id\": 207738279,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc3MzgyNzk=\",\n \"name\": \"repo\",\n \"full_name\": \"forkOwner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"forkOwner\",\n \"id\": 53494188,\n \"node_id\": \"MDQ6VXNlcjUzNDk0MTg4\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/forkOwner\",\n \"html_url\": \"https://github.com/forkOwner\",\n \"followers_url\": \"https://api.github.com/users/forkOwner/followers\",\n \"following_url\": \"https://api.github.com/users/forkOwner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/forkOwner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/forkOwner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/forkOwner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/forkOwner/orgs\",\n \"repos_url\": \"https://api.github.com/users/forkOwner/repos\",\n \"events_url\": \"https://api.github.com/users/forkOwner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/forkOwner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/forkOwner/repo\",\n \"description\": null,\n \"fork\": true,\n \"url\": \"https://api.github.com/repos/forkOwner/repo\",\n \"forks_url\": \"https://api.github.com/repos/forkOwner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/forkOwner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/forkOwner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/forkOwner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/forkOwner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/forkOwner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/forkOwner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/forkOwner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/forkOwner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/forkOwner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/forkOwner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/forkOwner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/forkOwner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/forkOwner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/forkOwner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/forkOwner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/forkOwner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/forkOwner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/forkOwner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/forkOwner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/forkOwner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/forkOwner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/forkOwner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/forkOwner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/forkOwner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/forkOwner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/forkOwner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/forkOwner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/forkOwner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/forkOwner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/forkOwner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/forkOwner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/forkOwner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/forkOwner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/forkOwner/repo/deployments\",\n \"created_at\": \"2019-09-11T06:22:28Z\",\n \"updated_at\": \"2019-09-11T06:22:18Z\",\n \"pushed_at\": \"2019-09-11T06:22:15Z\",\n \"git_url\": \"git://github.com/forkOwner/repo.git\",\n \"ssh_url\": \"git@github.com:forkOwner/repo.git\",\n \"clone_url\": \"https://github.com/forkOwner/repo.git\",\n \"svn_url\": \"https://github.com/forkOwner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": null,\n \"has_issues\": false,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\",\n \"permissions\": {\n \"admin\": true,\n \"push\": true,\n \"pull\": true\n },\n \"parent\": {\n \"id\": 207738178,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc3MzgxNzg=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-11T06:21:51Z\",\n \"updated_at\": \"2019-09-11T06:22:18Z\",\n \"pushed_at\": \"2019-09-11T06:22:15Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n },\n \"source\": {\n \"id\": 207738178,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc3MzgxNzg=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-11T06:21:51Z\",\n \"updated_at\": \"2019-09-11T06:22:18Z\",\n \"pushed_at\": \"2019-09-11T06:22:15Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n },\n \"network_count\": 1,\n \"subscribers_count\": 0\n}\n", + "status": 202 + }, + { + "method": "GET", + "url": "/repos/forkOwner/repo", + "headers": { + "Date": "Wed, 11 Sep 2019 06:22:29 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4924", + "X-RateLimit-Reset": "1568186244", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"9afbc1770dd81dd2d3db8a5a5a41a74e\"", + "Last-Modified": "Wed, 11 Sep 2019 06:22:18 GMT", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BDC:15110:2B8C395:3505508:5D7892A4", + "content-length": "22145", + "connection": "keep-alive" + }, + "response": "{\n \"id\": 207738279,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc3MzgyNzk=\",\n \"name\": \"repo\",\n \"full_name\": \"forkOwner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"forkOwner\",\n \"id\": 53494188,\n \"node_id\": \"MDQ6VXNlcjUzNDk0MTg4\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/forkOwner\",\n \"html_url\": \"https://github.com/forkOwner\",\n \"followers_url\": \"https://api.github.com/users/forkOwner/followers\",\n \"following_url\": \"https://api.github.com/users/forkOwner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/forkOwner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/forkOwner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/forkOwner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/forkOwner/orgs\",\n \"repos_url\": \"https://api.github.com/users/forkOwner/repos\",\n \"events_url\": \"https://api.github.com/users/forkOwner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/forkOwner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/forkOwner/repo\",\n \"description\": null,\n \"fork\": true,\n \"url\": \"https://api.github.com/repos/forkOwner/repo\",\n \"forks_url\": \"https://api.github.com/repos/forkOwner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/forkOwner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/forkOwner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/forkOwner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/forkOwner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/forkOwner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/forkOwner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/forkOwner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/forkOwner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/forkOwner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/forkOwner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/forkOwner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/forkOwner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/forkOwner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/forkOwner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/forkOwner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/forkOwner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/forkOwner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/forkOwner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/forkOwner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/forkOwner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/forkOwner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/forkOwner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/forkOwner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/forkOwner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/forkOwner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/forkOwner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/forkOwner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/forkOwner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/forkOwner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/forkOwner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/forkOwner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/forkOwner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/forkOwner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/forkOwner/repo/deployments\",\n \"created_at\": \"2019-09-11T06:22:28Z\",\n \"updated_at\": \"2019-09-11T06:22:18Z\",\n \"pushed_at\": \"2019-09-11T06:22:15Z\",\n \"git_url\": \"git://github.com/forkOwner/repo.git\",\n \"ssh_url\": \"git@github.com:forkOwner/repo.git\",\n \"clone_url\": \"https://github.com/forkOwner/repo.git\",\n \"svn_url\": \"https://github.com/forkOwner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": null,\n \"has_issues\": false,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\",\n \"permissions\": {\n \"admin\": true,\n \"push\": true,\n \"pull\": true\n },\n \"allow_squash_merge\": true,\n \"allow_merge_commit\": true,\n \"allow_rebase_merge\": true,\n \"parent\": {\n \"id\": 207738178,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc3MzgxNzg=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-11T06:21:51Z\",\n \"updated_at\": \"2019-09-11T06:22:18Z\",\n \"pushed_at\": \"2019-09-11T06:22:15Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n },\n \"source\": {\n \"id\": 207738178,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc3MzgxNzg=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-11T06:21:51Z\",\n \"updated_at\": \"2019-09-11T06:22:18Z\",\n \"pushed_at\": \"2019-09-11T06:22:15Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n },\n \"network_count\": 1,\n \"subscribers_count\": 0\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/user?ts=0", + "headers": { + "Date": "Wed, 11 Sep 2019 06:22:29 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4923", + "X-RateLimit-Reset": "1568186244", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"306a7697fb3e2ba7e728a792014e91b8\"", + "Last-Modified": "Sun, 01 Sep 2019 18:04:11 GMT", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BDF:3ED7B:2092349:27A8319:5D7892A5", + "content-length": "1333", + "connection": "keep-alive" + }, + "response": "{\"login\":\"forkOwner\",\"id\":2,\"avatar_url\":\"https://avatars1.githubusercontent.com/u/7892489?v=4\",\"name\":\"forkOwner\"}", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/forkOwner/repo?ts=0", + "headers": { + "Date": "Wed, 11 Sep 2019 06:22:30 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4922", + "X-RateLimit-Reset": "1568186244", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"91e40058fb77d78ece6f694a3e335d18\"", + "Last-Modified": "Wed, 11 Sep 2019 06:22:29 GMT", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BE0:B4E0:287DD62:3160190:5D7892A6", + "content-length": "22145", + "connection": "keep-alive" + }, + "response": "{\n \"id\": 207738279,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc3MzgyNzk=\",\n \"name\": \"repo\",\n \"full_name\": \"forkOwner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"forkOwner\",\n \"id\": 53494188,\n \"node_id\": \"MDQ6VXNlcjUzNDk0MTg4\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/forkOwner\",\n \"html_url\": \"https://github.com/forkOwner\",\n \"followers_url\": \"https://api.github.com/users/forkOwner/followers\",\n \"following_url\": \"https://api.github.com/users/forkOwner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/forkOwner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/forkOwner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/forkOwner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/forkOwner/orgs\",\n \"repos_url\": \"https://api.github.com/users/forkOwner/repos\",\n \"events_url\": \"https://api.github.com/users/forkOwner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/forkOwner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/forkOwner/repo\",\n \"description\": null,\n \"fork\": true,\n \"url\": \"https://api.github.com/repos/forkOwner/repo\",\n \"forks_url\": \"https://api.github.com/repos/forkOwner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/forkOwner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/forkOwner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/forkOwner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/forkOwner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/forkOwner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/forkOwner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/forkOwner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/forkOwner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/forkOwner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/forkOwner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/forkOwner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/forkOwner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/forkOwner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/forkOwner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/forkOwner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/forkOwner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/forkOwner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/forkOwner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/forkOwner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/forkOwner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/forkOwner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/forkOwner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/forkOwner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/forkOwner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/forkOwner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/forkOwner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/forkOwner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/forkOwner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/forkOwner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/forkOwner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/forkOwner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/forkOwner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/forkOwner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/forkOwner/repo/deployments\",\n \"created_at\": \"2019-09-11T06:22:28Z\",\n \"updated_at\": \"2019-09-11T06:22:29Z\",\n \"pushed_at\": \"2019-09-11T06:22:15Z\",\n \"git_url\": \"git://github.com/forkOwner/repo.git\",\n \"ssh_url\": \"git@github.com:forkOwner/repo.git\",\n \"clone_url\": \"https://github.com/forkOwner/repo.git\",\n \"svn_url\": \"https://github.com/forkOwner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": null,\n \"has_issues\": false,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\",\n \"permissions\": {\n \"admin\": true,\n \"push\": true,\n \"pull\": true\n },\n \"allow_squash_merge\": true,\n \"allow_merge_commit\": true,\n \"allow_rebase_merge\": true,\n \"parent\": {\n \"id\": 207738178,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc3MzgxNzg=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-11T06:21:51Z\",\n \"updated_at\": \"2019-09-11T06:22:18Z\",\n \"pushed_at\": \"2019-09-11T06:22:15Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n },\n \"source\": {\n \"id\": 207738178,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc3MzgxNzg=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-11T06:21:51Z\",\n \"updated_at\": \"2019-09-11T06:22:18Z\",\n \"pushed_at\": \"2019-09-11T06:22:15Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n },\n \"network_count\": 1,\n \"subscribers_count\": 0\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/content/posts?ts=0&ref=master", + "headers": { + "Date": "Wed, 11 Sep 2019 06:22:32 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4921", + "X-RateLimit-Reset": "1568186244", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"c5b7f6d674ba193bb7b4a5fcf4933034e1b7f2b7\"", + "Last-Modified": "Wed, 11 Sep 2019 06:22:18 GMT", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BEA:2B24:2A13285:334E6CE:5D7892A7", + "content-length": "7422", + "connection": "keep-alive" + }, + "response": "[\n {\n \"name\": \"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"path\": \"content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"sha\": \"6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"size\": 1707,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"html\": \"https://github.com/owner/repo/blob/master/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md\"\n }\n },\n {\n \"name\": \"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"path\": \"content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"sha\": \"d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"size\": 2565,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"html\": \"https://github.com/owner/repo/blob/master/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\"\n }\n },\n {\n \"name\": \"2016-02-02---A-Brief-History-of-Typography.md\",\n \"path\": \"content/posts/2016-02-02---A-Brief-History-of-Typography.md\",\n \"sha\": \"0eea554365f002d0f1572af9a58522d335a794d5\",\n \"size\": 2786,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2016-02-02---A-Brief-History-of-Typography.md?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/content/posts/2016-02-02---A-Brief-History-of-Typography.md\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/content/posts/2016-02-02---A-Brief-History-of-Typography.md\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2016-02-02---A-Brief-History-of-Typography.md?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\",\n \"html\": \"https://github.com/owner/repo/blob/master/content/posts/2016-02-02---A-Brief-History-of-Typography.md\"\n }\n },\n {\n \"name\": \"2017-18-08---The-Birth-of-Movable-Type.md\",\n \"path\": \"content/posts/2017-18-08---The-Birth-of-Movable-Type.md\",\n \"sha\": \"44f78c474d04273185a95821426f75affc9b0044\",\n \"size\": 16071,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2017-18-08---The-Birth-of-Movable-Type.md?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/content/posts/2017-18-08---The-Birth-of-Movable-Type.md\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/content/posts/2017-18-08---The-Birth-of-Movable-Type.md\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2017-18-08---The-Birth-of-Movable-Type.md?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\",\n \"html\": \"https://github.com/owner/repo/blob/master/content/posts/2017-18-08---The-Birth-of-Movable-Type.md\"\n }\n },\n {\n \"name\": \"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"path\": \"content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"sha\": \"a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"size\": 7465,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"html\": \"https://github.com/owner/repo/blob/master/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md\"\n }\n }\n]\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/forkOwner/repo/contents/static/media?ts=0&ref=master", + "headers": { + "Date": "Wed, 11 Sep 2019 06:22:33 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4920", + "X-RateLimit-Reset": "1568186244", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"c5b7f6d674ba193bb7b4a5fcf4933034e1b7f2b7\"", + "Last-Modified": "Wed, 11 Sep 2019 06:22:29 GMT", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BF9:2B1F:2007E0B:2738BDF:5D7892A9", + "content-length": "12712", + "connection": "keep-alive" + }, + "response": "[\n {\n \"name\": \"42-line-bible.jpg\",\n \"path\": \"static/media/42-line-bible.jpg\",\n \"sha\": \"41c8d12f9ca5864beb827c381fbeff935209d5fb\",\n \"size\": 671242,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/contents/static/media/42-line-bible.jpg?ref=master\",\n \"html_url\": \"https://github.com/forkOwner/repo/blob/master/static/media/42-line-bible.jpg\",\n \"git_url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/41c8d12f9ca5864beb827c381fbeff935209d5fb\",\n \"download_url\": \"https://raw.githubusercontent.com/forkOwner/repo/master/static/media/42-line-bible.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/forkOwner/repo/contents/static/media/42-line-bible.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/41c8d12f9ca5864beb827c381fbeff935209d5fb\",\n \"html\": \"https://github.com/forkOwner/repo/blob/master/static/media/42-line-bible.jpg\"\n }\n },\n {\n \"name\": \"gutenberg.jpg\",\n \"path\": \"static/media/gutenberg.jpg\",\n \"sha\": \"04315e355873ea5d358d9c371c39a6845c1ae4ae\",\n \"size\": 155002,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/contents/static/media/gutenberg.jpg?ref=master\",\n \"html_url\": \"https://github.com/forkOwner/repo/blob/master/static/media/gutenberg.jpg\",\n \"git_url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/04315e355873ea5d358d9c371c39a6845c1ae4ae\",\n \"download_url\": \"https://raw.githubusercontent.com/forkOwner/repo/master/static/media/gutenberg.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/forkOwner/repo/contents/static/media/gutenberg.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/04315e355873ea5d358d9c371c39a6845c1ae4ae\",\n \"html\": \"https://github.com/forkOwner/repo/blob/master/static/media/gutenberg.jpg\"\n }\n },\n {\n \"name\": \"image-0.jpg\",\n \"path\": \"static/media/image-0.jpg\",\n \"sha\": \"b70a1b64fd4fa9635823231a0ba92c6dc9393f16\",\n \"size\": 660287,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/contents/static/media/image-0.jpg?ref=master\",\n \"html_url\": \"https://github.com/forkOwner/repo/blob/master/static/media/image-0.jpg\",\n \"git_url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/b70a1b64fd4fa9635823231a0ba92c6dc9393f16\",\n \"download_url\": \"https://raw.githubusercontent.com/forkOwner/repo/master/static/media/image-0.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/forkOwner/repo/contents/static/media/image-0.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/b70a1b64fd4fa9635823231a0ba92c6dc9393f16\",\n \"html\": \"https://github.com/forkOwner/repo/blob/master/static/media/image-0.jpg\"\n }\n },\n {\n \"name\": \"image-1.jpg\",\n \"path\": \"static/media/image-1.jpg\",\n \"sha\": \"05eedae372b829c62501ac751b2d42dcc432541b\",\n \"size\": 392411,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/contents/static/media/image-1.jpg?ref=master\",\n \"html_url\": \"https://github.com/forkOwner/repo/blob/master/static/media/image-1.jpg\",\n \"git_url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/05eedae372b829c62501ac751b2d42dcc432541b\",\n \"download_url\": \"https://raw.githubusercontent.com/forkOwner/repo/master/static/media/image-1.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/forkOwner/repo/contents/static/media/image-1.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/05eedae372b829c62501ac751b2d42dcc432541b\",\n \"html\": \"https://github.com/forkOwner/repo/blob/master/static/media/image-1.jpg\"\n }\n },\n {\n \"name\": \"image-2.jpg\",\n \"path\": \"static/media/image-2.jpg\",\n \"sha\": \"53845ed35faf8939bea242bb85eda7c324b1be0b\",\n \"size\": 99147,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/contents/static/media/image-2.jpg?ref=master\",\n \"html_url\": \"https://github.com/forkOwner/repo/blob/master/static/media/image-2.jpg\",\n \"git_url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/53845ed35faf8939bea242bb85eda7c324b1be0b\",\n \"download_url\": \"https://raw.githubusercontent.com/forkOwner/repo/master/static/media/image-2.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/forkOwner/repo/contents/static/media/image-2.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/53845ed35faf8939bea242bb85eda7c324b1be0b\",\n \"html\": \"https://github.com/forkOwner/repo/blob/master/static/media/image-2.jpg\"\n }\n },\n {\n \"name\": \"image-3.jpg\",\n \"path\": \"static/media/image-3.jpg\",\n \"sha\": \"8b2339d97069e826fae1f156212e40ae458454e3\",\n \"size\": 358022,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/contents/static/media/image-3.jpg?ref=master\",\n \"html_url\": \"https://github.com/forkOwner/repo/blob/master/static/media/image-3.jpg\",\n \"git_url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/8b2339d97069e826fae1f156212e40ae458454e3\",\n \"download_url\": \"https://raw.githubusercontent.com/forkOwner/repo/master/static/media/image-3.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/forkOwner/repo/contents/static/media/image-3.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/8b2339d97069e826fae1f156212e40ae458454e3\",\n \"html\": \"https://github.com/forkOwner/repo/blob/master/static/media/image-3.jpg\"\n }\n },\n {\n \"name\": \"image-4.jpg\",\n \"path\": \"static/media/image-4.jpg\",\n \"sha\": \"a8f6f21253a67a4284b5a953b2fe633d44152ecd\",\n \"size\": 114837,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/contents/static/media/image-4.jpg?ref=master\",\n \"html_url\": \"https://github.com/forkOwner/repo/blob/master/static/media/image-4.jpg\",\n \"git_url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/a8f6f21253a67a4284b5a953b2fe633d44152ecd\",\n \"download_url\": \"https://raw.githubusercontent.com/forkOwner/repo/master/static/media/image-4.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/forkOwner/repo/contents/static/media/image-4.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/a8f6f21253a67a4284b5a953b2fe633d44152ecd\",\n \"html\": \"https://github.com/forkOwner/repo/blob/master/static/media/image-4.jpg\"\n }\n },\n {\n \"name\": \"movable-type.jpg\",\n \"path\": \"static/media/movable-type.jpg\",\n \"sha\": \"57b4e925ea00bd8e195cf4418eb6eb2995ea5f10\",\n \"size\": 559028,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/contents/static/media/movable-type.jpg?ref=master\",\n \"html_url\": \"https://github.com/forkOwner/repo/blob/master/static/media/movable-type.jpg\",\n \"git_url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/57b4e925ea00bd8e195cf4418eb6eb2995ea5f10\",\n \"download_url\": \"https://raw.githubusercontent.com/forkOwner/repo/master/static/media/movable-type.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/forkOwner/repo/contents/static/media/movable-type.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/57b4e925ea00bd8e195cf4418eb6eb2995ea5f10\",\n \"html\": \"https://github.com/forkOwner/repo/blob/master/static/media/movable-type.jpg\"\n }\n },\n {\n \"name\": \"printing-press.jpg\",\n \"path\": \"static/media/printing-press.jpg\",\n \"sha\": \"d27f56c9437d9becd2f56cc627c9322c2f1f61f6\",\n \"size\": 279283,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/contents/static/media/printing-press.jpg?ref=master\",\n \"html_url\": \"https://github.com/forkOwner/repo/blob/master/static/media/printing-press.jpg\",\n \"git_url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/d27f56c9437d9becd2f56cc627c9322c2f1f61f6\",\n \"download_url\": \"https://raw.githubusercontent.com/forkOwner/repo/master/static/media/printing-press.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/forkOwner/repo/contents/static/media/printing-press.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/d27f56c9437d9becd2f56cc627c9322c2f1f61f6\",\n \"html\": \"https://github.com/forkOwner/repo/blob/master/static/media/printing-press.jpg\"\n }\n },\n {\n \"name\": \"type-through-time.jpg\",\n \"path\": \"static/media/type-through-time.jpg\",\n \"sha\": \"3f08366a805c51a60ec5056010f22de4ba08abaa\",\n \"size\": 117689,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/contents/static/media/type-through-time.jpg?ref=master\",\n \"html_url\": \"https://github.com/forkOwner/repo/blob/master/static/media/type-through-time.jpg\",\n \"git_url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/3f08366a805c51a60ec5056010f22de4ba08abaa\",\n \"download_url\": \"https://raw.githubusercontent.com/forkOwner/repo/master/static/media/type-through-time.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/forkOwner/repo/contents/static/media/type-through-time.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/3f08366a805c51a60ec5056010f22de4ba08abaa\",\n \"html\": \"https://github.com/forkOwner/repo/blob/master/static/media/type-through-time.jpg\"\n }\n }\n]\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/forkOwner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043?ts=0", + "headers": { + "Date": "Wed, 11 Sep 2019 06:22:34 GMT", + "Content-Type": "text/plain; charset=iso-8859-1", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4919", + "X-RateLimit-Reset": "1568186244", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"ea72b2ba12e74f7d20ccab737e3d3698\"", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A1E:244EB:2A71FAA:33B6B41:5D7892A9", + "content-length": "1707", + "connection": "keep-alive" + }, + "response": "---\ntitle: Perfecting the Art of Perfection\ndate: \"2016-09-01T23:46:37.121Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Design Inspiration\"\ntags:\n - \"Handwriting\"\n - \"Learning to write\"\ndescription: \"Quisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\"\ncanonical: ''\n---\n\nQuisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\n\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-2.jpg)\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. \n\nPraesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/forkOwner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9?ts=0", + "headers": { + "Date": "Wed, 11 Sep 2019 06:22:34 GMT", + "Content-Type": "text/plain; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4918", + "X-RateLimit-Reset": "1568186244", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"88b7f6d3ffbd2b089766cabe7b8bad3b\"", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A1C:9D21:290784A:3225120:5D7892A9", + "content-length": "2565", + "connection": "keep-alive" + }, + "response": "---\ntitle: The Origins of Social Stationery Lettering\ndate: \"2016-12-01T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Design Culture\"\ndescription: \"Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante.\"\ncanonical: ''\n---\n\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\n\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-3.jpg)\n\n## Header Level 2\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \n\n
\n\t
\n\t\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\n\t\t
\n\t\t\t— Aliquam tincidunt mauris eu risus.\n\t\t
\n\t
\n
\n\n### Header Level 3\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\n\n```css\n#header h1 a {\n display: block;\n width: 300px;\n height: 80px;\n}\n```\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/forkOwner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5?ts=0", + "headers": { + "Date": "Wed, 11 Sep 2019 06:22:35 GMT", + "Content-Type": "text/plain; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4917", + "X-RateLimit-Reset": "1568186244", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"fd57f3a860149dad96a596e31398a809\"", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A2E:244E7:1F48EA6:264611D:5D7892AB", + "content-length": "2786", + "connection": "keep-alive" + }, + "response": "---\ntitle: \"A Brief History of Typography\"\ndate: \"2016-02-02T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Design Inspiration\"\ntags:\n - \"Linotype\"\n - \"Monotype\"\n - \"History of typography\"\n - \"Helvetica\"\ndescription: \"Morbi in sem quis dui placerat ornare. Pellentesque odio nisi, euismod in, pharetra a, ultricies in, diam. Sed arcu. Cras consequat.\"\ncanonical: ''\n---\n\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\n\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-0.jpg)\n\n## Header Level 2\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \n\n
\n\t
\n\t\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\n\t\t
\n\t\t\t— Aliquam tincidunt mauris eu risus.\n\t\t
\n\t
\n
\n\n### Header Level 3\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\n\n```css\n#header h1 a {\n display: block;\n width: 300px;\n height: 80px;\n}\n```\n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/forkOwner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774?ts=0", + "headers": { + "Date": "Wed, 11 Sep 2019 06:22:36 GMT", + "Content-Type": "text/plain; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4916", + "X-RateLimit-Reset": "1568186244", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"3cd1cb72a7e61c4921ca6a2031ad36a4\"", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A2A:B4DC:1309BEF:172E734:5D7892AB", + "content-length": "7465", + "connection": "keep-alive" + }, + "response": "---\ntitle: Humane Typography in the Digital Age\ndate: \"2017-08-19T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Typography\"\ntags:\n - \"Design\"\n - \"Typography\"\n - \"Web Development\"\ndescription: \"An Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\"\ncanonical: ''\n---\n\n- [The first transition](#the-first-transition)\n- [The digital age](#the-digital-age)\n- [Loss of humanity through transitions](#loss-of-humanity-through-transitions)\n- [Chasing perfection](#chasing-perfection)\n\nAn Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\n\nThe typography of this industrial age was no longer handcrafted. Mass production and profit became more important. Quantity mattered more than the quality. The books and printed works in general lost a part of its humanity. The typefaces were not produced by craftsmen anymore. It was the machines printing and tying the books together now. The craftsmen had to let go of their craft and became a cog in the process. An extension of the industrial machine.\n\nBut the victory of the industrialism didn’t mean that the craftsmen were completely extinct. The two worlds continued to coexist independently. Each recognising the good in the other — the power of industrialism and the humanity of craftsmanship. This was the second transition that would strip typography of a part of its humanity. We have to go 500 years back in time to meet the first one.\n\n## The first transition\n\nA similar conflict emerged after the invention of the first printing press in Europe. Johannes Gutenberg invented movable type and used it to produce different compositions. His workshop could print up to 240 impressions per hour. Until then, the books were being copied by hand. All the books were handwritten and decorated with hand drawn ornaments and figures. A process of copying a book was long but each book, even a copy, was a work of art.\n\nThe first printed books were, at first, perceived as inferior to the handwritten ones. They were smaller and cheaper to produce. Movable type provided the printers with flexibility that allowed them to print books in languages other than Latin. Gill describes the transition to industrialism as something that people needed and wanted. Something similar happened after the first printed books emerged. People wanted books in a language they understood and they wanted books they could take with them. They were hungry for knowledge and printed books satisfied this hunger.\n\n![42-line-bible.jpg](/media/42-line-bible.jpg)\n\n*The 42–Line Bible, printed by Gutenberg.*\n\nBut, through this transition, the book lost a large part of its humanity. The machine took over most of the process but craftsmanship was still a part of it. The typefaces were cut manually by the first punch cutters. The paper was made by hand. The illustrations and ornaments were still being hand drawn. These were the remains of the craftsmanship that went almost extinct in the times of Eric Gill.\n\n## The digital age\n\nThe first transition took away a large part of humanity from written communication. Industrialisation, the second transition described by Eric Gill, took away most of what was left. But it’s the third transition that stripped it naked. Typefaces are faceless these days. They’re just fonts on our computers. Hardly anyone knows their stories. Hardly anyone cares. Flicking through thousands of typefaces and finding the “right one” is a matter of minutes.\n\n> In the new computer age the proliferation of typefaces and type manipulations represents a new level of visual pollution threatening our culture. Out of thousands of typefaces, all we need are a few basic ones, and trash the rest.\n>\n— Massimo Vignelli\n\nTypography is not about typefaces. It’s not about what looks best, it’s about what feels right. What communicates the message best. Typography, in its essence, is about the message. “Typographical design should perform optically what the speaker creates through voice and gesture of his thoughts.”, as El Lissitzky, a famous Russian typographer, put it.\n\n## Loss of humanity through transitions\n\nEach transition took away a part of humanity from written language. Handwritten books being the most humane form and the digital typefaces being the least. Overuse of Helvetica is a good example. Messages are being told in a typeface just because it’s a safe option. It’s always there. Everyone knows it but yet, nobody knows it. Stop someone on the street and ask him what Helvetica is? Ask a designer the same question. Ask him where it came from, when, why and who designed it. Most of them will fail to answer these questions. Most of them used it in their precious projects but they still don’t spot it in the street.\n\n
\n\t
\n\t\t

Knowledge of the quality of a typeface is of the greatest importance for the functional, aesthetic and psychological effect.

\n\t\t
\n\t\t\t— Josef Mueller-Brockmann\n\t\t
\n\t
\n
\n\nTypefaces don’t look handmade these days. And that’s all right. They don’t have to. Industrialism took that away from them and we’re fine with it. We’ve traded that part of humanity for a process that produces more books that are easier to read. That can’t be bad. And it isn’t.\n\n> Humane typography will often be comparatively rough and even uncouth; but while a certain uncouthness does not seriously matter in humane works, uncouthness has no excuse whatever in the productions of the machine.\n>\n> — Eric Gill\n\nWe’ve come close to “perfection” in the last five centuries. The letters are crisp and without rough edges. We print our compositions with high–precision printers on a high quality, machine made paper.\n\n![type-through-time.jpg](/media/type-through-time.jpg)\n\n*Type through 5 centuries.*\n\nWe lost a part of ourselves because of this chase after perfection. We forgot about the craftsmanship along the way. And the worst part is that we don’t care. The transition to the digital age made that clear. We choose typefaces like clueless zombies. There’s no meaning in our work. Type sizes, leading, margins… It’s all just a few clicks or lines of code. The message isn’t important anymore. There’s no more “why” behind the “what”.\n\n## Chasing perfection\n\nHuman beings aren’t perfect. Perfection is something that will always elude us. There will always be a small part of humanity in everything we do. No matter how small that part, we should make sure that it transcends the limits of the medium. We have to think about the message first. What typeface should we use and why? Does the typeface match the message and what we want to communicate with it? What will be the leading and why? Will there be more typefaces in our design? On what ground will they be combined? What makes our design unique and why? This is the part of humanity that is left in typography. It might be the last part. Are we really going to give it up?\n\n*Originally published by [Matej Latin](http://matejlatin.co.uk/) on [Medium](https://medium.com/design-notes/humane-typography-in-the-digital-age-9bd5c16199bd?ref=webdesignernews.com#.lygo82z0x).*", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/forkOwner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044?ts=0", + "headers": { + "Date": "Wed, 11 Sep 2019 06:22:36 GMT", + "Content-Type": "text/plain; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4915", + "X-RateLimit-Reset": "1568186244", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"3caef061a429c3338cb85faf62eacb0d\"", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A2C:3ED77:12BD3C5:16CCF74:5D7892AB", + "content-length": "16071", + "connection": "keep-alive" + }, + "response": "---\ntitle: \"Johannes Gutenberg: The Birth of Movable Type\"\ndate: \"2017-08-18T22:12:03.284Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Typography\"\ntags:\n - \"Open source\"\n - \"Gatsby\"\n - \"Typography\"\ndescription: \"German inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\"\ncanonical: ''\n---\n\nGerman inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\n\n**Johannes Gensfleisch zur Laden zum Gutenberg** (c. 1398 – 1468) was a German blacksmith, goldsmith, printer, and publisher who introduced printing to Europe. His invention of mechanical movable type printing started the Printing Revolution and is widely regarded as the most important event of the modern period. It played a key role in the development of the Renaissance, Reformation, the Age of Enlightenment, and the Scientific revolution and laid the material basis for the modern knowledge-based economy and the spread of learning to the masses.\n\n
\n\t\"Gutenberg\"\n\t
Johannes Gutenberg
\n
\n\nWith his invention of the printing press, Gutenberg was the first European to use movable type printing, in around 1439. Among his many contributions to printing are: the invention of a process for mass-producing movable type; the use of oil-based ink; and the use of a wooden printing press similar to the agricultural screw presses of the period. His truly epochal invention was the combination of these elements into a practical system that allowed the mass production of printed books and was economically viable for printers and readers alike. Gutenberg's method for making type is traditionally considered to have included a type metal alloy and a hand mould for casting type. The alloy was a mixture of lead, tin, and antimony that melted at a relatively low temperature for faster and more economical casting, cast well, and created a durable type.\n\nIn Renaissance Europe, the arrival of mechanical movable type printing introduced the era of mass communication which permanently altered the structure of society. The relatively unrestricted circulation of information — including revolutionary ideas — transcended borders, captured the masses in the Reformation and threatened the power of political and religious authorities; the sharp increase in literacy broke the monopoly of the literate elite on education and learning and bolstered the emerging middle class. Across Europe, the increasing cultural self-awareness of its people led to the rise of proto-nationalism, accelerated by the flowering of the European vernacular languages to the detriment of Latin's status as lingua franca. In the 19th century, the replacement of the hand-operated Gutenberg-style press by steam-powered rotary presses allowed printing on an industrial scale, while Western-style printing was adopted all over the world, becoming practically the sole medium for modern bulk printing.\n\nThe use of movable type was a marked improvement on the handwritten manuscript, which was the existing method of book production in Europe, and upon woodblock printing, and revolutionized European book-making. Gutenberg's printing technology spread rapidly throughout Europe and later the world.\n\nHis major work, the Gutenberg Bible (also known as the 42-line Bible), has been acclaimed for its high aesthetic and technical quality.\n\n## Printing Press\n\nAround 1439, Gutenberg was involved in a financial misadventure making polished metal mirrors (which were believed to capture holy light from religious relics) for sale to pilgrims to Aachen: in 1439 the city was planning to exhibit its collection of relics from Emperor Charlemagne but the event was delayed by one year due to a severe flood and the capital already spent could not be repaid. When the question of satisfying the investors came up, Gutenberg is said to have promised to share a “secret”. It has been widely speculated that this secret may have been the idea of printing with movable type. Also around 1439–1440, the Dutch Laurens Janszoon Coster came up with the idea of printing. Legend has it that the idea came to him “like a ray of light”.\n\n
\n\t\"Early\n\t
Early wooden printing press as depicted in 1568.
\n
\n\nUntil at least 1444 he lived in Strasbourg, most likely in the St. Arbogast parish. It was in Strasbourg in 1440 that Gutenberg is said to have perfected and unveiled the secret of printing based on his research, mysteriously entitled Kunst und Aventur (art and enterprise). It is not clear what work he was engaged in, or whether some early trials with printing from movable type may have been conducted there. After this, there is a gap of four years in the record. In 1448, he was back in Mainz, where he took out a loan from his brother-in-law Arnold Gelthus, quite possibly for a printing press or related paraphernalia. By this date, Gutenberg may have been familiar with intaglio printing; it is claimed that he had worked on copper engravings with an artist known as the Master of Playing Cards.\n\nBy 1450, the press was in operation, and a German poem had been printed, possibly the first item to be printed there. Gutenberg was able to convince the wealthy moneylender Johann Fust for a loan of 800 guilders. Peter Schöffer, who became Fust’s son-in-law, also joined the enterprise. Schöffer had worked as a scribe in Paris and is believed to have designed some of the first typefaces.\n\n
\n\t
\n\t\t

All that has been written to me about that marvelous man seen at Frankfurt is true. I have not seen complete Bibles but only a number of quires of various books of the Bible. The script was very neat and legible, not at all difficult to follow—your grace would be able to read it without effort, and indeed without glasses.

\n\t\t
\n\t\t\t—Future pope Pius II in a letter to Cardinal Carvajal, March 1455\n\t\t
\n\t
\n
\n\nGutenberg's workshop was set up at Hof Humbrecht, a property belonging to a distant relative. It is not clear when Gutenberg conceived the Bible project, but for this he borrowed another 800 guilders from Fust, and work commenced in 1452. At the same time, the press was also printing other, more lucrative texts (possibly Latin grammars). There is also some speculation that there may have been two presses, one for the pedestrian texts, and one for the Bible. One of the profit-making enterprises of the new press was the printing of thousands of indulgences for the church, documented from 1454–55.\n\nIn 1455 Gutenberg completed his 42-line Bible, known as the Gutenberg Bible. About 180 copies were printed, most on paper and some on vellum.\n\n## Court Case\n\nSome time in 1456, there was a dispute between Gutenberg and Fust, and Fust demanded his money back, accusing Gutenberg of misusing the funds. Meanwhile the expenses of the Bible project had proliferated, and Gutenberg's debt now exceeded 20,000 guilders. Fust sued at the archbishop's court. A November 1455 legal document records that there was a partnership for a \"project of the books,\" the funds for which Gutenberg had used for other purposes, according to Fust. The court decided in favor of Fust, giving him control over the Bible printing workshop and half of all printed Bibles.\n\nThus Gutenberg was effectively bankrupt, but it appears he retained (or re-started) a small printing shop, and participated in the printing of a Bible in the town of Bamberg around 1459, for which he seems at least to have supplied the type. But since his printed books never carry his name or a date, it is difficult to be certain, and there is consequently a considerable scholarly debate on this subject. It is also possible that the large Catholicon dictionary, 300 copies of 754 pages, printed in Mainz in 1460, may have been executed in his workshop.\n\nMeanwhile, the Fust–Schöffer shop was the first in Europe to bring out a book with the printer's name and date, the Mainz Psalter of August 1457, and while proudly proclaiming the mechanical process by which it had been produced, it made no mention of Gutenberg.\n\n## Later Life\n\nIn 1462, during a conflict between two archbishops, Mainz was sacked by archbishop Adolph von Nassau, and Gutenberg was exiled. An old man by now, he moved to Eltville where he may have initiated and supervised a new printing press belonging to the brothers Bechtermünze.\n\nIn January 1465, Gutenberg's achievements were recognized and he was given the title Hofmann (gentleman of the court) by von Nassau. This honor included a stipend, an annual court outfit, as well as 2,180 litres of grain and 2,000 litres of wine tax-free. It is believed he may have moved back to Mainz around this time, but this is not certain.\n\n***\n\nGutenberg died in 1468 and was buried in the Franciscan church at Mainz, his contributions largely unknown. This church and the cemetery were later destroyed, and Gutenberg's grave is now lost.\n\nIn 1504, he was mentioned as the inventor of typography in a book by Professor Ivo Wittig. It was not until 1567 that the first portrait of Gutenberg, almost certainly an imaginary reconstruction, appeared in Heinrich Pantaleon's biography of famous Germans.\n\n## Printing Method With Movable Type\n\nGutenberg's early printing process, and what tests he may have made with movable type, are not known in great detail. His later Bibles were printed in such a way as to have required large quantities of type, some estimates suggesting as many as 100,000 individual sorts. Setting each page would take, perhaps, half a day, and considering all the work in loading the press, inking the type, pulling the impressions, hanging up the sheets, distributing the type, etc., it is thought that the Gutenberg–Fust shop might have employed as many as 25 craftsmen.\n\n![Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5](/media/movable-type.jpg)\n\n*Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5*\n\nGutenberg's technique of making movable type remains unclear. In the following decades, punches and copper matrices became standardized in the rapidly disseminating printing presses across Europe. Whether Gutenberg used this sophisticated technique or a somewhat primitive version has been the subject of considerable debate.\n\nIn the standard process of making type, a hard metal punch (made by punchcutting, with the letter carved back to front) is hammered into a softer copper bar, creating a matrix. This is then placed into a hand-held mould and a piece of type, or \"sort\", is cast by filling the mould with molten type-metal; this cools almost at once, and the resulting piece of type can be removed from the mould. The matrix can be reused to create hundreds, or thousands, of identical sorts so that the same character appearing anywhere within the book will appear very uniform, giving rise, over time, to the development of distinct styles of typefaces or fonts. After casting, the sorts are arranged into type-cases, and used to make up pages which are inked and printed, a procedure which can be repeated hundreds, or thousands, of times. The sorts can be reused in any combination, earning the process the name of “movable type”.\n\nThe invention of the making of types with punch, matrix and mold has been widely attributed to Gutenberg. However, recent evidence suggests that Gutenberg's process was somewhat different. If he used the punch and matrix approach, all his letters should have been nearly identical, with some variations due to miscasting and inking. However, the type used in Gutenberg's earliest work shows other variations.\n\n
\n\t
\n\t\t

It is a press, certainly, but a press from which shall flow in inexhaustible streams… Through it, god will spread his word.

\n\t\t
\n\t\t\t—Johannes Gutenberg\n\t\t
\n\t
\n
\n\nIn 2001, the physicist Blaise Agüera y Arcas and Princeton librarian Paul Needham, used digital scans of a Papal bull in the Scheide Library, Princeton, to carefully compare the same letters (types) appearing in different parts of the printed text. The irregularities in Gutenberg's type, particularly in simple characters such as the hyphen, suggested that the variations could not have come from either ink smear or from wear and damage on the pieces of metal on the types themselves. While some identical types are clearly used on other pages, other variations, subjected to detailed image analysis, suggested that they could not have been produced from the same matrix. Transmitted light pictures of the page also appeared to reveal substructures in the type that could not arise from traditional punchcutting techniques. They hypothesized that the method may have involved impressing simple shapes to create alphabets in “cuneiform” style in a matrix made of some soft material, perhaps sand. Casting the type would destroy the mould, and the matrix would need to be recreated to make each additional sort. This could explain the variations in the type, as well as the substructures observed in the printed images.\n\nThus, they feel that “the decisive factor for the birth of typography”, the use of reusable moulds for casting type, might have been a more progressive process than was previously thought. They suggest that the additional step of using the punch to create a mould that could be reused many times was not taken until twenty years later, in the 1470s. Others have not accepted some or all of their suggestions, and have interpreted the evidence in other ways, and the truth of the matter remains very uncertain.\n\nA 1568 history by Hadrianus Junius of Holland claims that the basic idea of the movable type came to Gutenberg from Laurens Janszoon Coster via Fust, who was apprenticed to Coster in the 1430s and may have brought some of his equipment from Haarlem to Mainz. While Coster appears to have experimented with moulds and castable metal type, there is no evidence that he had actually printed anything with this technology. He was an inventor and a goldsmith. However, there is one indirect supporter of the claim that Coster might be the inventor. The author of the Cologne Chronicle of 1499 quotes Ulrich Zell, the first printer of Cologne, that printing was performed in Mainz in 1450, but that some type of printing of lower quality had previously occurred in the Netherlands. However, the chronicle does not mention the name of Coster, while it actually credits Gutenberg as the \"first inventor of printing\" in the very same passage (fol. 312). The first securely dated book by Dutch printers is from 1471, and the Coster connection is today regarded as a mere legend.\n\nThe 19th century printer and typefounder Fournier Le Jeune suggested that Gutenberg might not have been using type cast with a reusable matrix, but possibly wooden types that were carved individually. A similar suggestion was made by Nash in 2004. This remains possible, albeit entirely unproven.\n\nIt has also been questioned whether Gutenberg used movable types at all. In 2004, Italian professor Bruno Fabbiani claimed that examination of the 42-line Bible revealed an overlapping of letters, suggesting that Gutenberg did not in fact use movable type (individual cast characters) but rather used whole plates made from a system somewhat like a modern typewriter, whereby the letters were stamped successively into the plate and then printed. However, most specialists regard the occasional overlapping of type as caused by paper movement over pieces of type of slightly unequal height.", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/forkOwner/repo/contents/forkOwner/repo/posts/1970-01-01-first-title.json?ts=300&ref=refs/meta/_netlify_cms", + "headers": { + "Date": "Wed, 11 Sep 2019 06:22:39 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "404 Not Found", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4914", + "X-RateLimit-Reset": "1568186244", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A32:9D20:1EE138C:25D1DA0:5D7892AF", + "content-length": "144", + "connection": "keep-alive" + }, + "response": "{\n \"message\": \"No commit found for the ref refs/meta/_netlify_cms\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/\"\n}\n", + "status": 404 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=master", + "headers": { + "Date": "Wed, 11 Sep 2019 06:22:40 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "404 Not Found", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4913", + "X-RateLimit-Reset": "1568186244", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A34:B4DA:911244:B142B2:5D7892B0", + "content-length": "116", + "connection": "keep-alive" + }, + "response": "{\n \"message\": \"Not Found\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/#get-contents\"\n}\n", + "status": 404 + }, + { + "body": "{\"content\":\"LS0tCnRlbXBsYXRlOiBwb3N0CnRpdGxlOiBmaXJzdCB0aXRsZQpkcmFmdDogdHJ1ZQpkYXRlOiAxOTcwLTAxLTAxVDAwOjAwOjAwLjAwMFoKZGVzY3JpcHRpb246IGZpcnN0IGRlc2NyaXB0aW9uCmNhdGVnb3J5OiBmaXJzdCBjYXRlZ29yeQp0YWdzOgogIC0gdGFnMQotLS0KZmlyc3QgYm9keQo=\",\"encoding\":\"base64\"}", + "method": "POST", + "url": "/repos/forkOwner/repo/git/blobs?ts=300", + "headers": { + "Date": "Wed, 11 Sep 2019 06:22:41 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "212", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4912", + "X-RateLimit-Reset": "1568186244", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"c35fe4d558a23f5048b86182bc9941e3\"", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/forkOwner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A37:244DB:BA73C:E8DF1:5D7892B0", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"a041245814892e3f73f63ca54333fda649b7fc0b\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b\"\n}\n", + "status": 201 + }, + { + "method": "GET", + "url": "/repos/forkOwner/repo/branches/master?ts=300", + "headers": { + "Date": "Wed, 11 Sep 2019 06:22:41 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4911", + "X-RateLimit-Reset": "1568186244", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"72ec4912491eeff1eba6811aff86bb08\"", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A38:2B15:87906B:A51F2B:5D7892B1", + "content-length": "6021", + "connection": "keep-alive" + }, + "response": "{\n \"name\": \"master\",\n \"commit\": {\n \"sha\": \"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NzM4Mjc5OjcyNjE3MmRlYWU5OWM4YTJjZWE0YzcxZTczNGEwMmE3OTNkNGQ5ZTU=\",\n \"commit\": {\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-08T09:08:14Z\"\n },\n \"committer\": {\n \"name\": \"GitHub\",\n \"email\": \"noreply@github.com\",\n \"date\": \"2019-09-08T09:08:14Z\"\n },\n \"message\": \"Merge pull request #10 from owner/chore/update_dependencies\\n\\nChore: update dependencies\",\n \"tree\": {\n \"sha\": \"c5b7f6d674ba193bb7b4a5fcf4933034e1b7f2b7\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/c5b7f6d674ba193bb7b4a5fcf4933034e1b7f2b7\"\n },\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"comment_count\": 0,\n \"verification\": {\n \"verified\": true,\n \"reason\": \"valid\",\n \"signature\": \"-----BEGIN PGP SIGNATURE-----\\n\\nwsBcBAABCAAQBQJddMT+CRBK7hj4Ov3rIwAAdHIIABWcobVYZFMuqSPezceRaKDr\\npXGqxvB3WLiIrvsQiBz2si9SvufXxLUdq72iaYTbXMCqIAAIBDNwHLltOKcbUF9J\\nKa8pD6cq7jpNyZfhI8xlapMwEZPu53as0tSvwdOnl/0iL+WYjUZUFQR+vrWEmllu\\nhIES9QxU2nk5zcS7t8sFRA+sJdll8GzzhoWYkpw3wgqpxCzJdf5HJS0tWyVCZM5U\\nCgSpSgTvz9bALnQxu7YVrfLGEvi8S7LaOEz5HQc+TV1hNR2dfl5hhiHhWQ1Rsx5w\\nUECV01vItNWhx2dyMn77hIu/G+bTH89WZDU+CmifsNkmvkq90fk4eNt8Hg1mxn4=\\n=6ayM\\n-----END PGP SIGNATURE-----\\n\",\n \"payload\": \"tree c5b7f6d674ba193bb7b4a5fcf4933034e1b7f2b7\\nparent 8ade583d7c02e7769dd685ca64c10851c09f51cf\\nparent 4940957ff42b034d8c47d64b383c34548a34fbb5\\nauthor owner 1567933694 +0300\\ncommitter GitHub 1567933694 +0300\\n\\nMerge pull request #10 from owner/chore/update_dependencies\\n\\nChore: update dependencies\"\n }\n },\n \"url\": \"https://api.github.com/repos/forkOwner/repo/commits/726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"comments_url\": \"https://api.github.com/repos/forkOwner/repo/commits/726172deae99c8a2cea4c71e734a02a793d4d9e5/comments\",\n \"author\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"committer\": {\n \"login\": \"web-flow\",\n \"id\": 19864447,\n \"node_id\": \"MDQ6VXNlcjE5ODY0NDQ3\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/web-flow\",\n \"html_url\": \"https://github.com/web-flow\",\n \"followers_url\": \"https://api.github.com/users/web-flow/followers\",\n \"following_url\": \"https://api.github.com/users/web-flow/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/web-flow/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/web-flow/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/web-flow/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/web-flow/orgs\",\n \"repos_url\": \"https://api.github.com/users/web-flow/repos\",\n \"events_url\": \"https://api.github.com/users/web-flow/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/web-flow/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"parents\": [\n {\n \"sha\": \"8ade583d7c02e7769dd685ca64c10851c09f51cf\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/commits/8ade583d7c02e7769dd685ca64c10851c09f51cf\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/8ade583d7c02e7769dd685ca64c10851c09f51cf\"\n },\n {\n \"sha\": \"4940957ff42b034d8c47d64b383c34548a34fbb5\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/commits/4940957ff42b034d8c47d64b383c34548a34fbb5\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/4940957ff42b034d8c47d64b383c34548a34fbb5\"\n }\n ]\n },\n \"_links\": {\n \"self\": \"https://api.github.com/repos/forkOwner/repo/branches/master\",\n \"html\": \"https://github.com/forkOwner/repo/tree/master\"\n },\n \"protected\": false,\n \"protection\": {\n \"enabled\": false,\n \"required_status_checks\": {\n \"enforcement_level\": \"off\",\n \"contexts\": [\n\n ]\n }\n },\n \"protection_url\": \"https://api.github.com/repos/forkOwner/repo/branches/master/protection\"\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/forkOwner/repo/git/trees/726172deae99c8a2cea4c71e734a02a793d4d9e5?ts=300", + "headers": { + "Date": "Wed, 11 Sep 2019 06:22:42 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4910", + "X-RateLimit-Reset": "1568186244", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"395733f4c42dea1d51409ca01e892db1\"", + "Last-Modified": "Wed, 11 Sep 2019 06:22:29 GMT", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A3B:1510F:1FC079A:26BC7B9:5D7892B2", + "content-length": "11959", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"tree\": [\n {\n \"path\": \".circleci\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"e5e9af3301cac61f120b8e4d40b1733c7a45685a\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/e5e9af3301cac61f120b8e4d40b1733c7a45685a\"\n },\n {\n \"path\": \".eslintignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"80b4531b026d19f8fa589efd122e76199d23f967\",\n \"size\": 39,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/80b4531b026d19f8fa589efd122e76199d23f967\"\n },\n {\n \"path\": \".eslintrc.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"370684994aaed5b858da3a006f48cfa57e88fd27\",\n \"size\": 414,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/370684994aaed5b858da3a006f48cfa57e88fd27\"\n },\n {\n \"path\": \".flowconfig\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14aa2ac4cc0e15223ad98630a6f1325fc81f8043\",\n \"size\": 283,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/14aa2ac4cc0e15223ad98630a6f1325fc81f8043\"\n },\n {\n \"path\": \".gitattributes\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"10a369ddf4f603337cabc6f21646508323941ce1\",\n \"size\": 135,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/10a369ddf4f603337cabc6f21646508323941ce1\"\n },\n {\n \"path\": \".github\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4ebeece548b52b20af59622354530a6d33b50b43\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/4ebeece548b52b20af59622354530a6d33b50b43\"\n },\n {\n \"path\": \".gitignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"c071ba35b0e49899bab6d610a68eef667dbbf157\",\n \"size\": 169,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/c071ba35b0e49899bab6d610a68eef667dbbf157\"\n },\n {\n \"path\": \".prettierignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"393f050e123d998cf8c8b362ff95cc8ac4d250e5\",\n \"size\": 45,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/393f050e123d998cf8c8b362ff95cc8ac4d250e5\"\n },\n {\n \"path\": \".prettierrc\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e52ad05bb13b084d7949dd76e1b2517455162150\",\n \"size\": 223,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/e52ad05bb13b084d7949dd76e1b2517455162150\"\n },\n {\n \"path\": \".stylelintrc.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"4b4c9698d10d756f5faa025659b86375428ed0a7\",\n \"size\": 718,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/4b4c9698d10d756f5faa025659b86375428ed0a7\"\n },\n {\n \"path\": \".vscode\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"286e97ec0113ea8242b41ac222e2c3e8077e6f1e\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/286e97ec0113ea8242b41ac222e2c3e8077e6f1e\"\n },\n {\n \"path\": \"CHANGELOG.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"070a5d4f0eacd2dc0be81ae8996f8982de43046e\",\n \"size\": 2113,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/070a5d4f0eacd2dc0be81ae8996f8982de43046e\"\n },\n {\n \"path\": \"CODE_OF_CONDUCT.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"92bc7565ff0ee145a0041b5179a820f14f39ab22\",\n \"size\": 3355,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/92bc7565ff0ee145a0041b5179a820f14f39ab22\"\n },\n {\n \"path\": \"CONTRIBUTING.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"8552aa241254a61258e1ff9666ab36f32fb1e3b9\",\n \"size\": 3548,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/8552aa241254a61258e1ff9666ab36f32fb1e3b9\"\n },\n {\n \"path\": \"LICENSE\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"42d85938357b49977c126ca03b199129082d4fb8\",\n \"size\": 1091,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/42d85938357b49977c126ca03b199129082d4fb8\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"19df50a78654c8d757ca7f38447aa3d09c7abcce\",\n \"size\": 3698,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/19df50a78654c8d757ca7f38447aa3d09c7abcce\"\n },\n {\n \"path\": \"backend\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\"\n },\n {\n \"path\": \"config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"58afd573bbb69fcca000efd0f5d90b93c93a98dd\",\n \"size\": 853,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/58afd573bbb69fcca000efd0f5d90b93c93a98dd\"\n },\n {\n \"path\": \"content\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/0294ef106c58743907a5c855da1eb0f87b0b6dfc\"\n },\n {\n \"path\": \"flow-typed\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"86c32fd6c3118be5e0dbbb231a834447357236c6\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/86c32fd6c3118be5e0dbbb231a834447357236c6\"\n },\n {\n \"path\": \"flow\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"0af45ad00d155c8d8c7407d913ff85278244c9ce\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/0af45ad00d155c8d8c7407d913ff85278244c9ce\"\n },\n {\n \"path\": \"gatsby-browser.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9bd2c9dce175f04980e91cd9dc295a299e3cdb80\",\n \"size\": 90,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/9bd2c9dce175f04980e91cd9dc295a299e3cdb80\"\n },\n {\n \"path\": \"gatsby-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"353a109dad62e3f25bf9f5e6a2167f21a6c8b459\",\n \"size\": 7228,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/353a109dad62e3f25bf9f5e6a2167f21a6c8b459\"\n },\n {\n \"path\": \"gatsby-node.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14a207883c2093d2cc071bc5a464e165bcc1fead\",\n \"size\": 409,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/14a207883c2093d2cc071bc5a464e165bcc1fead\"\n },\n {\n \"path\": \"gatsby\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4f23c06cd1740bf78304d2c0b29bf6bfdf427981\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/4f23c06cd1740bf78304d2c0b29bf6bfdf427981\"\n },\n {\n \"path\": \"jest\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\"\n },\n {\n \"path\": \"netlify.toml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"599b99cc5700404fde316a7ede829776f23e7d45\",\n \"size\": 137,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/599b99cc5700404fde316a7ede829776f23e7d45\"\n },\n {\n \"path\": \"package.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9d777616438b90a18f1a4ebfd5f114b4c06c6f17\",\n \"size\": 6855,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/9d777616438b90a18f1a4ebfd5f114b4c06c6f17\"\n },\n {\n \"path\": \"postcss-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d216501e9b351a72e00ba0b7459a6500e27e7da2\",\n \"size\": 703,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/d216501e9b351a72e00ba0b7459a6500e27e7da2\"\n },\n {\n \"path\": \"renovate.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"dcc309398785698b8870545c32051a3d72dd8271\",\n \"size\": 460,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/dcc309398785698b8870545c32051a3d72dd8271\"\n },\n {\n \"path\": \"serverless-scripts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ee3701f2fbfc7196ba340f6481d1387d20527898\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/ee3701f2fbfc7196ba340f6481d1387d20527898\"\n },\n {\n \"path\": \"serverless-single-page-app-plugin\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"08763fcfba643a06a452398517019bea4a5850ba\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/08763fcfba643a06a452398517019bea4a5850ba\"\n },\n {\n \"path\": \"serverless.yml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"20b22c5fad229f35d029bf6614d333d82fe8a987\",\n \"size\": 7803,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/20b22c5fad229f35d029bf6614d333d82fe8a987\"\n },\n {\n \"path\": \"src\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"8cdb35a88232c0f32f12f130c92c7cc55f97f471\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/8cdb35a88232c0f32f12f130c92c7cc55f97f471\"\n },\n {\n \"path\": \"static\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"53c6380a600a030d3722bff7ecde36f749fb6964\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/53c6380a600a030d3722bff7ecde36f749fb6964\"\n },\n {\n \"path\": \"utils\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"a592549c9f74db40b51efefcda2fd76810405f27\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/a592549c9f74db40b51efefcda2fd76810405f27\"\n },\n {\n \"path\": \"yarn.lock\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"475c9c1924ca752a0686303e2fdeb7b13ad75f57\",\n \"size\": 793903,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/475c9c1924ca752a0686303e2fdeb7b13ad75f57\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/forkOwner/repo/git/trees/0294ef106c58743907a5c855da1eb0f87b0b6dfc?ts=300", + "headers": { + "Date": "Wed, 11 Sep 2019 06:22:43 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4909", + "X-RateLimit-Reset": "1568186244", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"b165455575c236b0d38e9f56a36c76d1\"", + "Last-Modified": "Wed, 11 Sep 2019 06:22:29 GMT", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A3C:244E4:130F912:172E7A4:5D7892B2", + "content-length": "846", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\n \"tree\": [\n {\n \"path\": \"pages\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\"\n },\n {\n \"path\": \"posts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"34892575e216c06e757093f036bd8e057c78a52f\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/34892575e216c06e757093f036bd8e057c78a52f\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/forkOwner/repo/git/trees/34892575e216c06e757093f036bd8e057c78a52f?ts=300", + "headers": { + "Date": "Wed, 11 Sep 2019 06:22:43 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4908", + "X-RateLimit-Reset": "1568186244", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"76d99060c6645e9fc8243a0907c45709\"", + "Last-Modified": "Wed, 11 Sep 2019 06:22:29 GMT", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A3E:B4E0:287EAFB:3161288:5D7892B3", + "content-length": "2060", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"34892575e216c06e757093f036bd8e057c78a52f\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/34892575e216c06e757093f036bd8e057c78a52f\",\n \"tree\": [\n {\n \"path\": \"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"size\": 1707,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\"\n },\n {\n \"path\": \"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"size\": 2565,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\"\n },\n {\n \"path\": \"2016-02-02---A-Brief-History-of-Typography.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"0eea554365f002d0f1572af9a58522d335a794d5\",\n \"size\": 2786,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\"\n },\n {\n \"path\": \"2017-18-08---The-Birth-of-Movable-Type.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"44f78c474d04273185a95821426f75affc9b0044\",\n \"size\": 16071,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\"\n },\n {\n \"path\": \"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"size\": 7465,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 200 + }, + { + "body": "{\"base_tree\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"tree\":[{\"path\":\"1970-01-01-first-title.md\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"a041245814892e3f73f63ca54333fda649b7fc0b\"}]}", + "method": "POST", + "url": "/repos/forkOwner/repo/git/trees?ts=300", + "headers": { + "Date": "Wed, 11 Sep 2019 06:22:44 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "2397", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4907", + "X-RateLimit-Reset": "1568186244", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"54984c9dad8dbfe25a2918b16ba0972e\"", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/forkOwner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A40:9D1D:2AAF3E:347742:5D7892B4", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a041245814892e3f73f63ca54333fda649b7fc0b\",\n \"size\": 167,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b\"\n },\n {\n \"path\": \"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"size\": 1707,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\"\n },\n {\n \"path\": \"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"size\": 2565,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\"\n },\n {\n \"path\": \"2016-02-02---A-Brief-History-of-Typography.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"0eea554365f002d0f1572af9a58522d335a794d5\",\n \"size\": 2786,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\"\n },\n {\n \"path\": \"2017-18-08---The-Birth-of-Movable-Type.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"44f78c474d04273185a95821426f75affc9b0044\",\n \"size\": 16071,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\"\n },\n {\n \"path\": \"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"size\": 7465,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"base_tree\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\"tree\":[{\"path\":\"posts\",\"mode\":\"040000\",\"type\":\"tree\",\"sha\":\"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\"parentSha\":\"34892575e216c06e757093f036bd8e057c78a52f\"}]}", + "method": "POST", + "url": "/repos/forkOwner/repo/git/trees?ts=300", + "headers": { + "Date": "Wed, 11 Sep 2019 06:22:45 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "846", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4906", + "X-RateLimit-Reset": "1568186244", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"3d55dae10b9eff9e9b68b320f1fdf9b2\"", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/forkOwner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A42:3ED82:2B94EBA:351E376:5D7892B4", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"tree\": [\n {\n \"path\": \"pages\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\"\n },\n {\n \"path\": \"posts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"base_tree\":\"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\"tree\":[{\"path\":\"content\",\"mode\":\"040000\",\"type\":\"tree\",\"sha\":\"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\"parentSha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\"}]}", + "method": "POST", + "url": "/repos/forkOwner/repo/git/trees?ts=300", + "headers": { + "Date": "Wed, 11 Sep 2019 06:22:46 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "11959", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4905", + "X-RateLimit-Reset": "1568186244", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"5bfc279452798da7d0e6f17c525fc616\"", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/forkOwner/repo/git/trees/daee8d5d15d144e8779955166a2afeccde2770e1", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A44:244EB:2A72D50:33B7C09:5D7892B5", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"daee8d5d15d144e8779955166a2afeccde2770e1\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/daee8d5d15d144e8779955166a2afeccde2770e1\",\n \"tree\": [\n {\n \"path\": \".circleci\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"e5e9af3301cac61f120b8e4d40b1733c7a45685a\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/e5e9af3301cac61f120b8e4d40b1733c7a45685a\"\n },\n {\n \"path\": \".eslintignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"80b4531b026d19f8fa589efd122e76199d23f967\",\n \"size\": 39,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/80b4531b026d19f8fa589efd122e76199d23f967\"\n },\n {\n \"path\": \".eslintrc.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"370684994aaed5b858da3a006f48cfa57e88fd27\",\n \"size\": 414,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/370684994aaed5b858da3a006f48cfa57e88fd27\"\n },\n {\n \"path\": \".flowconfig\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14aa2ac4cc0e15223ad98630a6f1325fc81f8043\",\n \"size\": 283,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/14aa2ac4cc0e15223ad98630a6f1325fc81f8043\"\n },\n {\n \"path\": \".gitattributes\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"10a369ddf4f603337cabc6f21646508323941ce1\",\n \"size\": 135,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/10a369ddf4f603337cabc6f21646508323941ce1\"\n },\n {\n \"path\": \".github\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4ebeece548b52b20af59622354530a6d33b50b43\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/4ebeece548b52b20af59622354530a6d33b50b43\"\n },\n {\n \"path\": \".gitignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"c071ba35b0e49899bab6d610a68eef667dbbf157\",\n \"size\": 169,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/c071ba35b0e49899bab6d610a68eef667dbbf157\"\n },\n {\n \"path\": \".prettierignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"393f050e123d998cf8c8b362ff95cc8ac4d250e5\",\n \"size\": 45,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/393f050e123d998cf8c8b362ff95cc8ac4d250e5\"\n },\n {\n \"path\": \".prettierrc\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e52ad05bb13b084d7949dd76e1b2517455162150\",\n \"size\": 223,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/e52ad05bb13b084d7949dd76e1b2517455162150\"\n },\n {\n \"path\": \".stylelintrc.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"4b4c9698d10d756f5faa025659b86375428ed0a7\",\n \"size\": 718,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/4b4c9698d10d756f5faa025659b86375428ed0a7\"\n },\n {\n \"path\": \".vscode\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"286e97ec0113ea8242b41ac222e2c3e8077e6f1e\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/286e97ec0113ea8242b41ac222e2c3e8077e6f1e\"\n },\n {\n \"path\": \"CHANGELOG.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"070a5d4f0eacd2dc0be81ae8996f8982de43046e\",\n \"size\": 2113,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/070a5d4f0eacd2dc0be81ae8996f8982de43046e\"\n },\n {\n \"path\": \"CODE_OF_CONDUCT.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"92bc7565ff0ee145a0041b5179a820f14f39ab22\",\n \"size\": 3355,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/92bc7565ff0ee145a0041b5179a820f14f39ab22\"\n },\n {\n \"path\": \"CONTRIBUTING.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"8552aa241254a61258e1ff9666ab36f32fb1e3b9\",\n \"size\": 3548,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/8552aa241254a61258e1ff9666ab36f32fb1e3b9\"\n },\n {\n \"path\": \"LICENSE\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"42d85938357b49977c126ca03b199129082d4fb8\",\n \"size\": 1091,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/42d85938357b49977c126ca03b199129082d4fb8\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"19df50a78654c8d757ca7f38447aa3d09c7abcce\",\n \"size\": 3698,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/19df50a78654c8d757ca7f38447aa3d09c7abcce\"\n },\n {\n \"path\": \"backend\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\"\n },\n {\n \"path\": \"config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"58afd573bbb69fcca000efd0f5d90b93c93a98dd\",\n \"size\": 853,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/58afd573bbb69fcca000efd0f5d90b93c93a98dd\"\n },\n {\n \"path\": \"content\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639\"\n },\n {\n \"path\": \"flow-typed\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"86c32fd6c3118be5e0dbbb231a834447357236c6\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/86c32fd6c3118be5e0dbbb231a834447357236c6\"\n },\n {\n \"path\": \"flow\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"0af45ad00d155c8d8c7407d913ff85278244c9ce\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/0af45ad00d155c8d8c7407d913ff85278244c9ce\"\n },\n {\n \"path\": \"gatsby-browser.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9bd2c9dce175f04980e91cd9dc295a299e3cdb80\",\n \"size\": 90,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/9bd2c9dce175f04980e91cd9dc295a299e3cdb80\"\n },\n {\n \"path\": \"gatsby-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"353a109dad62e3f25bf9f5e6a2167f21a6c8b459\",\n \"size\": 7228,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/353a109dad62e3f25bf9f5e6a2167f21a6c8b459\"\n },\n {\n \"path\": \"gatsby-node.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14a207883c2093d2cc071bc5a464e165bcc1fead\",\n \"size\": 409,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/14a207883c2093d2cc071bc5a464e165bcc1fead\"\n },\n {\n \"path\": \"gatsby\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4f23c06cd1740bf78304d2c0b29bf6bfdf427981\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/4f23c06cd1740bf78304d2c0b29bf6bfdf427981\"\n },\n {\n \"path\": \"jest\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\"\n },\n {\n \"path\": \"netlify.toml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"599b99cc5700404fde316a7ede829776f23e7d45\",\n \"size\": 137,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/599b99cc5700404fde316a7ede829776f23e7d45\"\n },\n {\n \"path\": \"package.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9d777616438b90a18f1a4ebfd5f114b4c06c6f17\",\n \"size\": 6855,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/9d777616438b90a18f1a4ebfd5f114b4c06c6f17\"\n },\n {\n \"path\": \"postcss-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d216501e9b351a72e00ba0b7459a6500e27e7da2\",\n \"size\": 703,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/d216501e9b351a72e00ba0b7459a6500e27e7da2\"\n },\n {\n \"path\": \"renovate.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"dcc309398785698b8870545c32051a3d72dd8271\",\n \"size\": 460,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/dcc309398785698b8870545c32051a3d72dd8271\"\n },\n {\n \"path\": \"serverless-scripts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ee3701f2fbfc7196ba340f6481d1387d20527898\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/ee3701f2fbfc7196ba340f6481d1387d20527898\"\n },\n {\n \"path\": \"serverless-single-page-app-plugin\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"08763fcfba643a06a452398517019bea4a5850ba\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/08763fcfba643a06a452398517019bea4a5850ba\"\n },\n {\n \"path\": \"serverless.yml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"20b22c5fad229f35d029bf6614d333d82fe8a987\",\n \"size\": 7803,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/20b22c5fad229f35d029bf6614d333d82fe8a987\"\n },\n {\n \"path\": \"src\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"8cdb35a88232c0f32f12f130c92c7cc55f97f471\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/8cdb35a88232c0f32f12f130c92c7cc55f97f471\"\n },\n {\n \"path\": \"static\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"53c6380a600a030d3722bff7ecde36f749fb6964\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/53c6380a600a030d3722bff7ecde36f749fb6964\"\n },\n {\n \"path\": \"utils\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"a592549c9f74db40b51efefcda2fd76810405f27\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/a592549c9f74db40b51efefcda2fd76810405f27\"\n },\n {\n \"path\": \"yarn.lock\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"475c9c1924ca752a0686303e2fdeb7b13ad75f57\",\n \"size\": 793903,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/475c9c1924ca752a0686303e2fdeb7b13ad75f57\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"message\":\"Create Post “1970-01-01-first-title”\",\"tree\":\"daee8d5d15d144e8779955166a2afeccde2770e1\",\"parents\":[\"726172deae99c8a2cea4c71e734a02a793d4d9e5\"]}", + "method": "POST", + "url": "/repos/forkOwner/repo/git/commits?ts=300", + "headers": { + "Date": "Wed, 11 Sep 2019 06:22:46 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "1565", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4904", + "X-RateLimit-Reset": "1568186244", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"cec85bc09d22dfdcd1567af4cef652cd\"", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/forkOwner/repo/git/commits/18d2d7d41695915de543b3f48bfab502fab19bf0", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A47:3ED7B:20930C5:27A942D:5D7892B6", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"18d2d7d41695915de543b3f48bfab502fab19bf0\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NzM4Mjc5OjE4ZDJkN2Q0MTY5NTkxNWRlNTQzYjNmNDhiZmFiNTAyZmFiMTliZjA=\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/18d2d7d41695915de543b3f48bfab502fab19bf0\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/18d2d7d41695915de543b3f48bfab502fab19bf0\",\n \"author\": {\n \"name\": \"forkOwner\",\n \"email\": \"53494188+forkOwner@users.noreply.github.com\",\n \"date\": \"2019-09-11T06:22:46Z\"\n },\n \"committer\": {\n \"name\": \"forkOwner\",\n \"email\": \"53494188+forkOwner@users.noreply.github.com\",\n \"date\": \"2019-09-11T06:22:46Z\"\n },\n \"tree\": {\n \"sha\": \"daee8d5d15d144e8779955166a2afeccde2770e1\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/daee8d5d15d144e8779955166a2afeccde2770e1\"\n },\n \"message\": \"Create Post “1970-01-01-first-title”\",\n \"parents\": [\n {\n \"sha\": \"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/726172deae99c8a2cea4c71e734a02a793d4d9e5\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "status": 201 + }, + { + "body": "{\"ref\":\"refs/heads/cms/forkOwner/repo/posts/1970-01-01-first-title\",\"sha\":\"18d2d7d41695915de543b3f48bfab502fab19bf0\"}", + "method": "POST", + "url": "/repos/forkOwner/repo/git/refs?ts=300", + "headers": { + "Date": "Wed, 11 Sep 2019 06:22:48 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "764", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4903", + "X-RateLimit-Reset": "1568186244", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"66ff76e4c2a959e11c7565465b0b36af\"", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "Location": "https://api.github.com/repos/forkOwner/repo/git/refs/heads/cms/forkOwner/repo/posts/1970-01-01-first-title", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A48:244EB:2A72F19:33B7E39:5D7892B7", + "connection": "keep-alive" + }, + "response": "{\n \"ref\": \"refs/heads/cms/forkOwner/repo/posts/1970-01-01-first-title\",\n \"node_id\": \"MDM6UmVmMjA3NzM4Mjc5OmNtcy9lcmV6cm9rYWgtdGVzdC9nYXRzYnktbmV0bGlmeS1jbXMtYXdzLTE1NjgxODI5MTA2NzUtMDQ5Y2hjYWhuazgvcG9zdHMvMTk3MC0wMS0wMS1maXJzdC10aXRsZQ==\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/refs/heads/cms/forkOwner/repo/posts/1970-01-01-first-title\",\n \"object\": {\n \"sha\": \"18d2d7d41695915de543b3f48bfab502fab19bf0\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/18d2d7d41695915de543b3f48bfab502fab19bf0\"\n }\n}\n", + "status": 201 + }, + { + "method": "GET", + "url": "/repos/forkOwner/repo/git/refs/meta/_netlify_cms?ts=300", + "headers": { + "Date": "Wed, 11 Sep 2019 06:22:48 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "404 Not Found", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4902", + "X-RateLimit-Reset": "1568186244", + "X-Poll-Interval": "300", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A4B:244E7:1F49952:2646E67:5D7892B8", + "content-length": "113", + "connection": "keep-alive" + }, + "response": "{\n \"message\": \"Not Found\",\n \"documentation_url\": \"https://developer.github.com/v3/git/refs/#get-a-reference\"\n}\n", + "status": 404 + }, + { + "body": "{\"content\":\"IyBOZXRsaWZ5IENNUwoKVGhpcyB0cmVlIGlzIHVzZWQgYnkgdGhlIE5ldGxpZnkgQ01TIHRvIHN0b3JlIG1ldGFkYXRhIGluZm9ybWF0aW9uIGZvciBzcGVjaWZpYyBmaWxlcyBhbmQgYnJhbmNoZXMu\",\"encoding\":\"base64\"}", + "method": "POST", + "url": "/repos/forkOwner/repo/git/blobs?ts=300", + "headers": { + "Date": "Wed, 11 Sep 2019 06:22:49 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "212", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4901", + "X-RateLimit-Reset": "1568186244", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"afd292a8566185b19e67de2312189331\"", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/forkOwner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A4C:B4E0:287F05A:3161938:5D7892B8", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n}\n", + "status": 201 + }, + { + "body": "{\"tree\":[{\"path\":\"README.md\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"98787d1bd948850444433e91a43091a76c4eb455\"}]}", + "method": "POST", + "url": "/repos/forkOwner/repo/git/trees?ts=300", + "headers": { + "Date": "Wed, 11 Sep 2019 06:22:50 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "571", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4900", + "X-RateLimit-Reset": "1568186244", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"700c2cbb5e385fbdd2d4e2b5cac79020\"", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/forkOwner/repo/git/trees/77d01c8bf1e79f9fb17c60fe405ce741bb4eb0a6", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A4E:2B24:2A147D8:33500CE:5D7892B9", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"77d01c8bf1e79f9fb17c60fe405ce741bb4eb0a6\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/77d01c8bf1e79f9fb17c60fe405ce741bb4eb0a6\",\n \"tree\": [\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"message\":\"First Commit\",\"tree\":\"77d01c8bf1e79f9fb17c60fe405ce741bb4eb0a6\",\"parents\":[]}", + "method": "POST", + "url": "/repos/forkOwner/repo/git/commits?ts=300", + "headers": { + "Date": "Wed, 11 Sep 2019 06:22:51 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "1156", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4899", + "X-RateLimit-Reset": "1568186244", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"5b8c0151be98d48af259c76949a1a859\"", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/forkOwner/repo/git/commits/ad7e2dd252ed3de31752f1bb34c49a1f78755e5f", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A50:2B1F:2008FEF:273A184:5D7892BA", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"ad7e2dd252ed3de31752f1bb34c49a1f78755e5f\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NzM4Mjc5OmFkN2UyZGQyNTJlZDNkZTMxNzUyZjFiYjM0YzQ5YTFmNzg3NTVlNWY=\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/ad7e2dd252ed3de31752f1bb34c49a1f78755e5f\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/ad7e2dd252ed3de31752f1bb34c49a1f78755e5f\",\n \"author\": {\n \"name\": \"forkOwner\",\n \"email\": \"53494188+forkOwner@users.noreply.github.com\",\n \"date\": \"2019-09-11T06:22:51Z\"\n },\n \"committer\": {\n \"name\": \"forkOwner\",\n \"email\": \"53494188+forkOwner@users.noreply.github.com\",\n \"date\": \"2019-09-11T06:22:51Z\"\n },\n \"tree\": {\n \"sha\": \"77d01c8bf1e79f9fb17c60fe405ce741bb4eb0a6\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/77d01c8bf1e79f9fb17c60fe405ce741bb4eb0a6\"\n },\n \"message\": \"First Commit\",\n \"parents\": [\n\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "status": 201 + }, + { + "body": "{\"ref\":\"refs/meta/_netlify_cms\",\"sha\":\"ad7e2dd252ed3de31752f1bb34c49a1f78755e5f\"}", + "method": "POST", + "url": "/repos/forkOwner/repo/git/refs?ts=300", + "headers": { + "Date": "Wed, 11 Sep 2019 06:22:52 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "494", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4898", + "X-RateLimit-Reset": "1568186244", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"14328fbcaafd13e3204fd4cf8901d91f\"", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "Location": "https://api.github.com/repos/forkOwner/repo/git/refs/meta/_netlify_cms", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A52:244E7:1F49C22:26471DC:5D7892BB", + "connection": "keep-alive" + }, + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NzM4Mjc5OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"ad7e2dd252ed3de31752f1bb34c49a1f78755e5f\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/ad7e2dd252ed3de31752f1bb34c49a1f78755e5f\"\n }\n}\n", + "status": 201 + }, + { + "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJ1c2VyIjoiZm9ya093bmVyIiwic3RhdHVzIjoiZHJhZnQiLCJicmFuY2giOiJjbXMvZm9ya093bmVyL3JlcG8vcG9zdHMvMTk3MC0wMS0wMS1maXJzdC10aXRsZSIsImNvbGxlY3Rpb24iOiJwb3N0cyIsImNvbW1pdE1lc3NhZ2UiOiJDcmVhdGUgUG9zdCDigJwxOTcwLTAxLTAxLWZpcnN0LXRpdGxl4oCdIiwidGl0bGUiOiJmaXJzdCB0aXRsZSIsImRlc2NyaXB0aW9uIjoiZmlyc3QgZGVzY3JpcHRpb24iLCJvYmplY3RzIjp7ImVudHJ5Ijp7InBhdGgiOiJjb250ZW50L3Bvc3RzLzE5NzAtMDEtMDEtZmlyc3QtdGl0bGUubWQiLCJzaGEiOiJhMDQxMjQ1ODE0ODkyZTNmNzNmNjNjYTU0MzMzZmRhNjQ5YjdmYzBiIn0sImZpbGVzIjpbXX0sInRpbWVTdGFtcCI6IjE5NzAtMDEtMDFUMDA6MDA6MDAuMzAwWiJ9\",\"encoding\":\"base64\"}", + "method": "POST", + "url": "/repos/forkOwner/repo/git/blobs?ts=300", + "headers": { + "Date": "Wed, 11 Sep 2019 06:22:53 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "212", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4897", + "X-RateLimit-Reset": "1568186244", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"129ed66b431aa72caa004dcc2f08547c\"", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/forkOwner/repo/git/blobs/a9364c816d3c010e6e66f1ce8468a3e30e1c997b", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A56:244EB:2A734A6:33B8520:5D7892BC", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"a9364c816d3c010e6e66f1ce8468a3e30e1c997b\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/a9364c816d3c010e6e66f1ce8468a3e30e1c997b\"\n}\n", + "status": 201 + }, + { + "method": "GET", + "url": "/repos/forkOwner/repo/git/trees/ad7e2dd252ed3de31752f1bb34c49a1f78755e5f?ts=300", + "headers": { + "Date": "Wed, 11 Sep 2019 06:22:54 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4896", + "X-RateLimit-Reset": "1568186244", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"2b2f673f5cbeb6f4938022f64a3ed964\"", + "Last-Modified": "Wed, 11 Sep 2019 06:22:29 GMT", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A58:244E4:130FE0B:172EDB8:5D7892BD", + "content-length": "571", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"ad7e2dd252ed3de31752f1bb34c49a1f78755e5f\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/ad7e2dd252ed3de31752f1bb34c49a1f78755e5f\",\n \"tree\": [\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 200 + }, + { + "body": "{\"base_tree\":\"ad7e2dd252ed3de31752f1bb34c49a1f78755e5f\",\"tree\":[{\"path\":\"forkOwner/repo/posts/1970-01-01-first-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"a9364c816d3c010e6e66f1ce8468a3e30e1c997b\"}]}", + "method": "POST", + "url": "/repos/forkOwner/repo/git/trees?ts=300", + "headers": { + "Date": "Wed, 11 Sep 2019 06:22:54 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "878", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4895", + "X-RateLimit-Reset": "1568186244", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"87d8118c5e8f6c8263d89d013cd80a32\"", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/forkOwner/repo/git/trees/350bb379615187df05784b8031570d5ae7f4f956", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A5A:1510F:1FC1121:26BD395:5D7892BE", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"350bb379615187df05784b8031570d5ae7f4f956\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/350bb379615187df05784b8031570d5ae7f4f956\",\n \"tree\": [\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n },\n {\n \"path\": \"forkOwner\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ec085722968d6344a6ff634091bfdca14fe321b1\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/ec085722968d6344a6ff634091bfdca14fe321b1\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"message\":\"Updating “forkOwner/repo/posts/1970-01-01-first-title” metadata\",\"tree\":\"350bb379615187df05784b8031570d5ae7f4f956\",\"parents\":[\"ad7e2dd252ed3de31752f1bb34c49a1f78755e5f\"]}", + "method": "POST", + "url": "/repos/forkOwner/repo/git/commits?ts=300", + "headers": { + "Date": "Wed, 11 Sep 2019 06:22:55 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "1641", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4894", + "X-RateLimit-Reset": "1568186244", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"de71adf306e6f1c73092b5fb07259c58\"", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/forkOwner/repo/git/commits/ff6bb9a6987bf303285bb76398b1ab820bb3210e", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A5C:1510F:1FC11A0:26BD42F:5D7892BF", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"ff6bb9a6987bf303285bb76398b1ab820bb3210e\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NzM4Mjc5OmZmNmJiOWE2OTg3YmYzMDMyODViYjc2Mzk4YjFhYjgyMGJiMzIxMGU=\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/ff6bb9a6987bf303285bb76398b1ab820bb3210e\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/ff6bb9a6987bf303285bb76398b1ab820bb3210e\",\n \"author\": {\n \"name\": \"forkOwner\",\n \"email\": \"53494188+forkOwner@users.noreply.github.com\",\n \"date\": \"2019-09-11T06:22:55Z\"\n },\n \"committer\": {\n \"name\": \"forkOwner\",\n \"email\": \"53494188+forkOwner@users.noreply.github.com\",\n \"date\": \"2019-09-11T06:22:55Z\"\n },\n \"tree\": {\n \"sha\": \"350bb379615187df05784b8031570d5ae7f4f956\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/350bb379615187df05784b8031570d5ae7f4f956\"\n },\n \"message\": \"Updating “forkOwner/repo/posts/1970-01-01-first-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"ad7e2dd252ed3de31752f1bb34c49a1f78755e5f\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/ad7e2dd252ed3de31752f1bb34c49a1f78755e5f\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/ad7e2dd252ed3de31752f1bb34c49a1f78755e5f\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "status": 201 + }, + { + "body": "{\"sha\":\"ff6bb9a6987bf303285bb76398b1ab820bb3210e\",\"force\":false}", + "method": "PATCH", + "url": "/repos/forkOwner/repo/git/refs/meta/_netlify_cms?ts=300", + "headers": { + "Date": "Wed, 11 Sep 2019 06:22:56 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4893", + "X-RateLimit-Reset": "1568186244", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"b897fe3020cf68808e8382136fa658ab\"", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A5E:244E7:1F4A075:2647717:5D7892BF", + "content-length": "494", + "connection": "keep-alive" + }, + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NzM4Mjc5OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"ff6bb9a6987bf303285bb76398b1ab820bb3210e\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/ff6bb9a6987bf303285bb76398b1ab820bb3210e\"\n }\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=master", + "headers": { + "Date": "Wed, 11 Sep 2019 06:22:57 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "404 Not Found", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4892", + "X-RateLimit-Reset": "1568186244", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BCC:9D1D:2AAFD1:3477FC:5D7892C1", + "content-length": "116", + "connection": "keep-alive" + }, + "response": "{\n \"message\": \"Not Found\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/#get-contents\"\n}\n", + "status": 404 + }, + { + "method": "GET", + "url": "/repos/forkOwner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=cms/forkOwner/repo/posts/1970-01-01-first-title", + "headers": { + "Date": "Wed, 11 Sep 2019 06:22:57 GMT", + "Content-Type": "application/vnd.github.VERSION.raw; charset=utf-8", + "Content-Length": "167", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4891", + "X-RateLimit-Reset": "1568186244", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"a041245814892e3f73f63ca54333fda649b7fc0b\"", + "Last-Modified": "Wed, 11 Sep 2019 06:22:46 GMT", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BCE:15110:2B8E569:3507E71:5D7892C1", + "connection": "keep-alive" + }, + "response": "---\ntemplate: post\ntitle: first title\ndraft: true\ndate: 1970-01-01T00:00:00.000Z\ndescription: first description\ncategory: first category\ntags:\n - tag1\n---\nfirst body\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/forkOwner/repo/git/refs/heads/cms?ts=300", + "headers": { + "Date": "Wed, 11 Sep 2019 06:23:00 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4890", + "X-RateLimit-Reset": "1568186244", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"62b479143e2743d82e3fa88569a8988b\"", + "Last-Modified": "Wed, 11 Sep 2019 06:22:29 GMT", + "X-Poll-Interval": "300", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BD2:244E4:13100A3:172F0F5:5D7892C3", + "content-length": "788", + "connection": "keep-alive" + }, + "response": "[\n {\n \"ref\": \"refs/heads/cms/forkOwner/repo/posts/1970-01-01-first-title\",\n \"node_id\": \"MDM6UmVmMjA3NzM4Mjc5OmNtcy9lcmV6cm9rYWgtdGVzdC9nYXRzYnktbmV0bGlmeS1jbXMtYXdzLTE1NjgxODI5MTA2NzUtMDQ5Y2hjYWhuazgvcG9zdHMvMTk3MC0wMS0wMS1maXJzdC10aXRsZQ==\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/refs/heads/cms/forkOwner/repo/posts/1970-01-01-first-title\",\n \"object\": {\n \"sha\": \"18d2d7d41695915de543b3f48bfab502fab19bf0\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/18d2d7d41695915de543b3f48bfab502fab19bf0\"\n }\n }\n]\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/forkOwner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=cms/forkOwner/repo/posts/1970-01-01-first-title", + "headers": { + "Date": "Wed, 11 Sep 2019 06:23:01 GMT", + "Content-Type": "application/vnd.github.VERSION.raw; charset=utf-8", + "Content-Length": "167", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4889", + "X-RateLimit-Reset": "1568186244", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"a041245814892e3f73f63ca54333fda649b7fc0b\"", + "Last-Modified": "Wed, 11 Sep 2019 06:22:46 GMT", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BD4:15110:2B8E943:350830F:5D7892C4", + "connection": "keep-alive" + }, + "response": "---\ntemplate: post\ntitle: first title\ndraft: true\ndate: 1970-01-01T00:00:00.000Z\ndescription: first description\ncategory: first category\ntags:\n - tag1\n---\nfirst body\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=master", + "headers": { + "Date": "Wed, 11 Sep 2019 06:23:01 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "404 Not Found", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4888", + "X-RateLimit-Reset": "1568186244", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BD6:1510E:12D5556:170682D:5D7892C4", + "content-length": "116", + "connection": "keep-alive" + }, + "response": "{\n \"message\": \"Not Found\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/#get-contents\"\n}\n", + "status": 404 + }, + { + "body": "{\"title\":\"Create Post “1970-01-01-first-title”\",\"body\":\"Automatically generated by Netlify CMS\",\"head\":\"forkOwner:cms/forkOwner/repo/posts/1970-01-01-first-title\",\"base\":\"master\"}", + "method": "POST", + "url": "/repos/owner/repo/pulls?ts=300", + "headers": { + "Date": "Wed, 11 Sep 2019 06:23:04 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "22245", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4887", + "X-RateLimit-Reset": "1568186244", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"65bed0e37e37e6019c22f920635834be\"", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/pulls/1", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BDA:1510F:1FC1848:26BDC59:5D7892C6", + "connection": "keep-alive" + }, + "response": "{\n \"url\": \"https://api.github.com/repos/owner/repo/pulls/1\",\n \"id\": 316291228,\n \"node_id\": \"MDExOlB1bGxSZXF1ZXN0MzE2MjkxMjI4\",\n \"html_url\": \"https://github.com/owner/repo/pull/1\",\n \"diff_url\": \"https://github.com/owner/repo/pull/1.diff\",\n \"patch_url\": \"https://github.com/owner/repo/pull/1.patch\",\n \"issue_url\": \"https://api.github.com/repos/owner/repo/issues/1\",\n \"number\": 1,\n \"state\": \"open\",\n \"locked\": false,\n \"title\": \"Create Post “1970-01-01-first-title”\",\n \"user\": {\n \"login\": \"forkOwner\",\n \"id\": 53494188,\n \"node_id\": \"MDQ6VXNlcjUzNDk0MTg4\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/forkOwner\",\n \"html_url\": \"https://github.com/forkOwner\",\n \"followers_url\": \"https://api.github.com/users/forkOwner/followers\",\n \"following_url\": \"https://api.github.com/users/forkOwner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/forkOwner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/forkOwner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/forkOwner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/forkOwner/orgs\",\n \"repos_url\": \"https://api.github.com/users/forkOwner/repos\",\n \"events_url\": \"https://api.github.com/users/forkOwner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/forkOwner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Automatically generated by Netlify CMS\",\n \"created_at\": \"2019-09-11T06:23:03Z\",\n \"updated_at\": \"2019-09-11T06:23:03Z\",\n \"closed_at\": null,\n \"merged_at\": null,\n \"merge_commit_sha\": null,\n \"assignee\": null,\n \"assignees\": [\n\n ],\n \"requested_reviewers\": [\n\n ],\n \"requested_teams\": [\n\n ],\n \"labels\": [\n\n ],\n \"milestone\": null,\n \"commits_url\": \"https://api.github.com/repos/owner/repo/pulls/1/commits\",\n \"review_comments_url\": \"https://api.github.com/repos/owner/repo/pulls/1/comments\",\n \"review_comment_url\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/issues/1/comments\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/18d2d7d41695915de543b3f48bfab502fab19bf0\",\n \"head\": {\n \"label\": \"forkOwner:cms/forkOwner/repo/posts/1970-01-01-first-title\",\n \"ref\": \"cms/forkOwner/repo/posts/1970-01-01-first-title\",\n \"sha\": \"18d2d7d41695915de543b3f48bfab502fab19bf0\",\n \"user\": {\n \"login\": \"forkOwner\",\n \"id\": 53494188,\n \"node_id\": \"MDQ6VXNlcjUzNDk0MTg4\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/forkOwner\",\n \"html_url\": \"https://github.com/forkOwner\",\n \"followers_url\": \"https://api.github.com/users/forkOwner/followers\",\n \"following_url\": \"https://api.github.com/users/forkOwner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/forkOwner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/forkOwner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/forkOwner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/forkOwner/orgs\",\n \"repos_url\": \"https://api.github.com/users/forkOwner/repos\",\n \"events_url\": \"https://api.github.com/users/forkOwner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/forkOwner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 207738279,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc3MzgyNzk=\",\n \"name\": \"repo\",\n \"full_name\": \"forkOwner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"forkOwner\",\n \"id\": 53494188,\n \"node_id\": \"MDQ6VXNlcjUzNDk0MTg4\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/forkOwner\",\n \"html_url\": \"https://github.com/forkOwner\",\n \"followers_url\": \"https://api.github.com/users/forkOwner/followers\",\n \"following_url\": \"https://api.github.com/users/forkOwner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/forkOwner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/forkOwner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/forkOwner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/forkOwner/orgs\",\n \"repos_url\": \"https://api.github.com/users/forkOwner/repos\",\n \"events_url\": \"https://api.github.com/users/forkOwner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/forkOwner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/forkOwner/repo\",\n \"description\": null,\n \"fork\": true,\n \"url\": \"https://api.github.com/repos/forkOwner/repo\",\n \"forks_url\": \"https://api.github.com/repos/forkOwner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/forkOwner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/forkOwner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/forkOwner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/forkOwner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/forkOwner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/forkOwner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/forkOwner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/forkOwner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/forkOwner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/forkOwner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/forkOwner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/forkOwner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/forkOwner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/forkOwner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/forkOwner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/forkOwner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/forkOwner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/forkOwner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/forkOwner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/forkOwner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/forkOwner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/forkOwner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/forkOwner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/forkOwner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/forkOwner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/forkOwner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/forkOwner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/forkOwner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/forkOwner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/forkOwner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/forkOwner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/forkOwner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/forkOwner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/forkOwner/repo/deployments\",\n \"created_at\": \"2019-09-11T06:22:28Z\",\n \"updated_at\": \"2019-09-11T06:22:29Z\",\n \"pushed_at\": \"2019-09-11T06:22:56Z\",\n \"git_url\": \"git://github.com/forkOwner/repo.git\",\n \"ssh_url\": \"git@github.com:forkOwner/repo.git\",\n \"clone_url\": \"https://github.com/forkOwner/repo.git\",\n \"svn_url\": \"https://github.com/forkOwner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": null,\n \"has_issues\": false,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"base\": {\n \"label\": \"owner:master\",\n \"ref\": \"master\",\n \"sha\": \"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 207738178,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc3MzgxNzg=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-11T06:21:51Z\",\n \"updated_at\": \"2019-09-11T06:22:18Z\",\n \"pushed_at\": \"2019-09-11T06:22:15Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 1,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 1,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/1\"\n },\n \"html\": {\n \"href\": \"https://github.com/owner/repo/pull/1\"\n },\n \"issue\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/1\"\n },\n \"comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/1/comments\"\n },\n \"review_comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/1/comments\"\n },\n \"review_comment\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\"\n },\n \"commits\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/1/commits\"\n },\n \"statuses\": {\n \"href\": \"https://api.github.com/repos/owner/repo/statuses/18d2d7d41695915de543b3f48bfab502fab19bf0\"\n }\n },\n \"author_association\": \"NONE\",\n \"merged\": false,\n \"mergeable\": null,\n \"rebaseable\": null,\n \"mergeable_state\": \"unknown\",\n \"merged_by\": null,\n \"comments\": 0,\n \"review_comments\": 0,\n \"maintainer_can_modify\": true,\n \"commits\": 1,\n \"additions\": 11,\n \"deletions\": 0,\n \"changed_files\": 1\n}\n", + "status": 201 + }, + { + "method": "GET", + "url": "/repos/forkOwner/repo/git/refs/meta/_netlify_cms?ts=300", + "headers": { + "Date": "Wed, 11 Sep 2019 06:23:05 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4886", + "X-RateLimit-Reset": "1568186244", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"b897fe3020cf68808e8382136fa658ab\"", + "Last-Modified": "Wed, 11 Sep 2019 06:22:29 GMT", + "X-Poll-Interval": "300", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BE2:244E7:1F4A8A6:2648126:5D7892C8", + "content-length": "494", + "connection": "keep-alive" + }, + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NzM4Mjc5OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"ff6bb9a6987bf303285bb76398b1ab820bb3210e\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/ff6bb9a6987bf303285bb76398b1ab820bb3210e\"\n }\n}\n", + "status": 200 + }, + { + "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjEsImhlYWQiOnsibGFiZWwiOiJmb3JrT3duZXI6Y21zL2ZvcmtPd25lci9yZXBvL3Bvc3RzLzE5NzAtMDEtMDEtZmlyc3QtdGl0bGUiLCJyZWYiOiJjbXMvZm9ya093bmVyL3JlcG8vcG9zdHMvMTk3MC0wMS0wMS1maXJzdC10aXRsZSIsInNoYSI6IjE4ZDJkN2Q0MTY5NTkxNWRlNTQzYjNmNDhiZmFiNTAyZmFiMTliZjAiLCJ1c2VyIjp7ImxvZ2luIjoiZm9ya093bmVyIiwiaWQiOjUzNDk0MTg4LCJub2RlX2lkIjoiTURRNlZYTmxjalV6TkRrME1UZzQiLCJhdmF0YXJfdXJsIjoiaHR0cHM6Ly9hdmF0YXJzMS5naXRodWJ1c2VyY29udGVudC5jb20vdS83ODkyNDg5P3Y9NCIsImdyYXZhdGFyX2lkIjoiIiwidXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS91c2Vycy9mb3JrT3duZXIiLCJodG1sX3VybCI6Imh0dHBzOi8vZ2l0aHViLmNvbS9mb3JrT3duZXIiLCJmb2xsb3dlcnNfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS91c2Vycy9mb3JrT3duZXIvZm9sbG93ZXJzIiwiZm9sbG93aW5nX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vdXNlcnMvZm9ya093bmVyL2ZvbGxvd2luZ3svb3RoZXJfdXNlcn0iLCJnaXN0c191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3VzZXJzL2ZvcmtPd25lci9naXN0c3svZ2lzdF9pZH0iLCJzdGFycmVkX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vdXNlcnMvZm9ya093bmVyL3N0YXJyZWR7L293bmVyfXsvcmVwb30iLCJzdWJzY3JpcHRpb25zX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vdXNlcnMvZm9ya093bmVyL3N1YnNjcmlwdGlvbnMiLCJvcmdhbml6YXRpb25zX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vdXNlcnMvZm9ya093bmVyL29yZ3MiLCJyZXBvc191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3VzZXJzL2ZvcmtPd25lci9yZXBvcyIsImV2ZW50c191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3VzZXJzL2ZvcmtPd25lci9ldmVudHN7L3ByaXZhY3l9IiwicmVjZWl2ZWRfZXZlbnRzX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vdXNlcnMvZm9ya093bmVyL3JlY2VpdmVkX2V2ZW50cyIsInR5cGUiOiJVc2VyIiwic2l0ZV9hZG1pbiI6ZmFsc2V9LCJyZXBvIjp7ImlkIjoyMDc3MzgyNzksIm5vZGVfaWQiOiJNREV3T2xKbGNHOXphWFJ2Y25reU1EYzNNemd5TnprPSIsIm5hbWUiOiJyZXBvIiwiZnVsbF9uYW1lIjoiZm9ya093bmVyL3JlcG8iLCJwcml2YXRlIjpmYWxzZSwib3duZXIiOnsibG9naW4iOiJmb3JrT3duZXIiLCJpZCI6NTM0OTQxODgsIm5vZGVfaWQiOiJNRFE2VlhObGNqVXpORGswTVRnNCIsImF2YXRhcl91cmwiOiJodHRwczovL2F2YXRhcnMxLmdpdGh1YnVzZXJjb250ZW50LmNvbS91Lzc4OTI0ODk/dj00IiwiZ3JhdmF0YXJfaWQiOiIiLCJ1cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3VzZXJzL2ZvcmtPd25lciIsImh0bWxfdXJsIjoiaHR0cHM6Ly9naXRodWIuY29tL2ZvcmtPd25lciIsImZvbGxvd2Vyc191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3VzZXJzL2ZvcmtPd25lci9mb2xsb3dlcnMiLCJmb2xsb3dpbmdfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS91c2Vycy9mb3JrT3duZXIvZm9sbG93aW5ney9vdGhlcl91c2VyfSIsImdpc3RzX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vdXNlcnMvZm9ya093bmVyL2dpc3Rzey9naXN0X2lkfSIsInN0YXJyZWRfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS91c2Vycy9mb3JrT3duZXIvc3RhcnJlZHsvb3duZXJ9ey9yZXBvfSIsInN1YnNjcmlwdGlvbnNfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS91c2Vycy9mb3JrT3duZXIvc3Vic2NyaXB0aW9ucyIsIm9yZ2FuaXphdGlvbnNfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS91c2Vycy9mb3JrT3duZXIvb3JncyIsInJlcG9zX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vdXNlcnMvZm9ya093bmVyL3JlcG9zIiwiZXZlbnRzX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vdXNlcnMvZm9ya093bmVyL2V2ZW50c3svcHJpdmFjeX0iLCJyZWNlaXZlZF9ldmVudHNfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS91c2Vycy9mb3JrT3duZXIvcmVjZWl2ZWRfZXZlbnRzIiwidHlwZSI6IlVzZXIiLCJzaXRlX2FkbWluIjpmYWxzZX0sImh0bWxfdXJsIjoiaHR0cHM6Ly9naXRodWIuY29tL2ZvcmtPd25lci9yZXBvIiwiZGVzY3JpcHRpb24iOm51bGwsImZvcmsiOnRydWUsInVybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vcmVwb3MvZm9ya093bmVyL3JlcG8iLCJmb3Jrc191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL2ZvcmtzIiwia2V5c191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL2tleXN7L2tleV9pZH0iLCJjb2xsYWJvcmF0b3JzX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vcmVwb3MvZm9ya093bmVyL3JlcG8vY29sbGFib3JhdG9yc3svY29sbGFib3JhdG9yfSIsInRlYW1zX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vcmVwb3MvZm9ya093bmVyL3JlcG8vdGVhbXMiLCJob29rc191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL2hvb2tzIiwiaXNzdWVfZXZlbnRzX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vcmVwb3MvZm9ya093bmVyL3JlcG8vaXNzdWVzL2V2ZW50c3svbnVtYmVyfSIsImV2ZW50c191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL2V2ZW50cyIsImFzc2lnbmVlc191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL2Fzc2lnbmVlc3svdXNlcn0iLCJicmFuY2hlc191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL2JyYW5jaGVzey9icmFuY2h9IiwidGFnc191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL3RhZ3MiLCJibG9ic191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL2dpdC9ibG9ic3svc2hhfSIsImdpdF90YWdzX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vcmVwb3MvZm9ya093bmVyL3JlcG8vZ2l0L3RhZ3N7L3NoYX0iLCJnaXRfcmVmc191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL2dpdC9yZWZzey9zaGF9IiwidHJlZXNfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS9yZXBvcy9mb3JrT3duZXIvcmVwby9naXQvdHJlZXN7L3NoYX0iLCJzdGF0dXNlc191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL3N0YXR1c2VzL3tzaGF9IiwibGFuZ3VhZ2VzX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vcmVwb3MvZm9ya093bmVyL3JlcG8vbGFuZ3VhZ2VzIiwic3RhcmdhemVyc191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL3N0YXJnYXplcnMiLCJjb250cmlidXRvcnNfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS9yZXBvcy9mb3JrT3duZXIvcmVwby9jb250cmlidXRvcnMiLCJzdWJzY3JpYmVyc191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL3N1YnNjcmliZXJzIiwic3Vic2NyaXB0aW9uX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vcmVwb3MvZm9ya093bmVyL3JlcG8vc3Vic2NyaXB0aW9uIiwiY29tbWl0c191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL2NvbW1pdHN7L3NoYX0iLCJnaXRfY29tbWl0c191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL2dpdC9jb21taXRzey9zaGF9IiwiY29tbWVudHNfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS9yZXBvcy9mb3JrT3duZXIvcmVwby9jb21tZW50c3svbnVtYmVyfSIsImlzc3VlX2NvbW1lbnRfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS9yZXBvcy9mb3JrT3duZXIvcmVwby9pc3N1ZXMvY29tbWVudHN7L251bWJlcn0iLCJjb250ZW50c191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL2NvbnRlbnRzL3srcGF0aH0iLCJjb21wYXJlX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vcmVwb3MvZm9ya093bmVyL3JlcG8vY29tcGFyZS97YmFzZX0uLi57aGVhZH0iLCJtZXJnZXNfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS9yZXBvcy9mb3JrT3duZXIvcmVwby9tZXJnZXMiLCJhcmNoaXZlX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vcmVwb3MvZm9ya093bmVyL3JlcG8ve2FyY2hpdmVfZm9ybWF0fXsvcmVmfSIsImRvd25sb2Fkc191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL2Rvd25sb2FkcyIsImlzc3Vlc191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL2lzc3Vlc3svbnVtYmVyfSIsInB1bGxzX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vcmVwb3MvZm9ya093bmVyL3JlcG8vcHVsbHN7L251bWJlcn0iLCJtaWxlc3RvbmVzX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vcmVwb3MvZm9ya093bmVyL3JlcG8vbWlsZXN0b25lc3svbnVtYmVyfSIsIm5vdGlmaWNhdGlvbnNfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS9yZXBvcy9mb3JrT3duZXIvcmVwby9ub3RpZmljYXRpb25zez9zaW5jZSxhbGwscGFydGljaXBhdGluZ30iLCJsYWJlbHNfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS9yZXBvcy9mb3JrT3duZXIvcmVwby9sYWJlbHN7L25hbWV9IiwicmVsZWFzZXNfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS9yZXBvcy9mb3JrT3duZXIvcmVwby9yZWxlYXNlc3svaWR9IiwiZGVwbG95bWVudHNfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS9yZXBvcy9mb3JrT3duZXIvcmVwby9kZXBsb3ltZW50cyIsImNyZWF0ZWRfYXQiOiIyMDE5LTA5LTExVDA2OjIyOjI4WiIsInVwZGF0ZWRfYXQiOiIyMDE5LTA5LTExVDA2OjIyOjI5WiIsInB1c2hlZF9hdCI6IjIwMTktMDktMTFUMDY6MjI6NTZaIiwiZ2l0X3VybCI6ImdpdDovL2dpdGh1Yi5jb20vZm9ya093bmVyL3JlcG8uZ2l0Iiwic3NoX3VybCI6ImdpdEBnaXRodWIuY29tOmZvcmtPd25lci9yZXBvLmdpdCIsImNsb25lX3VybCI6Imh0dHBzOi8vZ2l0aHViLmNvbS9mb3JrT3duZXIvcmVwby5naXQiLCJzdm5fdXJsIjoiaHR0cHM6Ly9naXRodWIuY29tL2ZvcmtPd25lci9yZXBvIiwiaG9tZXBhZ2UiOm51bGwsInNpemUiOjAsInN0YXJnYXplcnNfY291bnQiOjAsIndhdGNoZXJzX2NvdW50IjowLCJsYW5ndWFnZSI6bnVsbCwiaGFzX2lzc3VlcyI6ZmFsc2UsImhhc19wcm9qZWN0cyI6dHJ1ZSwiaGFzX2Rvd25sb2FkcyI6dHJ1ZSwiaGFzX3dpa2kiOnRydWUsImhhc19wYWdlcyI6ZmFsc2UsImZvcmtzX2NvdW50IjowLCJtaXJyb3JfdXJsIjpudWxsLCJhcmNoaXZlZCI6ZmFsc2UsImRpc2FibGVkIjpmYWxzZSwib3Blbl9pc3N1ZXNfY291bnQiOjAsImxpY2Vuc2UiOnsia2V5IjoibWl0IiwibmFtZSI6Ik1JVCBMaWNlbnNlIiwic3BkeF9pZCI6Ik1JVCIsInVybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vbGljZW5zZXMvbWl0Iiwibm9kZV9pZCI6Ik1EYzZUR2xqWlc1elpURXoifSwiZm9ya3MiOjAsIm9wZW5faXNzdWVzIjowLCJ3YXRjaGVycyI6MCwiZGVmYXVsdF9icmFuY2giOiJtYXN0ZXIifX19LCJ1c2VyIjoiZm9ya093bmVyIiwic3RhdHVzIjoicGVuZGluZ19yZXZpZXciLCJicmFuY2giOiJjbXMvZm9ya093bmVyL3JlcG8vcG9zdHMvMTk3MC0wMS0wMS1maXJzdC10aXRsZSIsImNvbGxlY3Rpb24iOiJwb3N0cyIsImNvbW1pdE1lc3NhZ2UiOiJDcmVhdGUgUG9zdCDigJwxOTcwLTAxLTAxLWZpcnN0LXRpdGxl4oCdIiwidGl0bGUiOiJmaXJzdCB0aXRsZSIsImRlc2NyaXB0aW9uIjoiZmlyc3QgZGVzY3JpcHRpb24iLCJvYmplY3RzIjp7ImVudHJ5Ijp7InBhdGgiOiJjb250ZW50L3Bvc3RzLzE5NzAtMDEtMDEtZmlyc3QtdGl0bGUubWQiLCJzaGEiOiJhMDQxMjQ1ODE0ODkyZTNmNzNmNjNjYTU0MzMzZmRhNjQ5YjdmYzBiIn0sImZpbGVzIjpbXX0sInRpbWVTdGFtcCI6IjE5NzAtMDEtMDFUMDA6MDA6MDAuMzAwWiJ9\",\"encoding\":\"base64\"}", + "method": "POST", + "url": "/repos/forkOwner/repo/git/blobs?ts=300", + "headers": { + "Date": "Wed, 11 Sep 2019 06:23:05 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "212", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4885", + "X-RateLimit-Reset": "1568186244", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"6e2ece69c474e557731e6f254bad7673\"", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/forkOwner/repo/git/blobs/1e818bf6a9f89cc1abbd5a840cdd69869719f92a", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BE4:3ED77:12BE391:16CE2A1:5D7892C9", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"1e818bf6a9f89cc1abbd5a840cdd69869719f92a\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/1e818bf6a9f89cc1abbd5a840cdd69869719f92a\"\n}\n", + "status": 201 + }, + { + "method": "GET", + "url": "/repos/forkOwner/repo/git/trees/ff6bb9a6987bf303285bb76398b1ab820bb3210e?ts=300", + "headers": { + "Date": "Wed, 11 Sep 2019 06:23:06 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4884", + "X-RateLimit-Reset": "1568186244", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"b000e9de19055e62a14af1c7394509f0\"", + "Last-Modified": "Wed, 11 Sep 2019 06:22:29 GMT", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BE7:244E7:1F4A9FF:26482C2:5D7892CA", + "content-length": "878", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"ff6bb9a6987bf303285bb76398b1ab820bb3210e\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/ff6bb9a6987bf303285bb76398b1ab820bb3210e\",\n \"tree\": [\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n },\n {\n \"path\": \"forkOwner\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ec085722968d6344a6ff634091bfdca14fe321b1\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/ec085722968d6344a6ff634091bfdca14fe321b1\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 200 + }, + { + "body": "{\"base_tree\":\"ff6bb9a6987bf303285bb76398b1ab820bb3210e\",\"tree\":[{\"path\":\"forkOwner/repo/posts/1970-01-01-first-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"1e818bf6a9f89cc1abbd5a840cdd69869719f92a\"}]}", + "method": "POST", + "url": "/repos/forkOwner/repo/git/trees?ts=300", + "headers": { + "Date": "Wed, 11 Sep 2019 06:23:07 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "878", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4883", + "X-RateLimit-Reset": "1568186244", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"b53599955d513ad304ad0ad7dd4409e7\"", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/forkOwner/repo/git/trees/530c29350340b26398223c8ea4c3639cbe2b317c", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BE8:1510C:289E54:31E9DF:5D7892CA", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"530c29350340b26398223c8ea4c3639cbe2b317c\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/530c29350340b26398223c8ea4c3639cbe2b317c\",\n \"tree\": [\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n },\n {\n \"path\": \"forkOwner\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"bae1ad3548d23fe8fb384249590c2ad9670d0253\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/bae1ad3548d23fe8fb384249590c2ad9670d0253\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"message\":\"Updating “forkOwner/repo/posts/1970-01-01-first-title” metadata\",\"tree\":\"530c29350340b26398223c8ea4c3639cbe2b317c\",\"parents\":[\"ff6bb9a6987bf303285bb76398b1ab820bb3210e\"]}", + "method": "POST", + "url": "/repos/forkOwner/repo/git/commits?ts=300", + "headers": { + "Date": "Wed, 11 Sep 2019 06:23:08 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "1641", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4882", + "X-RateLimit-Reset": "1568186244", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"b6a3b584550c68680415b9eeae0bd56b\"", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/forkOwner/repo/git/commits/d5e1916305d0f359773e61f50fd241d84a8756b5", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BEA:2B24:2A15E16:3351BF3:5D7892CB", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"d5e1916305d0f359773e61f50fd241d84a8756b5\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NzM4Mjc5OmQ1ZTE5MTYzMDVkMGYzNTk3NzNlNjFmNTBmZDI0MWQ4NGE4NzU2YjU=\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/d5e1916305d0f359773e61f50fd241d84a8756b5\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/d5e1916305d0f359773e61f50fd241d84a8756b5\",\n \"author\": {\n \"name\": \"forkOwner\",\n \"email\": \"53494188+forkOwner@users.noreply.github.com\",\n \"date\": \"2019-09-11T06:23:07Z\"\n },\n \"committer\": {\n \"name\": \"forkOwner\",\n \"email\": \"53494188+forkOwner@users.noreply.github.com\",\n \"date\": \"2019-09-11T06:23:07Z\"\n },\n \"tree\": {\n \"sha\": \"530c29350340b26398223c8ea4c3639cbe2b317c\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/530c29350340b26398223c8ea4c3639cbe2b317c\"\n },\n \"message\": \"Updating “forkOwner/repo/posts/1970-01-01-first-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"ff6bb9a6987bf303285bb76398b1ab820bb3210e\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/ff6bb9a6987bf303285bb76398b1ab820bb3210e\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/ff6bb9a6987bf303285bb76398b1ab820bb3210e\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "status": 201 + }, + { + "body": "{\"sha\":\"d5e1916305d0f359773e61f50fd241d84a8756b5\",\"force\":false}", + "method": "PATCH", + "url": "/repos/forkOwner/repo/git/refs/meta/_netlify_cms?ts=300", + "headers": { + "Date": "Wed, 11 Sep 2019 06:23:09 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4881", + "X-RateLimit-Reset": "1568186244", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"98560fe70d6b020d14f75bf95e63ce4a\"", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BEC:9D21:290A17B:32283CF:5D7892CC", + "content-length": "494", + "connection": "keep-alive" + }, + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NzM4Mjc5OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"d5e1916305d0f359773e61f50fd241d84a8756b5\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/d5e1916305d0f359773e61f50fd241d84a8756b5\"\n }\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/pulls/1%20%7D?ts=300", + "headers": { + "Date": "Wed, 11 Sep 2019 06:23:11 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4880", + "X-RateLimit-Reset": "1568186244", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"e1c780c6b16d7e7e4801a78b068769fa\"", + "Last-Modified": "Wed, 11 Sep 2019 06:23:03 GMT", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BF0:2B1F:200A776:273BD9D:5D7892CF", + "content-length": "22281", + "connection": "keep-alive" + }, + "response": "{\n \"url\": \"https://api.github.com/repos/owner/repo/pulls/1\",\n \"id\": 316291228,\n \"node_id\": \"MDExOlB1bGxSZXF1ZXN0MzE2MjkxMjI4\",\n \"html_url\": \"https://github.com/owner/repo/pull/1\",\n \"diff_url\": \"https://github.com/owner/repo/pull/1.diff\",\n \"patch_url\": \"https://github.com/owner/repo/pull/1.patch\",\n \"issue_url\": \"https://api.github.com/repos/owner/repo/issues/1\",\n \"number\": 1,\n \"state\": \"open\",\n \"locked\": false,\n \"title\": \"Create Post “1970-01-01-first-title”\",\n \"user\": {\n \"login\": \"forkOwner\",\n \"id\": 53494188,\n \"node_id\": \"MDQ6VXNlcjUzNDk0MTg4\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/forkOwner\",\n \"html_url\": \"https://github.com/forkOwner\",\n \"followers_url\": \"https://api.github.com/users/forkOwner/followers\",\n \"following_url\": \"https://api.github.com/users/forkOwner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/forkOwner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/forkOwner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/forkOwner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/forkOwner/orgs\",\n \"repos_url\": \"https://api.github.com/users/forkOwner/repos\",\n \"events_url\": \"https://api.github.com/users/forkOwner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/forkOwner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Automatically generated by Netlify CMS\",\n \"created_at\": \"2019-09-11T06:23:03Z\",\n \"updated_at\": \"2019-09-11T06:23:03Z\",\n \"closed_at\": null,\n \"merged_at\": null,\n \"merge_commit_sha\": \"334f7d28a44bd2c60b67148ba9637902c736ba46\",\n \"assignee\": null,\n \"assignees\": [\n\n ],\n \"requested_reviewers\": [\n\n ],\n \"requested_teams\": [\n\n ],\n \"labels\": [\n\n ],\n \"milestone\": null,\n \"commits_url\": \"https://api.github.com/repos/owner/repo/pulls/1/commits\",\n \"review_comments_url\": \"https://api.github.com/repos/owner/repo/pulls/1/comments\",\n \"review_comment_url\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/issues/1/comments\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/18d2d7d41695915de543b3f48bfab502fab19bf0\",\n \"head\": {\n \"label\": \"forkOwner:cms/forkOwner/repo/posts/1970-01-01-first-title\",\n \"ref\": \"cms/forkOwner/repo/posts/1970-01-01-first-title\",\n \"sha\": \"18d2d7d41695915de543b3f48bfab502fab19bf0\",\n \"user\": {\n \"login\": \"forkOwner\",\n \"id\": 53494188,\n \"node_id\": \"MDQ6VXNlcjUzNDk0MTg4\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/forkOwner\",\n \"html_url\": \"https://github.com/forkOwner\",\n \"followers_url\": \"https://api.github.com/users/forkOwner/followers\",\n \"following_url\": \"https://api.github.com/users/forkOwner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/forkOwner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/forkOwner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/forkOwner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/forkOwner/orgs\",\n \"repos_url\": \"https://api.github.com/users/forkOwner/repos\",\n \"events_url\": \"https://api.github.com/users/forkOwner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/forkOwner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 207738279,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc3MzgyNzk=\",\n \"name\": \"repo\",\n \"full_name\": \"forkOwner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"forkOwner\",\n \"id\": 53494188,\n \"node_id\": \"MDQ6VXNlcjUzNDk0MTg4\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/forkOwner\",\n \"html_url\": \"https://github.com/forkOwner\",\n \"followers_url\": \"https://api.github.com/users/forkOwner/followers\",\n \"following_url\": \"https://api.github.com/users/forkOwner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/forkOwner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/forkOwner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/forkOwner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/forkOwner/orgs\",\n \"repos_url\": \"https://api.github.com/users/forkOwner/repos\",\n \"events_url\": \"https://api.github.com/users/forkOwner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/forkOwner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/forkOwner/repo\",\n \"description\": null,\n \"fork\": true,\n \"url\": \"https://api.github.com/repos/forkOwner/repo\",\n \"forks_url\": \"https://api.github.com/repos/forkOwner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/forkOwner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/forkOwner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/forkOwner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/forkOwner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/forkOwner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/forkOwner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/forkOwner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/forkOwner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/forkOwner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/forkOwner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/forkOwner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/forkOwner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/forkOwner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/forkOwner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/forkOwner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/forkOwner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/forkOwner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/forkOwner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/forkOwner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/forkOwner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/forkOwner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/forkOwner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/forkOwner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/forkOwner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/forkOwner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/forkOwner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/forkOwner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/forkOwner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/forkOwner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/forkOwner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/forkOwner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/forkOwner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/forkOwner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/forkOwner/repo/deployments\",\n \"created_at\": \"2019-09-11T06:22:28Z\",\n \"updated_at\": \"2019-09-11T06:22:29Z\",\n \"pushed_at\": \"2019-09-11T06:23:09Z\",\n \"git_url\": \"git://github.com/forkOwner/repo.git\",\n \"ssh_url\": \"git@github.com:forkOwner/repo.git\",\n \"clone_url\": \"https://github.com/forkOwner/repo.git\",\n \"svn_url\": \"https://github.com/forkOwner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": null,\n \"has_issues\": false,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"base\": {\n \"label\": \"owner:master\",\n \"ref\": \"master\",\n \"sha\": \"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 207738178,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc3MzgxNzg=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-11T06:21:51Z\",\n \"updated_at\": \"2019-09-11T06:22:18Z\",\n \"pushed_at\": \"2019-09-11T06:23:04Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 1,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 1,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/1\"\n },\n \"html\": {\n \"href\": \"https://github.com/owner/repo/pull/1\"\n },\n \"issue\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/1\"\n },\n \"comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/1/comments\"\n },\n \"review_comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/1/comments\"\n },\n \"review_comment\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\"\n },\n \"commits\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/1/commits\"\n },\n \"statuses\": {\n \"href\": \"https://api.github.com/repos/owner/repo/statuses/18d2d7d41695915de543b3f48bfab502fab19bf0\"\n }\n },\n \"author_association\": \"NONE\",\n \"merged\": false,\n \"mergeable\": true,\n \"rebaseable\": true,\n \"mergeable_state\": \"clean\",\n \"merged_by\": null,\n \"comments\": 0,\n \"review_comments\": 0,\n \"maintainer_can_modify\": true,\n \"commits\": 1,\n \"additions\": 11,\n \"deletions\": 0,\n \"changed_files\": 1\n}\n", + "status": 200 + }, + { + "body": "{\"state\":\"closed\"}", + "method": "PATCH", + "url": "/repos/owner/repo/pulls/1?ts=300", + "headers": { + "Date": "Wed, 11 Sep 2019 06:23:12 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4879", + "X-RateLimit-Reset": "1568186244", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"7210e9631c9847934052da85bc09ee90\"", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BF2:15110:2B8FB69:35098C3:5D7892D0", + "content-length": "22302", + "connection": "keep-alive" + }, + "response": "{\n \"url\": \"https://api.github.com/repos/owner/repo/pulls/1\",\n \"id\": 316291228,\n \"node_id\": \"MDExOlB1bGxSZXF1ZXN0MzE2MjkxMjI4\",\n \"html_url\": \"https://github.com/owner/repo/pull/1\",\n \"diff_url\": \"https://github.com/owner/repo/pull/1.diff\",\n \"patch_url\": \"https://github.com/owner/repo/pull/1.patch\",\n \"issue_url\": \"https://api.github.com/repos/owner/repo/issues/1\",\n \"number\": 1,\n \"state\": \"closed\",\n \"locked\": false,\n \"title\": \"Create Post “1970-01-01-first-title”\",\n \"user\": {\n \"login\": \"forkOwner\",\n \"id\": 53494188,\n \"node_id\": \"MDQ6VXNlcjUzNDk0MTg4\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/forkOwner\",\n \"html_url\": \"https://github.com/forkOwner\",\n \"followers_url\": \"https://api.github.com/users/forkOwner/followers\",\n \"following_url\": \"https://api.github.com/users/forkOwner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/forkOwner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/forkOwner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/forkOwner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/forkOwner/orgs\",\n \"repos_url\": \"https://api.github.com/users/forkOwner/repos\",\n \"events_url\": \"https://api.github.com/users/forkOwner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/forkOwner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Automatically generated by Netlify CMS\",\n \"created_at\": \"2019-09-11T06:23:03Z\",\n \"updated_at\": \"2019-09-11T06:23:12Z\",\n \"closed_at\": \"2019-09-11T06:23:12Z\",\n \"merged_at\": null,\n \"merge_commit_sha\": \"334f7d28a44bd2c60b67148ba9637902c736ba46\",\n \"assignee\": null,\n \"assignees\": [\n\n ],\n \"requested_reviewers\": [\n\n ],\n \"requested_teams\": [\n\n ],\n \"labels\": [\n\n ],\n \"milestone\": null,\n \"commits_url\": \"https://api.github.com/repos/owner/repo/pulls/1/commits\",\n \"review_comments_url\": \"https://api.github.com/repos/owner/repo/pulls/1/comments\",\n \"review_comment_url\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/issues/1/comments\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/18d2d7d41695915de543b3f48bfab502fab19bf0\",\n \"head\": {\n \"label\": \"forkOwner:cms/forkOwner/repo/posts/1970-01-01-first-title\",\n \"ref\": \"cms/forkOwner/repo/posts/1970-01-01-first-title\",\n \"sha\": \"18d2d7d41695915de543b3f48bfab502fab19bf0\",\n \"user\": {\n \"login\": \"forkOwner\",\n \"id\": 53494188,\n \"node_id\": \"MDQ6VXNlcjUzNDk0MTg4\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/forkOwner\",\n \"html_url\": \"https://github.com/forkOwner\",\n \"followers_url\": \"https://api.github.com/users/forkOwner/followers\",\n \"following_url\": \"https://api.github.com/users/forkOwner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/forkOwner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/forkOwner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/forkOwner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/forkOwner/orgs\",\n \"repos_url\": \"https://api.github.com/users/forkOwner/repos\",\n \"events_url\": \"https://api.github.com/users/forkOwner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/forkOwner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 207738279,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc3MzgyNzk=\",\n \"name\": \"repo\",\n \"full_name\": \"forkOwner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"forkOwner\",\n \"id\": 53494188,\n \"node_id\": \"MDQ6VXNlcjUzNDk0MTg4\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/forkOwner\",\n \"html_url\": \"https://github.com/forkOwner\",\n \"followers_url\": \"https://api.github.com/users/forkOwner/followers\",\n \"following_url\": \"https://api.github.com/users/forkOwner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/forkOwner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/forkOwner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/forkOwner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/forkOwner/orgs\",\n \"repos_url\": \"https://api.github.com/users/forkOwner/repos\",\n \"events_url\": \"https://api.github.com/users/forkOwner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/forkOwner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/forkOwner/repo\",\n \"description\": null,\n \"fork\": true,\n \"url\": \"https://api.github.com/repos/forkOwner/repo\",\n \"forks_url\": \"https://api.github.com/repos/forkOwner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/forkOwner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/forkOwner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/forkOwner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/forkOwner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/forkOwner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/forkOwner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/forkOwner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/forkOwner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/forkOwner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/forkOwner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/forkOwner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/forkOwner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/forkOwner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/forkOwner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/forkOwner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/forkOwner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/forkOwner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/forkOwner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/forkOwner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/forkOwner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/forkOwner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/forkOwner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/forkOwner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/forkOwner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/forkOwner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/forkOwner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/forkOwner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/forkOwner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/forkOwner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/forkOwner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/forkOwner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/forkOwner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/forkOwner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/forkOwner/repo/deployments\",\n \"created_at\": \"2019-09-11T06:22:28Z\",\n \"updated_at\": \"2019-09-11T06:22:29Z\",\n \"pushed_at\": \"2019-09-11T06:23:09Z\",\n \"git_url\": \"git://github.com/forkOwner/repo.git\",\n \"ssh_url\": \"git@github.com:forkOwner/repo.git\",\n \"clone_url\": \"https://github.com/forkOwner/repo.git\",\n \"svn_url\": \"https://github.com/forkOwner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": null,\n \"has_issues\": false,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"base\": {\n \"label\": \"owner:master\",\n \"ref\": \"master\",\n \"sha\": \"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 207738178,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc3MzgxNzg=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-11T06:21:51Z\",\n \"updated_at\": \"2019-09-11T06:22:18Z\",\n \"pushed_at\": \"2019-09-11T06:23:04Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/1\"\n },\n \"html\": {\n \"href\": \"https://github.com/owner/repo/pull/1\"\n },\n \"issue\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/1\"\n },\n \"comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/1/comments\"\n },\n \"review_comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/1/comments\"\n },\n \"review_comment\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\"\n },\n \"commits\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/1/commits\"\n },\n \"statuses\": {\n \"href\": \"https://api.github.com/repos/owner/repo/statuses/18d2d7d41695915de543b3f48bfab502fab19bf0\"\n }\n },\n \"author_association\": \"NONE\",\n \"merged\": false,\n \"mergeable\": true,\n \"rebaseable\": true,\n \"mergeable_state\": \"clean\",\n \"merged_by\": null,\n \"comments\": 0,\n \"review_comments\": 0,\n \"maintainer_can_modify\": false,\n \"commits\": 1,\n \"additions\": 11,\n \"deletions\": 0,\n \"changed_files\": 1\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/forkOwner/repo/git/refs/meta/_netlify_cms?ts=300", + "headers": { + "Date": "Wed, 11 Sep 2019 06:23:13 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4878", + "X-RateLimit-Reset": "1568186244", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"98560fe70d6b020d14f75bf95e63ce4a\"", + "Last-Modified": "Wed, 11 Sep 2019 06:22:29 GMT", + "X-Poll-Interval": "300", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BF4:B4E0:2880E46:3163D99:5D7892D1", + "content-length": "494", + "connection": "keep-alive" + }, + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NzM4Mjc5OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"d5e1916305d0f359773e61f50fd241d84a8756b5\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/d5e1916305d0f359773e61f50fd241d84a8756b5\"\n }\n}\n", + "status": 200 + }, + { + "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjEsImhlYWQiOnsibGFiZWwiOiJmb3JrT3duZXI6Y21zL2ZvcmtPd25lci9yZXBvL3Bvc3RzLzE5NzAtMDEtMDEtZmlyc3QtdGl0bGUiLCJyZWYiOiJjbXMvZm9ya093bmVyL3JlcG8vcG9zdHMvMTk3MC0wMS0wMS1maXJzdC10aXRsZSIsInNoYSI6IjE4ZDJkN2Q0MTY5NTkxNWRlNTQzYjNmNDhiZmFiNTAyZmFiMTliZjAiLCJ1c2VyIjp7ImxvZ2luIjoiZm9ya093bmVyIiwiaWQiOjUzNDk0MTg4LCJub2RlX2lkIjoiTURRNlZYTmxjalV6TkRrME1UZzQiLCJhdmF0YXJfdXJsIjoiaHR0cHM6Ly9hdmF0YXJzMS5naXRodWJ1c2VyY29udGVudC5jb20vdS83ODkyNDg5P3Y9NCIsImdyYXZhdGFyX2lkIjoiIiwidXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS91c2Vycy9mb3JrT3duZXIiLCJodG1sX3VybCI6Imh0dHBzOi8vZ2l0aHViLmNvbS9mb3JrT3duZXIiLCJmb2xsb3dlcnNfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS91c2Vycy9mb3JrT3duZXIvZm9sbG93ZXJzIiwiZm9sbG93aW5nX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vdXNlcnMvZm9ya093bmVyL2ZvbGxvd2luZ3svb3RoZXJfdXNlcn0iLCJnaXN0c191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3VzZXJzL2ZvcmtPd25lci9naXN0c3svZ2lzdF9pZH0iLCJzdGFycmVkX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vdXNlcnMvZm9ya093bmVyL3N0YXJyZWR7L293bmVyfXsvcmVwb30iLCJzdWJzY3JpcHRpb25zX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vdXNlcnMvZm9ya093bmVyL3N1YnNjcmlwdGlvbnMiLCJvcmdhbml6YXRpb25zX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vdXNlcnMvZm9ya093bmVyL29yZ3MiLCJyZXBvc191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3VzZXJzL2ZvcmtPd25lci9yZXBvcyIsImV2ZW50c191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3VzZXJzL2ZvcmtPd25lci9ldmVudHN7L3ByaXZhY3l9IiwicmVjZWl2ZWRfZXZlbnRzX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vdXNlcnMvZm9ya093bmVyL3JlY2VpdmVkX2V2ZW50cyIsInR5cGUiOiJVc2VyIiwic2l0ZV9hZG1pbiI6ZmFsc2V9LCJyZXBvIjp7ImlkIjoyMDc3MzgyNzksIm5vZGVfaWQiOiJNREV3T2xKbGNHOXphWFJ2Y25reU1EYzNNemd5TnprPSIsIm5hbWUiOiJyZXBvIiwiZnVsbF9uYW1lIjoiZm9ya093bmVyL3JlcG8iLCJwcml2YXRlIjpmYWxzZSwib3duZXIiOnsibG9naW4iOiJmb3JrT3duZXIiLCJpZCI6NTM0OTQxODgsIm5vZGVfaWQiOiJNRFE2VlhObGNqVXpORGswTVRnNCIsImF2YXRhcl91cmwiOiJodHRwczovL2F2YXRhcnMxLmdpdGh1YnVzZXJjb250ZW50LmNvbS91Lzc4OTI0ODk/dj00IiwiZ3JhdmF0YXJfaWQiOiIiLCJ1cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3VzZXJzL2ZvcmtPd25lciIsImh0bWxfdXJsIjoiaHR0cHM6Ly9naXRodWIuY29tL2ZvcmtPd25lciIsImZvbGxvd2Vyc191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3VzZXJzL2ZvcmtPd25lci9mb2xsb3dlcnMiLCJmb2xsb3dpbmdfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS91c2Vycy9mb3JrT3duZXIvZm9sbG93aW5ney9vdGhlcl91c2VyfSIsImdpc3RzX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vdXNlcnMvZm9ya093bmVyL2dpc3Rzey9naXN0X2lkfSIsInN0YXJyZWRfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS91c2Vycy9mb3JrT3duZXIvc3RhcnJlZHsvb3duZXJ9ey9yZXBvfSIsInN1YnNjcmlwdGlvbnNfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS91c2Vycy9mb3JrT3duZXIvc3Vic2NyaXB0aW9ucyIsIm9yZ2FuaXphdGlvbnNfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS91c2Vycy9mb3JrT3duZXIvb3JncyIsInJlcG9zX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vdXNlcnMvZm9ya093bmVyL3JlcG9zIiwiZXZlbnRzX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vdXNlcnMvZm9ya093bmVyL2V2ZW50c3svcHJpdmFjeX0iLCJyZWNlaXZlZF9ldmVudHNfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS91c2Vycy9mb3JrT3duZXIvcmVjZWl2ZWRfZXZlbnRzIiwidHlwZSI6IlVzZXIiLCJzaXRlX2FkbWluIjpmYWxzZX0sImh0bWxfdXJsIjoiaHR0cHM6Ly9naXRodWIuY29tL2ZvcmtPd25lci9yZXBvIiwiZGVzY3JpcHRpb24iOm51bGwsImZvcmsiOnRydWUsInVybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vcmVwb3MvZm9ya093bmVyL3JlcG8iLCJmb3Jrc191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL2ZvcmtzIiwia2V5c191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL2tleXN7L2tleV9pZH0iLCJjb2xsYWJvcmF0b3JzX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vcmVwb3MvZm9ya093bmVyL3JlcG8vY29sbGFib3JhdG9yc3svY29sbGFib3JhdG9yfSIsInRlYW1zX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vcmVwb3MvZm9ya093bmVyL3JlcG8vdGVhbXMiLCJob29rc191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL2hvb2tzIiwiaXNzdWVfZXZlbnRzX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vcmVwb3MvZm9ya093bmVyL3JlcG8vaXNzdWVzL2V2ZW50c3svbnVtYmVyfSIsImV2ZW50c191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL2V2ZW50cyIsImFzc2lnbmVlc191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL2Fzc2lnbmVlc3svdXNlcn0iLCJicmFuY2hlc191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL2JyYW5jaGVzey9icmFuY2h9IiwidGFnc191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL3RhZ3MiLCJibG9ic191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL2dpdC9ibG9ic3svc2hhfSIsImdpdF90YWdzX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vcmVwb3MvZm9ya093bmVyL3JlcG8vZ2l0L3RhZ3N7L3NoYX0iLCJnaXRfcmVmc191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL2dpdC9yZWZzey9zaGF9IiwidHJlZXNfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS9yZXBvcy9mb3JrT3duZXIvcmVwby9naXQvdHJlZXN7L3NoYX0iLCJzdGF0dXNlc191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL3N0YXR1c2VzL3tzaGF9IiwibGFuZ3VhZ2VzX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vcmVwb3MvZm9ya093bmVyL3JlcG8vbGFuZ3VhZ2VzIiwic3RhcmdhemVyc191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL3N0YXJnYXplcnMiLCJjb250cmlidXRvcnNfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS9yZXBvcy9mb3JrT3duZXIvcmVwby9jb250cmlidXRvcnMiLCJzdWJzY3JpYmVyc191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL3N1YnNjcmliZXJzIiwic3Vic2NyaXB0aW9uX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vcmVwb3MvZm9ya093bmVyL3JlcG8vc3Vic2NyaXB0aW9uIiwiY29tbWl0c191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL2NvbW1pdHN7L3NoYX0iLCJnaXRfY29tbWl0c191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL2dpdC9jb21taXRzey9zaGF9IiwiY29tbWVudHNfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS9yZXBvcy9mb3JrT3duZXIvcmVwby9jb21tZW50c3svbnVtYmVyfSIsImlzc3VlX2NvbW1lbnRfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS9yZXBvcy9mb3JrT3duZXIvcmVwby9pc3N1ZXMvY29tbWVudHN7L251bWJlcn0iLCJjb250ZW50c191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL2NvbnRlbnRzL3srcGF0aH0iLCJjb21wYXJlX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vcmVwb3MvZm9ya093bmVyL3JlcG8vY29tcGFyZS97YmFzZX0uLi57aGVhZH0iLCJtZXJnZXNfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS9yZXBvcy9mb3JrT3duZXIvcmVwby9tZXJnZXMiLCJhcmNoaXZlX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vcmVwb3MvZm9ya093bmVyL3JlcG8ve2FyY2hpdmVfZm9ybWF0fXsvcmVmfSIsImRvd25sb2Fkc191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL2Rvd25sb2FkcyIsImlzc3Vlc191cmwiOiJodHRwczovL2FwaS5naXRodWIuY29tL3JlcG9zL2ZvcmtPd25lci9yZXBvL2lzc3Vlc3svbnVtYmVyfSIsInB1bGxzX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vcmVwb3MvZm9ya093bmVyL3JlcG8vcHVsbHN7L251bWJlcn0iLCJtaWxlc3RvbmVzX3VybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vcmVwb3MvZm9ya093bmVyL3JlcG8vbWlsZXN0b25lc3svbnVtYmVyfSIsIm5vdGlmaWNhdGlvbnNfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS9yZXBvcy9mb3JrT3duZXIvcmVwby9ub3RpZmljYXRpb25zez9zaW5jZSxhbGwscGFydGljaXBhdGluZ30iLCJsYWJlbHNfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS9yZXBvcy9mb3JrT3duZXIvcmVwby9sYWJlbHN7L25hbWV9IiwicmVsZWFzZXNfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS9yZXBvcy9mb3JrT3duZXIvcmVwby9yZWxlYXNlc3svaWR9IiwiZGVwbG95bWVudHNfdXJsIjoiaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS9yZXBvcy9mb3JrT3duZXIvcmVwby9kZXBsb3ltZW50cyIsImNyZWF0ZWRfYXQiOiIyMDE5LTA5LTExVDA2OjIyOjI4WiIsInVwZGF0ZWRfYXQiOiIyMDE5LTA5LTExVDA2OjIyOjI5WiIsInB1c2hlZF9hdCI6IjIwMTktMDktMTFUMDY6MjI6NTZaIiwiZ2l0X3VybCI6ImdpdDovL2dpdGh1Yi5jb20vZm9ya093bmVyL3JlcG8uZ2l0Iiwic3NoX3VybCI6ImdpdEBnaXRodWIuY29tOmZvcmtPd25lci9yZXBvLmdpdCIsImNsb25lX3VybCI6Imh0dHBzOi8vZ2l0aHViLmNvbS9mb3JrT3duZXIvcmVwby5naXQiLCJzdm5fdXJsIjoiaHR0cHM6Ly9naXRodWIuY29tL2ZvcmtPd25lci9yZXBvIiwiaG9tZXBhZ2UiOm51bGwsInNpemUiOjAsInN0YXJnYXplcnNfY291bnQiOjAsIndhdGNoZXJzX2NvdW50IjowLCJsYW5ndWFnZSI6bnVsbCwiaGFzX2lzc3VlcyI6ZmFsc2UsImhhc19wcm9qZWN0cyI6dHJ1ZSwiaGFzX2Rvd25sb2FkcyI6dHJ1ZSwiaGFzX3dpa2kiOnRydWUsImhhc19wYWdlcyI6ZmFsc2UsImZvcmtzX2NvdW50IjowLCJtaXJyb3JfdXJsIjpudWxsLCJhcmNoaXZlZCI6ZmFsc2UsImRpc2FibGVkIjpmYWxzZSwib3Blbl9pc3N1ZXNfY291bnQiOjAsImxpY2Vuc2UiOnsia2V5IjoibWl0IiwibmFtZSI6Ik1JVCBMaWNlbnNlIiwic3BkeF9pZCI6Ik1JVCIsInVybCI6Imh0dHBzOi8vYXBpLmdpdGh1Yi5jb20vbGljZW5zZXMvbWl0Iiwibm9kZV9pZCI6Ik1EYzZUR2xqWlc1elpURXoifSwiZm9ya3MiOjAsIm9wZW5faXNzdWVzIjowLCJ3YXRjaGVycyI6MCwiZGVmYXVsdF9icmFuY2giOiJtYXN0ZXIifX19LCJ1c2VyIjoiZm9ya093bmVyIiwic3RhdHVzIjoiZHJhZnQiLCJicmFuY2giOiJjbXMvZm9ya093bmVyL3JlcG8vcG9zdHMvMTk3MC0wMS0wMS1maXJzdC10aXRsZSIsImNvbGxlY3Rpb24iOiJwb3N0cyIsImNvbW1pdE1lc3NhZ2UiOiJDcmVhdGUgUG9zdCDigJwxOTcwLTAxLTAxLWZpcnN0LXRpdGxl4oCdIiwidGl0bGUiOiJmaXJzdCB0aXRsZSIsImRlc2NyaXB0aW9uIjoiZmlyc3QgZGVzY3JpcHRpb24iLCJvYmplY3RzIjp7ImVudHJ5Ijp7InBhdGgiOiJjb250ZW50L3Bvc3RzLzE5NzAtMDEtMDEtZmlyc3QtdGl0bGUubWQiLCJzaGEiOiJhMDQxMjQ1ODE0ODkyZTNmNzNmNjNjYTU0MzMzZmRhNjQ5YjdmYzBiIn0sImZpbGVzIjpbXX0sInRpbWVTdGFtcCI6IjE5NzAtMDEtMDFUMDA6MDA6MDAuMzAwWiJ9\",\"encoding\":\"base64\"}", + "method": "POST", + "url": "/repos/forkOwner/repo/git/blobs?ts=300", + "headers": { + "Date": "Wed, 11 Sep 2019 06:23:14 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "212", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4877", + "X-RateLimit-Reset": "1568186244", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"1e5b69f73dbf5c2acbe218861bf8b21a\"", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/forkOwner/repo/git/blobs/02d4fb3b96bdb8fb2da6a78c306bbd760ac9115a", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BF7:B4DE:1FC29C9:26C0B70:5D7892D1", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"02d4fb3b96bdb8fb2da6a78c306bbd760ac9115a\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/02d4fb3b96bdb8fb2da6a78c306bbd760ac9115a\"\n}\n", + "status": 201 + }, + { + "method": "GET", + "url": "/repos/forkOwner/repo/git/trees/d5e1916305d0f359773e61f50fd241d84a8756b5?ts=300", + "headers": { + "Date": "Wed, 11 Sep 2019 06:23:14 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4876", + "X-RateLimit-Reset": "1568186244", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"761b56f7ebd9d9493a2889f9f23e552a\"", + "Last-Modified": "Wed, 11 Sep 2019 06:22:29 GMT", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BFA:1510F:1FC2424:26BEAB0:5D7892D2", + "content-length": "878", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"d5e1916305d0f359773e61f50fd241d84a8756b5\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/d5e1916305d0f359773e61f50fd241d84a8756b5\",\n \"tree\": [\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n },\n {\n \"path\": \"forkOwner\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"bae1ad3548d23fe8fb384249590c2ad9670d0253\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/bae1ad3548d23fe8fb384249590c2ad9670d0253\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 200 + }, + { + "body": "{\"base_tree\":\"d5e1916305d0f359773e61f50fd241d84a8756b5\",\"tree\":[{\"path\":\"forkOwner/repo/posts/1970-01-01-first-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"02d4fb3b96bdb8fb2da6a78c306bbd760ac9115a\"}]}", + "method": "POST", + "url": "/repos/forkOwner/repo/git/trees?ts=300", + "headers": { + "Date": "Wed, 11 Sep 2019 06:23:15 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "878", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4875", + "X-RateLimit-Reset": "1568186244", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"f346faf8fe8b8a11f3a19eebf95b21ce\"", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/forkOwner/repo/git/trees/9c042afb7711d92bca67579ff7e4f1ef4da7404e", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BFB:1510D:7DC36C:9A41CF:5D7892D3", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"9c042afb7711d92bca67579ff7e4f1ef4da7404e\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/9c042afb7711d92bca67579ff7e4f1ef4da7404e\",\n \"tree\": [\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n },\n {\n \"path\": \"forkOwner\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"f225a3c576d956faba8e02cd7cf88d9ced06bdbb\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/f225a3c576d956faba8e02cd7cf88d9ced06bdbb\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"message\":\"Updating “forkOwner/repo/posts/1970-01-01-first-title” metadata\",\"tree\":\"9c042afb7711d92bca67579ff7e4f1ef4da7404e\",\"parents\":[\"d5e1916305d0f359773e61f50fd241d84a8756b5\"]}", + "method": "POST", + "url": "/repos/forkOwner/repo/git/commits?ts=300", + "headers": { + "Date": "Wed, 11 Sep 2019 06:23:16 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "1641", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4874", + "X-RateLimit-Reset": "1568186244", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"c677ccbe6bdfd74373519c2e10c27b35\"", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/forkOwner/repo/git/commits/99e53baa6c6996a241aa736806788ce76523551e", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BFD:B4DA:911B85:B14DDF:5D7892D3", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"99e53baa6c6996a241aa736806788ce76523551e\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NzM4Mjc5Ojk5ZTUzYmFhNmM2OTk2YTI0MWFhNzM2ODA2Nzg4Y2U3NjUyMzU1MWU=\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/99e53baa6c6996a241aa736806788ce76523551e\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/99e53baa6c6996a241aa736806788ce76523551e\",\n \"author\": {\n \"name\": \"forkOwner\",\n \"email\": \"53494188+forkOwner@users.noreply.github.com\",\n \"date\": \"2019-09-11T06:23:16Z\"\n },\n \"committer\": {\n \"name\": \"forkOwner\",\n \"email\": \"53494188+forkOwner@users.noreply.github.com\",\n \"date\": \"2019-09-11T06:23:16Z\"\n },\n \"tree\": {\n \"sha\": \"9c042afb7711d92bca67579ff7e4f1ef4da7404e\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/trees/9c042afb7711d92bca67579ff7e4f1ef4da7404e\"\n },\n \"message\": \"Updating “forkOwner/repo/posts/1970-01-01-first-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"d5e1916305d0f359773e61f50fd241d84a8756b5\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/d5e1916305d0f359773e61f50fd241d84a8756b5\",\n \"html_url\": \"https://github.com/forkOwner/repo/commit/d5e1916305d0f359773e61f50fd241d84a8756b5\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "status": 201 + }, + { + "body": "{\"sha\":\"99e53baa6c6996a241aa736806788ce76523551e\",\"force\":false}", + "method": "PATCH", + "url": "/repos/forkOwner/repo/git/refs/meta/_netlify_cms?ts=300", + "headers": { + "Date": "Wed, 11 Sep 2019 06:23:17 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4873", + "X-RateLimit-Reset": "1568186244", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"d098bd86ada8d29df11d6ffbd1f88c3a\"", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BFE:1510F:1FC25DB:26BECC7:5D7892D4", + "content-length": "494", + "connection": "keep-alive" + }, + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NzM4Mjc5OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"99e53baa6c6996a241aa736806788ce76523551e\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/forkOwner/repo/git/commits/99e53baa6c6996a241aa736806788ce76523551e\"\n }\n}\n", + "status": 200 + }, + { + "body": "{\"state\":\"closed\"}", + "method": "PATCH", + "url": "/repos/owner/repo/pulls/1?ts=300", + "headers": { + "Date": "Wed, 11 Sep 2019 06:23:18 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4872", + "X-RateLimit-Reset": "1568186244", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"232b35fe7b732cc2894d20c7c75e6ec5\"", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A01:2B1F:200AE74:273C5FF:5D7892D6", + "content-length": "22303", + "connection": "keep-alive" + }, + "response": "{\n \"url\": \"https://api.github.com/repos/owner/repo/pulls/1\",\n \"id\": 316291228,\n \"node_id\": \"MDExOlB1bGxSZXF1ZXN0MzE2MjkxMjI4\",\n \"html_url\": \"https://github.com/owner/repo/pull/1\",\n \"diff_url\": \"https://github.com/owner/repo/pull/1.diff\",\n \"patch_url\": \"https://github.com/owner/repo/pull/1.patch\",\n \"issue_url\": \"https://api.github.com/repos/owner/repo/issues/1\",\n \"number\": 1,\n \"state\": \"closed\",\n \"locked\": false,\n \"title\": \"Create Post “1970-01-01-first-title”\",\n \"user\": {\n \"login\": \"forkOwner\",\n \"id\": 53494188,\n \"node_id\": \"MDQ6VXNlcjUzNDk0MTg4\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/forkOwner\",\n \"html_url\": \"https://github.com/forkOwner\",\n \"followers_url\": \"https://api.github.com/users/forkOwner/followers\",\n \"following_url\": \"https://api.github.com/users/forkOwner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/forkOwner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/forkOwner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/forkOwner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/forkOwner/orgs\",\n \"repos_url\": \"https://api.github.com/users/forkOwner/repos\",\n \"events_url\": \"https://api.github.com/users/forkOwner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/forkOwner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Automatically generated by Netlify CMS\",\n \"created_at\": \"2019-09-11T06:23:03Z\",\n \"updated_at\": \"2019-09-11T06:23:18Z\",\n \"closed_at\": \"2019-09-11T06:23:12Z\",\n \"merged_at\": null,\n \"merge_commit_sha\": \"334f7d28a44bd2c60b67148ba9637902c736ba46\",\n \"assignee\": null,\n \"assignees\": [\n\n ],\n \"requested_reviewers\": [\n\n ],\n \"requested_teams\": [\n\n ],\n \"labels\": [\n\n ],\n \"milestone\": null,\n \"commits_url\": \"https://api.github.com/repos/owner/repo/pulls/1/commits\",\n \"review_comments_url\": \"https://api.github.com/repos/owner/repo/pulls/1/comments\",\n \"review_comment_url\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/issues/1/comments\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/18d2d7d41695915de543b3f48bfab502fab19bf0\",\n \"head\": {\n \"label\": \"forkOwner:cms/forkOwner/repo/posts/1970-01-01-first-title\",\n \"ref\": \"cms/forkOwner/repo/posts/1970-01-01-first-title\",\n \"sha\": \"18d2d7d41695915de543b3f48bfab502fab19bf0\",\n \"user\": {\n \"login\": \"forkOwner\",\n \"id\": 53494188,\n \"node_id\": \"MDQ6VXNlcjUzNDk0MTg4\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/forkOwner\",\n \"html_url\": \"https://github.com/forkOwner\",\n \"followers_url\": \"https://api.github.com/users/forkOwner/followers\",\n \"following_url\": \"https://api.github.com/users/forkOwner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/forkOwner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/forkOwner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/forkOwner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/forkOwner/orgs\",\n \"repos_url\": \"https://api.github.com/users/forkOwner/repos\",\n \"events_url\": \"https://api.github.com/users/forkOwner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/forkOwner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 207738279,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc3MzgyNzk=\",\n \"name\": \"repo\",\n \"full_name\": \"forkOwner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"forkOwner\",\n \"id\": 53494188,\n \"node_id\": \"MDQ6VXNlcjUzNDk0MTg4\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/forkOwner\",\n \"html_url\": \"https://github.com/forkOwner\",\n \"followers_url\": \"https://api.github.com/users/forkOwner/followers\",\n \"following_url\": \"https://api.github.com/users/forkOwner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/forkOwner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/forkOwner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/forkOwner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/forkOwner/orgs\",\n \"repos_url\": \"https://api.github.com/users/forkOwner/repos\",\n \"events_url\": \"https://api.github.com/users/forkOwner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/forkOwner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/forkOwner/repo\",\n \"description\": null,\n \"fork\": true,\n \"url\": \"https://api.github.com/repos/forkOwner/repo\",\n \"forks_url\": \"https://api.github.com/repos/forkOwner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/forkOwner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/forkOwner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/forkOwner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/forkOwner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/forkOwner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/forkOwner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/forkOwner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/forkOwner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/forkOwner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/forkOwner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/forkOwner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/forkOwner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/forkOwner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/forkOwner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/forkOwner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/forkOwner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/forkOwner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/forkOwner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/forkOwner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/forkOwner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/forkOwner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/forkOwner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/forkOwner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/forkOwner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/forkOwner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/forkOwner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/forkOwner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/forkOwner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/forkOwner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/forkOwner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/forkOwner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/forkOwner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/forkOwner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/forkOwner/repo/deployments\",\n \"created_at\": \"2019-09-11T06:22:28Z\",\n \"updated_at\": \"2019-09-11T06:22:29Z\",\n \"pushed_at\": \"2019-09-11T06:23:17Z\",\n \"git_url\": \"git://github.com/forkOwner/repo.git\",\n \"ssh_url\": \"git@github.com:forkOwner/repo.git\",\n \"clone_url\": \"https://github.com/forkOwner/repo.git\",\n \"svn_url\": \"https://github.com/forkOwner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": null,\n \"has_issues\": false,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"base\": {\n \"label\": \"owner:master\",\n \"ref\": \"master\",\n \"sha\": \"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 207738178,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc3MzgxNzg=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-11T06:21:51Z\",\n \"updated_at\": \"2019-09-11T06:22:18Z\",\n \"pushed_at\": \"2019-09-11T06:23:04Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/1\"\n },\n \"html\": {\n \"href\": \"https://github.com/owner/repo/pull/1\"\n },\n \"issue\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/1\"\n },\n \"comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/1/comments\"\n },\n \"review_comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/1/comments\"\n },\n \"review_comment\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\"\n },\n \"commits\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/1/commits\"\n },\n \"statuses\": {\n \"href\": \"https://api.github.com/repos/owner/repo/statuses/18d2d7d41695915de543b3f48bfab502fab19bf0\"\n }\n },\n \"author_association\": \"NONE\",\n \"merged\": false,\n \"mergeable\": true,\n \"rebaseable\": false,\n \"mergeable_state\": \"clean\",\n \"merged_by\": null,\n \"comments\": 0,\n \"review_comments\": 0,\n \"maintainer_can_modify\": false,\n \"commits\": 1,\n \"additions\": 11,\n \"deletions\": 0,\n \"changed_files\": 1\n}\n", + "status": 200 + }, + { + "method": "DELETE", + "url": "/repos/forkOwner/repo/git/refs/heads/cms%2FforkOwner%2Frepo%2Fposts%2F1970-01-01-first-title?ts=300", + "headers": { + "Date": "Wed, 11 Sep 2019 06:23:19 GMT", + "Content-Type": "application/octet-stream", + "Server": "GitHub.com", + "Status": "204 No Content", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4871", + "X-RateLimit-Reset": "1568186244", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7A05:244EB:2A757F9:33BAF7E:5D7892D6", + "content-length": "0", + "connection": "keep-alive" + }, + "response": null, + "status": 204 + } +] \ No newline at end of file diff --git a/cypress/fixtures/Github Backend Editorial Workflow - REST API - Open Authoring__can update a draft entry on fork.json b/cypress/fixtures/Github Backend Editorial Workflow - REST API - Open Authoring__can update a draft entry on fork.json new file mode 100644 index 00000000..7973c137 --- /dev/null +++ b/cypress/fixtures/Github Backend Editorial Workflow - REST API - Open Authoring__can update a draft entry on fork.json @@ -0,0 +1,2416 @@ +[ + { + "method": "GET", + "url": "/repos/forkOwner/repo/contents/forkOwner/repo/posts/1970-01-01-first-title.json?ts=1568123841110&ref=refs/meta/_netlify_cms", + "headers": { + "Date": "Tue, 10 Sep 2019 13:57:21 GMT", + "Content-Type": "application/vnd.github.VERSION.raw; charset=utf-8", + "Content-Length": "468", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4751", + "X-RateLimit-Reset": "1568127381", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"82976a6de475d051a4819a4a72f8c983d062263f\"", + "Last-Modified": "Tue, 10 Sep 2019 13:57:08 GMT", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A6D:3ED7B:1276CFB:166DB25:5D77ABC1", + "connection": "keep-alive" + }, + "response": "{\"type\":\"PR\",\"user\":\"forkOwner\",\"status\":\"draft\",\"branch\":\"cms/forkOwner/repo/posts/1970-01-01-first-title\",\"collection\":\"posts\",\"commitMessage\":\"Create Post “1970-01-01-first-title”\",\"title\":\"first title\",\"description\":\"first description\",\"objects\":{\"entry\":{\"path\":\"content/posts/1970-01-01-first-title.md\",\"sha\":\"a041245814892e3f73f63ca54333fda649b7fc0b\"},\"files\":[]},\"timeStamp\":\"1970-01-01T00:00:00.300Z\"}", + "status": 200 + }, + { + "method": "GET", + "url": "/user", + "headers": { + "Date": "Tue, 10 Sep 2019 13:57:22 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4433", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"fb606f875be1d23b690ea5f5e26b9fe9\"", + "Last-Modified": "Wed, 28 Aug 2019 04:48:54 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A77:3ED77:AC33C9:D0C229:5D77ABC2", + "content-length": "1321", + "connection": "keep-alive" + }, + "response": "{\"login\":\"owner\",\"id\":1,\"avatar_url\":\"https://avatars1.githubusercontent.com/u/7892489?v=4\",\"name\":\"owner\"}", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/collaborators/owner/permission", + "headers": { + "Date": "Tue, 10 Sep 2019 13:57:23 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4432", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"254416b9fc40a4c5acc82d271a9b493b\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A78:15110:1899627:1DE38D4:5D77ABC3", + "content-length": "1071", + "connection": "keep-alive" + }, + "response": "{\n \"permission\": \"admin\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/user?ts=0", + "headers": { + "Date": "Tue, 10 Sep 2019 13:57:23 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4431", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"fb606f875be1d23b690ea5f5e26b9fe9\"", + "Last-Modified": "Wed, 28 Aug 2019 04:48:54 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A7A:2B19:AA01D9:CEF055:5D77ABC3", + "content-length": "1321", + "connection": "keep-alive" + }, + "response": "{\"login\":\"owner\",\"id\":1,\"avatar_url\":\"https://avatars1.githubusercontent.com/u/7892489?v=4\",\"name\":\"owner\"}", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo?ts=0", + "headers": { + "Date": "Tue, 10 Sep 2019 13:57:24 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4430", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"1e17d46ab544c936820e78f4f03fde34\"", + "Last-Modified": "Tue, 10 Sep 2019 13:56:22 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A7C:2B19:AA023F:CEF0D1:5D77ABC4", + "content-length": "7296", + "connection": "keep-alive" + }, + "response": "{\n \"id\": 207573159,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NzMxNTk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-10T13:52:54Z\",\n \"updated_at\": \"2019-09-10T13:56:22Z\",\n \"pushed_at\": \"2019-09-10T13:56:20Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\",\n \"permissions\": {\n \"admin\": true,\n \"push\": true,\n \"pull\": true\n },\n \"allow_squash_merge\": true,\n \"allow_merge_commit\": true,\n \"allow_rebase_merge\": true,\n \"network_count\": 1,\n \"subscribers_count\": 1\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/content/posts?ts=0&ref=master", + "headers": { + "Date": "Tue, 10 Sep 2019 13:57:25 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4429", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"c5b7f6d674ba193bb7b4a5fcf4933034e1b7f2b7\"", + "Last-Modified": "Tue, 10 Sep 2019 13:56:22 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A7E:9D21:17523C4:1C6A1A3:5D77ABC4", + "content-length": "7422", + "connection": "keep-alive" + }, + "response": "[\n {\n \"name\": \"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"path\": \"content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"sha\": \"6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"size\": 1707,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"html\": \"https://github.com/owner/repo/blob/master/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md\"\n }\n },\n {\n \"name\": \"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"path\": \"content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"sha\": \"d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"size\": 2565,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"html\": \"https://github.com/owner/repo/blob/master/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\"\n }\n },\n {\n \"name\": \"2016-02-02---A-Brief-History-of-Typography.md\",\n \"path\": \"content/posts/2016-02-02---A-Brief-History-of-Typography.md\",\n \"sha\": \"0eea554365f002d0f1572af9a58522d335a794d5\",\n \"size\": 2786,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2016-02-02---A-Brief-History-of-Typography.md?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/content/posts/2016-02-02---A-Brief-History-of-Typography.md\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/content/posts/2016-02-02---A-Brief-History-of-Typography.md\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2016-02-02---A-Brief-History-of-Typography.md?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\",\n \"html\": \"https://github.com/owner/repo/blob/master/content/posts/2016-02-02---A-Brief-History-of-Typography.md\"\n }\n },\n {\n \"name\": \"2017-18-08---The-Birth-of-Movable-Type.md\",\n \"path\": \"content/posts/2017-18-08---The-Birth-of-Movable-Type.md\",\n \"sha\": \"44f78c474d04273185a95821426f75affc9b0044\",\n \"size\": 16071,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2017-18-08---The-Birth-of-Movable-Type.md?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/content/posts/2017-18-08---The-Birth-of-Movable-Type.md\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/content/posts/2017-18-08---The-Birth-of-Movable-Type.md\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2017-18-08---The-Birth-of-Movable-Type.md?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\",\n \"html\": \"https://github.com/owner/repo/blob/master/content/posts/2017-18-08---The-Birth-of-Movable-Type.md\"\n }\n },\n {\n \"name\": \"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"path\": \"content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"sha\": \"a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"size\": 7465,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"html\": \"https://github.com/owner/repo/blob/master/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md\"\n }\n }\n]\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/static/media?ts=0&ref=master", + "headers": { + "Date": "Tue, 10 Sep 2019 13:57:25 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4428", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"c5b7f6d674ba193bb7b4a5fcf4933034e1b7f2b7\"", + "Last-Modified": "Tue, 10 Sep 2019 13:56:22 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A80:B4DA:52F3E4:6530EB:5D77ABC4", + "content-length": "12362", + "connection": "keep-alive" + }, + "response": "[\n {\n \"name\": \"42-line-bible.jpg\",\n \"path\": \"static/media/42-line-bible.jpg\",\n \"sha\": \"41c8d12f9ca5864beb827c381fbeff935209d5fb\",\n \"size\": 671242,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/static/media/42-line-bible.jpg?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/static/media/42-line-bible.jpg\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/41c8d12f9ca5864beb827c381fbeff935209d5fb\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/static/media/42-line-bible.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/static/media/42-line-bible.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/41c8d12f9ca5864beb827c381fbeff935209d5fb\",\n \"html\": \"https://github.com/owner/repo/blob/master/static/media/42-line-bible.jpg\"\n }\n },\n {\n \"name\": \"gutenberg.jpg\",\n \"path\": \"static/media/gutenberg.jpg\",\n \"sha\": \"04315e355873ea5d358d9c371c39a6845c1ae4ae\",\n \"size\": 155002,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/static/media/gutenberg.jpg?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/static/media/gutenberg.jpg\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/04315e355873ea5d358d9c371c39a6845c1ae4ae\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/static/media/gutenberg.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/static/media/gutenberg.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/04315e355873ea5d358d9c371c39a6845c1ae4ae\",\n \"html\": \"https://github.com/owner/repo/blob/master/static/media/gutenberg.jpg\"\n }\n },\n {\n \"name\": \"image-0.jpg\",\n \"path\": \"static/media/image-0.jpg\",\n \"sha\": \"b70a1b64fd4fa9635823231a0ba92c6dc9393f16\",\n \"size\": 660287,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/static/media/image-0.jpg?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/static/media/image-0.jpg\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/b70a1b64fd4fa9635823231a0ba92c6dc9393f16\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/static/media/image-0.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/static/media/image-0.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/b70a1b64fd4fa9635823231a0ba92c6dc9393f16\",\n \"html\": \"https://github.com/owner/repo/blob/master/static/media/image-0.jpg\"\n }\n },\n {\n \"name\": \"image-1.jpg\",\n \"path\": \"static/media/image-1.jpg\",\n \"sha\": \"05eedae372b829c62501ac751b2d42dcc432541b\",\n \"size\": 392411,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/static/media/image-1.jpg?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/static/media/image-1.jpg\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/05eedae372b829c62501ac751b2d42dcc432541b\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/static/media/image-1.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/static/media/image-1.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/05eedae372b829c62501ac751b2d42dcc432541b\",\n \"html\": \"https://github.com/owner/repo/blob/master/static/media/image-1.jpg\"\n }\n },\n {\n \"name\": \"image-2.jpg\",\n \"path\": \"static/media/image-2.jpg\",\n \"sha\": \"53845ed35faf8939bea242bb85eda7c324b1be0b\",\n \"size\": 99147,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/static/media/image-2.jpg?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/static/media/image-2.jpg\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/53845ed35faf8939bea242bb85eda7c324b1be0b\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/static/media/image-2.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/static/media/image-2.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/53845ed35faf8939bea242bb85eda7c324b1be0b\",\n \"html\": \"https://github.com/owner/repo/blob/master/static/media/image-2.jpg\"\n }\n },\n {\n \"name\": \"image-3.jpg\",\n \"path\": \"static/media/image-3.jpg\",\n \"sha\": \"8b2339d97069e826fae1f156212e40ae458454e3\",\n \"size\": 358022,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/static/media/image-3.jpg?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/static/media/image-3.jpg\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/8b2339d97069e826fae1f156212e40ae458454e3\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/static/media/image-3.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/static/media/image-3.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/8b2339d97069e826fae1f156212e40ae458454e3\",\n \"html\": \"https://github.com/owner/repo/blob/master/static/media/image-3.jpg\"\n }\n },\n {\n \"name\": \"image-4.jpg\",\n \"path\": \"static/media/image-4.jpg\",\n \"sha\": \"a8f6f21253a67a4284b5a953b2fe633d44152ecd\",\n \"size\": 114837,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/static/media/image-4.jpg?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/static/media/image-4.jpg\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/a8f6f21253a67a4284b5a953b2fe633d44152ecd\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/static/media/image-4.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/static/media/image-4.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/a8f6f21253a67a4284b5a953b2fe633d44152ecd\",\n \"html\": \"https://github.com/owner/repo/blob/master/static/media/image-4.jpg\"\n }\n },\n {\n \"name\": \"movable-type.jpg\",\n \"path\": \"static/media/movable-type.jpg\",\n \"sha\": \"57b4e925ea00bd8e195cf4418eb6eb2995ea5f10\",\n \"size\": 559028,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/static/media/movable-type.jpg?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/static/media/movable-type.jpg\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/57b4e925ea00bd8e195cf4418eb6eb2995ea5f10\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/static/media/movable-type.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/static/media/movable-type.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/57b4e925ea00bd8e195cf4418eb6eb2995ea5f10\",\n \"html\": \"https://github.com/owner/repo/blob/master/static/media/movable-type.jpg\"\n }\n },\n {\n \"name\": \"printing-press.jpg\",\n \"path\": \"static/media/printing-press.jpg\",\n \"sha\": \"d27f56c9437d9becd2f56cc627c9322c2f1f61f6\",\n \"size\": 279283,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/static/media/printing-press.jpg?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/static/media/printing-press.jpg\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/d27f56c9437d9becd2f56cc627c9322c2f1f61f6\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/static/media/printing-press.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/static/media/printing-press.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/d27f56c9437d9becd2f56cc627c9322c2f1f61f6\",\n \"html\": \"https://github.com/owner/repo/blob/master/static/media/printing-press.jpg\"\n }\n },\n {\n \"name\": \"type-through-time.jpg\",\n \"path\": \"static/media/type-through-time.jpg\",\n \"sha\": \"3f08366a805c51a60ec5056010f22de4ba08abaa\",\n \"size\": 117689,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/static/media/type-through-time.jpg?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/static/media/type-through-time.jpg\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/3f08366a805c51a60ec5056010f22de4ba08abaa\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/static/media/type-through-time.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/static/media/type-through-time.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/3f08366a805c51a60ec5056010f22de4ba08abaa\",\n \"html\": \"https://github.com/owner/repo/blob/master/static/media/type-through-time.jpg\"\n }\n }\n]\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5?ts=0", + "headers": { + "Date": "Tue, 10 Sep 2019 13:57:26 GMT", + "Content-Type": "text/plain; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4427", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"733ab4cffe213d8db3be254e7fee8f69\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A84:3ED7B:12771EB:166E15D:5D77ABC5", + "content-length": "2786", + "connection": "keep-alive" + }, + "response": "---\ntitle: \"A Brief History of Typography\"\ndate: \"2016-02-02T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Design Inspiration\"\ntags:\n - \"Linotype\"\n - \"Monotype\"\n - \"History of typography\"\n - \"Helvetica\"\ndescription: \"Morbi in sem quis dui placerat ornare. Pellentesque odio nisi, euismod in, pharetra a, ultricies in, diam. Sed arcu. Cras consequat.\"\ncanonical: ''\n---\n\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\n\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-0.jpg)\n\n## Header Level 2\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \n\n
\n\t
\n\t\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\n\t\t
\n\t\t\t— Aliquam tincidunt mauris eu risus.\n\t\t
\n\t
\n
\n\n### Header Level 3\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\n\n```css\n#header h1 a {\n display: block;\n width: 300px;\n height: 80px;\n}\n```\n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9?ts=0", + "headers": { + "Date": "Tue, 10 Sep 2019 13:57:26 GMT", + "Content-Type": "text/plain; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4426", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"f9b97e27090d24f9b7c773ede73acd0c\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A8A:15110:1899A09:1DE3DC5:5D77ABC5", + "content-length": "2565", + "connection": "keep-alive" + }, + "response": "---\ntitle: The Origins of Social Stationery Lettering\ndate: \"2016-12-01T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Design Culture\"\ndescription: \"Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante.\"\ncanonical: ''\n---\n\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\n\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-3.jpg)\n\n## Header Level 2\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \n\n
\n\t
\n\t\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\n\t\t
\n\t\t\t— Aliquam tincidunt mauris eu risus.\n\t\t
\n\t
\n
\n\n### Header Level 3\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\n\n```css\n#header h1 a {\n display: block;\n width: 300px;\n height: 80px;\n}\n```\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044?ts=0", + "headers": { + "Date": "Tue, 10 Sep 2019 13:57:26 GMT", + "Content-Type": "text/plain; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4425", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"6e2453f34250f47bb0adc4ff2f6887a8\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A86:9D1F:A38941:C790C9:5D77ABC5", + "content-length": "16071", + "connection": "keep-alive" + }, + "response": "---\ntitle: \"Johannes Gutenberg: The Birth of Movable Type\"\ndate: \"2017-08-18T22:12:03.284Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Typography\"\ntags:\n - \"Open source\"\n - \"Gatsby\"\n - \"Typography\"\ndescription: \"German inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\"\ncanonical: ''\n---\n\nGerman inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\n\n**Johannes Gensfleisch zur Laden zum Gutenberg** (c. 1398 – 1468) was a German blacksmith, goldsmith, printer, and publisher who introduced printing to Europe. His invention of mechanical movable type printing started the Printing Revolution and is widely regarded as the most important event of the modern period. It played a key role in the development of the Renaissance, Reformation, the Age of Enlightenment, and the Scientific revolution and laid the material basis for the modern knowledge-based economy and the spread of learning to the masses.\n\n
\n\t\"Gutenberg\"\n\t
Johannes Gutenberg
\n
\n\nWith his invention of the printing press, Gutenberg was the first European to use movable type printing, in around 1439. Among his many contributions to printing are: the invention of a process for mass-producing movable type; the use of oil-based ink; and the use of a wooden printing press similar to the agricultural screw presses of the period. His truly epochal invention was the combination of these elements into a practical system that allowed the mass production of printed books and was economically viable for printers and readers alike. Gutenberg's method for making type is traditionally considered to have included a type metal alloy and a hand mould for casting type. The alloy was a mixture of lead, tin, and antimony that melted at a relatively low temperature for faster and more economical casting, cast well, and created a durable type.\n\nIn Renaissance Europe, the arrival of mechanical movable type printing introduced the era of mass communication which permanently altered the structure of society. The relatively unrestricted circulation of information — including revolutionary ideas — transcended borders, captured the masses in the Reformation and threatened the power of political and religious authorities; the sharp increase in literacy broke the monopoly of the literate elite on education and learning and bolstered the emerging middle class. Across Europe, the increasing cultural self-awareness of its people led to the rise of proto-nationalism, accelerated by the flowering of the European vernacular languages to the detriment of Latin's status as lingua franca. In the 19th century, the replacement of the hand-operated Gutenberg-style press by steam-powered rotary presses allowed printing on an industrial scale, while Western-style printing was adopted all over the world, becoming practically the sole medium for modern bulk printing.\n\nThe use of movable type was a marked improvement on the handwritten manuscript, which was the existing method of book production in Europe, and upon woodblock printing, and revolutionized European book-making. Gutenberg's printing technology spread rapidly throughout Europe and later the world.\n\nHis major work, the Gutenberg Bible (also known as the 42-line Bible), has been acclaimed for its high aesthetic and technical quality.\n\n## Printing Press\n\nAround 1439, Gutenberg was involved in a financial misadventure making polished metal mirrors (which were believed to capture holy light from religious relics) for sale to pilgrims to Aachen: in 1439 the city was planning to exhibit its collection of relics from Emperor Charlemagne but the event was delayed by one year due to a severe flood and the capital already spent could not be repaid. When the question of satisfying the investors came up, Gutenberg is said to have promised to share a “secret”. It has been widely speculated that this secret may have been the idea of printing with movable type. Also around 1439–1440, the Dutch Laurens Janszoon Coster came up with the idea of printing. Legend has it that the idea came to him “like a ray of light”.\n\n
\n\t\"Early\n\t
Early wooden printing press as depicted in 1568.
\n
\n\nUntil at least 1444 he lived in Strasbourg, most likely in the St. Arbogast parish. It was in Strasbourg in 1440 that Gutenberg is said to have perfected and unveiled the secret of printing based on his research, mysteriously entitled Kunst und Aventur (art and enterprise). It is not clear what work he was engaged in, or whether some early trials with printing from movable type may have been conducted there. After this, there is a gap of four years in the record. In 1448, he was back in Mainz, where he took out a loan from his brother-in-law Arnold Gelthus, quite possibly for a printing press or related paraphernalia. By this date, Gutenberg may have been familiar with intaglio printing; it is claimed that he had worked on copper engravings with an artist known as the Master of Playing Cards.\n\nBy 1450, the press was in operation, and a German poem had been printed, possibly the first item to be printed there. Gutenberg was able to convince the wealthy moneylender Johann Fust for a loan of 800 guilders. Peter Schöffer, who became Fust’s son-in-law, also joined the enterprise. Schöffer had worked as a scribe in Paris and is believed to have designed some of the first typefaces.\n\n
\n\t
\n\t\t

All that has been written to me about that marvelous man seen at Frankfurt is true. I have not seen complete Bibles but only a number of quires of various books of the Bible. The script was very neat and legible, not at all difficult to follow—your grace would be able to read it without effort, and indeed without glasses.

\n\t\t
\n\t\t\t—Future pope Pius II in a letter to Cardinal Carvajal, March 1455\n\t\t
\n\t
\n
\n\nGutenberg's workshop was set up at Hof Humbrecht, a property belonging to a distant relative. It is not clear when Gutenberg conceived the Bible project, but for this he borrowed another 800 guilders from Fust, and work commenced in 1452. At the same time, the press was also printing other, more lucrative texts (possibly Latin grammars). There is also some speculation that there may have been two presses, one for the pedestrian texts, and one for the Bible. One of the profit-making enterprises of the new press was the printing of thousands of indulgences for the church, documented from 1454–55.\n\nIn 1455 Gutenberg completed his 42-line Bible, known as the Gutenberg Bible. About 180 copies were printed, most on paper and some on vellum.\n\n## Court Case\n\nSome time in 1456, there was a dispute between Gutenberg and Fust, and Fust demanded his money back, accusing Gutenberg of misusing the funds. Meanwhile the expenses of the Bible project had proliferated, and Gutenberg's debt now exceeded 20,000 guilders. Fust sued at the archbishop's court. A November 1455 legal document records that there was a partnership for a \"project of the books,\" the funds for which Gutenberg had used for other purposes, according to Fust. The court decided in favor of Fust, giving him control over the Bible printing workshop and half of all printed Bibles.\n\nThus Gutenberg was effectively bankrupt, but it appears he retained (or re-started) a small printing shop, and participated in the printing of a Bible in the town of Bamberg around 1459, for which he seems at least to have supplied the type. But since his printed books never carry his name or a date, it is difficult to be certain, and there is consequently a considerable scholarly debate on this subject. It is also possible that the large Catholicon dictionary, 300 copies of 754 pages, printed in Mainz in 1460, may have been executed in his workshop.\n\nMeanwhile, the Fust–Schöffer shop was the first in Europe to bring out a book with the printer's name and date, the Mainz Psalter of August 1457, and while proudly proclaiming the mechanical process by which it had been produced, it made no mention of Gutenberg.\n\n## Later Life\n\nIn 1462, during a conflict between two archbishops, Mainz was sacked by archbishop Adolph von Nassau, and Gutenberg was exiled. An old man by now, he moved to Eltville where he may have initiated and supervised a new printing press belonging to the brothers Bechtermünze.\n\nIn January 1465, Gutenberg's achievements were recognized and he was given the title Hofmann (gentleman of the court) by von Nassau. This honor included a stipend, an annual court outfit, as well as 2,180 litres of grain and 2,000 litres of wine tax-free. It is believed he may have moved back to Mainz around this time, but this is not certain.\n\n***\n\nGutenberg died in 1468 and was buried in the Franciscan church at Mainz, his contributions largely unknown. This church and the cemetery were later destroyed, and Gutenberg's grave is now lost.\n\nIn 1504, he was mentioned as the inventor of typography in a book by Professor Ivo Wittig. It was not until 1567 that the first portrait of Gutenberg, almost certainly an imaginary reconstruction, appeared in Heinrich Pantaleon's biography of famous Germans.\n\n## Printing Method With Movable Type\n\nGutenberg's early printing process, and what tests he may have made with movable type, are not known in great detail. His later Bibles were printed in such a way as to have required large quantities of type, some estimates suggesting as many as 100,000 individual sorts. Setting each page would take, perhaps, half a day, and considering all the work in loading the press, inking the type, pulling the impressions, hanging up the sheets, distributing the type, etc., it is thought that the Gutenberg–Fust shop might have employed as many as 25 craftsmen.\n\n![Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5](/media/movable-type.jpg)\n\n*Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5*\n\nGutenberg's technique of making movable type remains unclear. In the following decades, punches and copper matrices became standardized in the rapidly disseminating printing presses across Europe. Whether Gutenberg used this sophisticated technique or a somewhat primitive version has been the subject of considerable debate.\n\nIn the standard process of making type, a hard metal punch (made by punchcutting, with the letter carved back to front) is hammered into a softer copper bar, creating a matrix. This is then placed into a hand-held mould and a piece of type, or \"sort\", is cast by filling the mould with molten type-metal; this cools almost at once, and the resulting piece of type can be removed from the mould. The matrix can be reused to create hundreds, or thousands, of identical sorts so that the same character appearing anywhere within the book will appear very uniform, giving rise, over time, to the development of distinct styles of typefaces or fonts. After casting, the sorts are arranged into type-cases, and used to make up pages which are inked and printed, a procedure which can be repeated hundreds, or thousands, of times. The sorts can be reused in any combination, earning the process the name of “movable type”.\n\nThe invention of the making of types with punch, matrix and mold has been widely attributed to Gutenberg. However, recent evidence suggests that Gutenberg's process was somewhat different. If he used the punch and matrix approach, all his letters should have been nearly identical, with some variations due to miscasting and inking. However, the type used in Gutenberg's earliest work shows other variations.\n\n
\n\t
\n\t\t

It is a press, certainly, but a press from which shall flow in inexhaustible streams… Through it, god will spread his word.

\n\t\t
\n\t\t\t—Johannes Gutenberg\n\t\t
\n\t
\n
\n\nIn 2001, the physicist Blaise Agüera y Arcas and Princeton librarian Paul Needham, used digital scans of a Papal bull in the Scheide Library, Princeton, to carefully compare the same letters (types) appearing in different parts of the printed text. The irregularities in Gutenberg's type, particularly in simple characters such as the hyphen, suggested that the variations could not have come from either ink smear or from wear and damage on the pieces of metal on the types themselves. While some identical types are clearly used on other pages, other variations, subjected to detailed image analysis, suggested that they could not have been produced from the same matrix. Transmitted light pictures of the page also appeared to reveal substructures in the type that could not arise from traditional punchcutting techniques. They hypothesized that the method may have involved impressing simple shapes to create alphabets in “cuneiform” style in a matrix made of some soft material, perhaps sand. Casting the type would destroy the mould, and the matrix would need to be recreated to make each additional sort. This could explain the variations in the type, as well as the substructures observed in the printed images.\n\nThus, they feel that “the decisive factor for the birth of typography”, the use of reusable moulds for casting type, might have been a more progressive process than was previously thought. They suggest that the additional step of using the punch to create a mould that could be reused many times was not taken until twenty years later, in the 1470s. Others have not accepted some or all of their suggestions, and have interpreted the evidence in other ways, and the truth of the matter remains very uncertain.\n\nA 1568 history by Hadrianus Junius of Holland claims that the basic idea of the movable type came to Gutenberg from Laurens Janszoon Coster via Fust, who was apprenticed to Coster in the 1430s and may have brought some of his equipment from Haarlem to Mainz. While Coster appears to have experimented with moulds and castable metal type, there is no evidence that he had actually printed anything with this technology. He was an inventor and a goldsmith. However, there is one indirect supporter of the claim that Coster might be the inventor. The author of the Cologne Chronicle of 1499 quotes Ulrich Zell, the first printer of Cologne, that printing was performed in Mainz in 1450, but that some type of printing of lower quality had previously occurred in the Netherlands. However, the chronicle does not mention the name of Coster, while it actually credits Gutenberg as the \"first inventor of printing\" in the very same passage (fol. 312). The first securely dated book by Dutch printers is from 1471, and the Coster connection is today regarded as a mere legend.\n\nThe 19th century printer and typefounder Fournier Le Jeune suggested that Gutenberg might not have been using type cast with a reusable matrix, but possibly wooden types that were carved individually. A similar suggestion was made by Nash in 2004. This remains possible, albeit entirely unproven.\n\nIt has also been questioned whether Gutenberg used movable types at all. In 2004, Italian professor Bruno Fabbiani claimed that examination of the 42-line Bible revealed an overlapping of letters, suggesting that Gutenberg did not in fact use movable type (individual cast characters) but rather used whole plates made from a system somewhat like a modern typewriter, whereby the letters were stamped successively into the plate and then printed. However, most specialists regard the occasional overlapping of type as caused by paper movement over pieces of type of slightly unequal height.", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043?ts=0", + "headers": { + "Date": "Tue, 10 Sep 2019 13:57:26 GMT", + "Content-Type": "text/plain; charset=iso-8859-1", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4424", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"b11610ec1fe2f13ce388952c3fdf3423\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A82:1510E:AD0B1D:D2DBFA:5D77ABC5", + "content-length": "1707", + "connection": "keep-alive" + }, + "response": "---\ntitle: Perfecting the Art of Perfection\ndate: \"2016-09-01T23:46:37.121Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Design Inspiration\"\ntags:\n - \"Handwriting\"\n - \"Learning to write\"\ndescription: \"Quisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\"\ncanonical: ''\n---\n\nQuisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\n\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-2.jpg)\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. \n\nPraesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774?ts=0", + "headers": { + "Date": "Tue, 10 Sep 2019 13:57:26 GMT", + "Content-Type": "text/plain; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4423", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"d2bb4e67afce9cad20457cc0c72b8a41\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A94:2B24:17E1B94:1D0871F:5D77ABC6", + "content-length": "7465", + "connection": "keep-alive" + }, + "response": "---\ntitle: Humane Typography in the Digital Age\ndate: \"2017-08-19T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Typography\"\ntags:\n - \"Design\"\n - \"Typography\"\n - \"Web Development\"\ndescription: \"An Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\"\ncanonical: ''\n---\n\n- [The first transition](#the-first-transition)\n- [The digital age](#the-digital-age)\n- [Loss of humanity through transitions](#loss-of-humanity-through-transitions)\n- [Chasing perfection](#chasing-perfection)\n\nAn Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\n\nThe typography of this industrial age was no longer handcrafted. Mass production and profit became more important. Quantity mattered more than the quality. The books and printed works in general lost a part of its humanity. The typefaces were not produced by craftsmen anymore. It was the machines printing and tying the books together now. The craftsmen had to let go of their craft and became a cog in the process. An extension of the industrial machine.\n\nBut the victory of the industrialism didn’t mean that the craftsmen were completely extinct. The two worlds continued to coexist independently. Each recognising the good in the other — the power of industrialism and the humanity of craftsmanship. This was the second transition that would strip typography of a part of its humanity. We have to go 500 years back in time to meet the first one.\n\n## The first transition\n\nA similar conflict emerged after the invention of the first printing press in Europe. Johannes Gutenberg invented movable type and used it to produce different compositions. His workshop could print up to 240 impressions per hour. Until then, the books were being copied by hand. All the books were handwritten and decorated with hand drawn ornaments and figures. A process of copying a book was long but each book, even a copy, was a work of art.\n\nThe first printed books were, at first, perceived as inferior to the handwritten ones. They were smaller and cheaper to produce. Movable type provided the printers with flexibility that allowed them to print books in languages other than Latin. Gill describes the transition to industrialism as something that people needed and wanted. Something similar happened after the first printed books emerged. People wanted books in a language they understood and they wanted books they could take with them. They were hungry for knowledge and printed books satisfied this hunger.\n\n![42-line-bible.jpg](/media/42-line-bible.jpg)\n\n*The 42–Line Bible, printed by Gutenberg.*\n\nBut, through this transition, the book lost a large part of its humanity. The machine took over most of the process but craftsmanship was still a part of it. The typefaces were cut manually by the first punch cutters. The paper was made by hand. The illustrations and ornaments were still being hand drawn. These were the remains of the craftsmanship that went almost extinct in the times of Eric Gill.\n\n## The digital age\n\nThe first transition took away a large part of humanity from written communication. Industrialisation, the second transition described by Eric Gill, took away most of what was left. But it’s the third transition that stripped it naked. Typefaces are faceless these days. They’re just fonts on our computers. Hardly anyone knows their stories. Hardly anyone cares. Flicking through thousands of typefaces and finding the “right one” is a matter of minutes.\n\n> In the new computer age the proliferation of typefaces and type manipulations represents a new level of visual pollution threatening our culture. Out of thousands of typefaces, all we need are a few basic ones, and trash the rest.\n>\n— Massimo Vignelli\n\nTypography is not about typefaces. It’s not about what looks best, it’s about what feels right. What communicates the message best. Typography, in its essence, is about the message. “Typographical design should perform optically what the speaker creates through voice and gesture of his thoughts.”, as El Lissitzky, a famous Russian typographer, put it.\n\n## Loss of humanity through transitions\n\nEach transition took away a part of humanity from written language. Handwritten books being the most humane form and the digital typefaces being the least. Overuse of Helvetica is a good example. Messages are being told in a typeface just because it’s a safe option. It’s always there. Everyone knows it but yet, nobody knows it. Stop someone on the street and ask him what Helvetica is? Ask a designer the same question. Ask him where it came from, when, why and who designed it. Most of them will fail to answer these questions. Most of them used it in their precious projects but they still don’t spot it in the street.\n\n
\n\t
\n\t\t

Knowledge of the quality of a typeface is of the greatest importance for the functional, aesthetic and psychological effect.

\n\t\t
\n\t\t\t— Josef Mueller-Brockmann\n\t\t
\n\t
\n
\n\nTypefaces don’t look handmade these days. And that’s all right. They don’t have to. Industrialism took that away from them and we’re fine with it. We’ve traded that part of humanity for a process that produces more books that are easier to read. That can’t be bad. And it isn’t.\n\n> Humane typography will often be comparatively rough and even uncouth; but while a certain uncouthness does not seriously matter in humane works, uncouthness has no excuse whatever in the productions of the machine.\n>\n> — Eric Gill\n\nWe’ve come close to “perfection” in the last five centuries. The letters are crisp and without rough edges. We print our compositions with high–precision printers on a high quality, machine made paper.\n\n![type-through-time.jpg](/media/type-through-time.jpg)\n\n*Type through 5 centuries.*\n\nWe lost a part of ourselves because of this chase after perfection. We forgot about the craftsmanship along the way. And the worst part is that we don’t care. The transition to the digital age made that clear. We choose typefaces like clueless zombies. There’s no meaning in our work. Type sizes, leading, margins… It’s all just a few clicks or lines of code. The message isn’t important anymore. There’s no more “why” behind the “what”.\n\n## Chasing perfection\n\nHuman beings aren’t perfect. Perfection is something that will always elude us. There will always be a small part of humanity in everything we do. No matter how small that part, we should make sure that it transcends the limits of the medium. We have to think about the message first. What typeface should we use and why? Does the typeface match the message and what we want to communicate with it? What will be the leading and why? Will there be more typefaces in our design? On what ground will they be combined? What makes our design unique and why? This is the part of humanity that is left in typography. It might be the last part. Are we really going to give it up?\n\n*Originally published by [Matej Latin](http://matejlatin.co.uk/) on [Medium](https://medium.com/design-notes/humane-typography-in-the-digital-age-9bd5c16199bd?ref=webdesignernews.com#.lygo82z0x).*", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/1970-01-01-first-title.json?ts=300&ref=refs/meta/_netlify_cms", + "headers": { + "Date": "Tue, 10 Sep 2019 13:57:29 GMT", + "Content-Type": "application/vnd.github.VERSION.raw; charset=utf-8", + "Content-Length": "472", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4422", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"f1eeceb99397f78994740f0f9a14bc2d11160d76\"", + "Last-Modified": "Tue, 10 Sep 2019 13:55:55 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A99:2AF7:2095:50ED:5D77ABC9", + "connection": "keep-alive" + }, + "response": "{\"type\":\"PR\",\"pr\":{\"number\":3,\"head\":\"b0e9355d97e69d58c0a943f4ee24f3290f58bd59\"},\"user\":\"owner\",\"status\":\"pending_publish\",\"branch\":\"cms/1970-01-01-first-title\",\"collection\":\"posts\",\"commitMessage\":\"Create Post “1970-01-01-first-title”\",\"title\":\"first title\",\"description\":\"first description\",\"objects\":{\"entry\":{\"path\":\"content/posts/1970-01-01-first-title.md\",\"sha\":\"a041245814892e3f73f63ca54333fda649b7fc0b\"},\"files\":[]},\"timeStamp\":\"1970-01-01T00:00:00.300Z\"}", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=master", + "headers": { + "Date": "Tue, 10 Sep 2019 13:57:30 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "404 Not Found", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4421", + "X-RateLimit-Reset": "1568126651", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A9B:B4E0:16CEDA8:1BC307E:5D77ABC9", + "content-length": "116", + "connection": "keep-alive" + }, + "response": "{\n \"message\": \"Not Found\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/#get-contents\"\n}\n", + "status": 404 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=cms/1970-01-01-first-title", + "headers": { + "Date": "Tue, 10 Sep 2019 13:57:30 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "404 Not Found", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4420", + "X-RateLimit-Reset": "1568126651", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A9A:1510E:AD0EA6:D2E060:5D77ABC9", + "content-length": "148", + "connection": "keep-alive" + }, + "response": "{\n \"message\": \"No commit found for the ref cms/1970-01-01-first-title\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/\"\n}\n", + "status": 404 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=master", + "headers": { + "Date": "Tue, 10 Sep 2019 13:57:30 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "404 Not Found", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4419", + "X-RateLimit-Reset": "1568126651", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A9E:2B24:17E2369:1D090A8:5D77ABCA", + "content-length": "116", + "connection": "keep-alive" + }, + "response": "{\n \"message\": \"Not Found\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/#get-contents\"\n}\n", + "status": 404 + }, + { + "body": "{\"content\":\"LS0tCnRlbXBsYXRlOiBwb3N0CnRpdGxlOiBmaXJzdCB0aXRsZQpkcmFmdDogdHJ1ZQpkYXRlOiAxOTcwLTAxLTAxVDAwOjAwOjAwLjAwMFoKZGVzY3JpcHRpb246IGZpcnN0IGRlc2NyaXB0aW9uCmNhdGVnb3J5OiBmaXJzdCBjYXRlZ29yeQp0YWdzOgogIC0gdGFnMQotLS0KZmlyc3QgYm9keQo=\",\"encoding\":\"base64\"}", + "method": "POST", + "url": "/repos/owner/repo/git/blobs?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:57:31 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "207", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4418", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"56a87df1038fbc514d2fc013aa391906\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7AA2:B4D7:1A8B85:20745A:5D77ABCB", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"a041245814892e3f73f63ca54333fda649b7fc0b\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b\"\n}\n", + "status": 201 + }, + { + "method": "GET", + "url": "/repos/owner/repo/branches/master?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:57:32 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4417", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"f47adc6d20eeac555786fbffd72595af\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7AA4:9D1F:A38F03:C797B7:5D77ABCC", + "content-length": "5961", + "connection": "keep-alive" + }, + "response": "{\n \"name\": \"master\",\n \"commit\": {\n \"sha\": \"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NTczMTU5OjcyNjE3MmRlYWU5OWM4YTJjZWE0YzcxZTczNGEwMmE3OTNkNGQ5ZTU=\",\n \"commit\": {\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-08T09:08:14Z\"\n },\n \"committer\": {\n \"name\": \"GitHub\",\n \"email\": \"noreply@github.com\",\n \"date\": \"2019-09-08T09:08:14Z\"\n },\n \"message\": \"Merge pull request #10 from owner/chore/update_dependencies\\n\\nChore: update dependencies\",\n \"tree\": {\n \"sha\": \"c5b7f6d674ba193bb7b4a5fcf4933034e1b7f2b7\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/c5b7f6d674ba193bb7b4a5fcf4933034e1b7f2b7\"\n },\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"comment_count\": 0,\n \"verification\": {\n \"verified\": true,\n \"reason\": \"valid\",\n \"signature\": \"-----BEGIN PGP SIGNATURE-----\\n\\nwsBcBAABCAAQBQJddMT+CRBK7hj4Ov3rIwAAdHIIABWcobVYZFMuqSPezceRaKDr\\npXGqxvB3WLiIrvsQiBz2si9SvufXxLUdq72iaYTbXMCqIAAIBDNwHLltOKcbUF9J\\nKa8pD6cq7jpNyZfhI8xlapMwEZPu53as0tSvwdOnl/0iL+WYjUZUFQR+vrWEmllu\\nhIES9QxU2nk5zcS7t8sFRA+sJdll8GzzhoWYkpw3wgqpxCzJdf5HJS0tWyVCZM5U\\nCgSpSgTvz9bALnQxu7YVrfLGEvi8S7LaOEz5HQc+TV1hNR2dfl5hhiHhWQ1Rsx5w\\nUECV01vItNWhx2dyMn77hIu/G+bTH89WZDU+CmifsNkmvkq90fk4eNt8Hg1mxn4=\\n=6ayM\\n-----END PGP SIGNATURE-----\\n\",\n \"payload\": \"tree c5b7f6d674ba193bb7b4a5fcf4933034e1b7f2b7\\nparent 8ade583d7c02e7769dd685ca64c10851c09f51cf\\nparent 4940957ff42b034d8c47d64b383c34548a34fbb5\\nauthor owner 1567933694 +0300\\ncommitter GitHub 1567933694 +0300\\n\\nMerge pull request #10 from owner/chore/update_dependencies\\n\\nChore: update dependencies\"\n }\n },\n \"url\": \"https://api.github.com/repos/owner/repo/commits/726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"html_url\": \"https://github.com/owner/repo/commit/726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/commits/726172deae99c8a2cea4c71e734a02a793d4d9e5/comments\",\n \"author\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"committer\": {\n \"login\": \"web-flow\",\n \"id\": 19864447,\n \"node_id\": \"MDQ6VXNlcjE5ODY0NDQ3\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/web-flow\",\n \"html_url\": \"https://github.com/web-flow\",\n \"followers_url\": \"https://api.github.com/users/web-flow/followers\",\n \"following_url\": \"https://api.github.com/users/web-flow/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/web-flow/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/web-flow/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/web-flow/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/web-flow/orgs\",\n \"repos_url\": \"https://api.github.com/users/web-flow/repos\",\n \"events_url\": \"https://api.github.com/users/web-flow/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/web-flow/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"parents\": [\n {\n \"sha\": \"8ade583d7c02e7769dd685ca64c10851c09f51cf\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/8ade583d7c02e7769dd685ca64c10851c09f51cf\",\n \"html_url\": \"https://github.com/owner/repo/commit/8ade583d7c02e7769dd685ca64c10851c09f51cf\"\n },\n {\n \"sha\": \"4940957ff42b034d8c47d64b383c34548a34fbb5\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/4940957ff42b034d8c47d64b383c34548a34fbb5\",\n \"html_url\": \"https://github.com/owner/repo/commit/4940957ff42b034d8c47d64b383c34548a34fbb5\"\n }\n ]\n },\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/branches/master\",\n \"html\": \"https://github.com/owner/repo/tree/master\"\n },\n \"protected\": false,\n \"protection\": {\n \"enabled\": false,\n \"required_status_checks\": {\n \"enforcement_level\": \"off\",\n \"contexts\": [\n\n ]\n }\n },\n \"protection_url\": \"https://api.github.com/repos/owner/repo/branches/master/protection\"\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/trees/726172deae99c8a2cea4c71e734a02a793d4d9e5?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:57:33 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4416", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"d77b8ce9e58b2411117ccbf09ab34ed8\"", + "Last-Modified": "Tue, 10 Sep 2019 13:56:22 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7AA6:1510E:AD1140:D2E397:5D77ABCC", + "content-length": "11769", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"tree\": [\n {\n \"path\": \".circleci\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"e5e9af3301cac61f120b8e4d40b1733c7a45685a\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/e5e9af3301cac61f120b8e4d40b1733c7a45685a\"\n },\n {\n \"path\": \".eslintignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"80b4531b026d19f8fa589efd122e76199d23f967\",\n \"size\": 39,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/80b4531b026d19f8fa589efd122e76199d23f967\"\n },\n {\n \"path\": \".eslintrc.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"370684994aaed5b858da3a006f48cfa57e88fd27\",\n \"size\": 414,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/370684994aaed5b858da3a006f48cfa57e88fd27\"\n },\n {\n \"path\": \".flowconfig\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14aa2ac4cc0e15223ad98630a6f1325fc81f8043\",\n \"size\": 283,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14aa2ac4cc0e15223ad98630a6f1325fc81f8043\"\n },\n {\n \"path\": \".gitattributes\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"10a369ddf4f603337cabc6f21646508323941ce1\",\n \"size\": 135,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/10a369ddf4f603337cabc6f21646508323941ce1\"\n },\n {\n \"path\": \".github\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4ebeece548b52b20af59622354530a6d33b50b43\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4ebeece548b52b20af59622354530a6d33b50b43\"\n },\n {\n \"path\": \".gitignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"c071ba35b0e49899bab6d610a68eef667dbbf157\",\n \"size\": 169,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/c071ba35b0e49899bab6d610a68eef667dbbf157\"\n },\n {\n \"path\": \".prettierignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"393f050e123d998cf8c8b362ff95cc8ac4d250e5\",\n \"size\": 45,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/393f050e123d998cf8c8b362ff95cc8ac4d250e5\"\n },\n {\n \"path\": \".prettierrc\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e52ad05bb13b084d7949dd76e1b2517455162150\",\n \"size\": 223,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/e52ad05bb13b084d7949dd76e1b2517455162150\"\n },\n {\n \"path\": \".stylelintrc.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"4b4c9698d10d756f5faa025659b86375428ed0a7\",\n \"size\": 718,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/4b4c9698d10d756f5faa025659b86375428ed0a7\"\n },\n {\n \"path\": \".vscode\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"286e97ec0113ea8242b41ac222e2c3e8077e6f1e\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/286e97ec0113ea8242b41ac222e2c3e8077e6f1e\"\n },\n {\n \"path\": \"CHANGELOG.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"070a5d4f0eacd2dc0be81ae8996f8982de43046e\",\n \"size\": 2113,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/070a5d4f0eacd2dc0be81ae8996f8982de43046e\"\n },\n {\n \"path\": \"CODE_OF_CONDUCT.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"92bc7565ff0ee145a0041b5179a820f14f39ab22\",\n \"size\": 3355,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/92bc7565ff0ee145a0041b5179a820f14f39ab22\"\n },\n {\n \"path\": \"CONTRIBUTING.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"8552aa241254a61258e1ff9666ab36f32fb1e3b9\",\n \"size\": 3548,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/8552aa241254a61258e1ff9666ab36f32fb1e3b9\"\n },\n {\n \"path\": \"LICENSE\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"42d85938357b49977c126ca03b199129082d4fb8\",\n \"size\": 1091,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/42d85938357b49977c126ca03b199129082d4fb8\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"19df50a78654c8d757ca7f38447aa3d09c7abcce\",\n \"size\": 3698,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/19df50a78654c8d757ca7f38447aa3d09c7abcce\"\n },\n {\n \"path\": \"backend\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\"\n },\n {\n \"path\": \"config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"58afd573bbb69fcca000efd0f5d90b93c93a98dd\",\n \"size\": 853,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/58afd573bbb69fcca000efd0f5d90b93c93a98dd\"\n },\n {\n \"path\": \"content\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/0294ef106c58743907a5c855da1eb0f87b0b6dfc\"\n },\n {\n \"path\": \"flow-typed\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"86c32fd6c3118be5e0dbbb231a834447357236c6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/86c32fd6c3118be5e0dbbb231a834447357236c6\"\n },\n {\n \"path\": \"flow\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"0af45ad00d155c8d8c7407d913ff85278244c9ce\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/0af45ad00d155c8d8c7407d913ff85278244c9ce\"\n },\n {\n \"path\": \"gatsby-browser.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9bd2c9dce175f04980e91cd9dc295a299e3cdb80\",\n \"size\": 90,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9bd2c9dce175f04980e91cd9dc295a299e3cdb80\"\n },\n {\n \"path\": \"gatsby-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"353a109dad62e3f25bf9f5e6a2167f21a6c8b459\",\n \"size\": 7228,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/353a109dad62e3f25bf9f5e6a2167f21a6c8b459\"\n },\n {\n \"path\": \"gatsby-node.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14a207883c2093d2cc071bc5a464e165bcc1fead\",\n \"size\": 409,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14a207883c2093d2cc071bc5a464e165bcc1fead\"\n },\n {\n \"path\": \"gatsby\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4f23c06cd1740bf78304d2c0b29bf6bfdf427981\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4f23c06cd1740bf78304d2c0b29bf6bfdf427981\"\n },\n {\n \"path\": \"jest\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\"\n },\n {\n \"path\": \"netlify.toml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"599b99cc5700404fde316a7ede829776f23e7d45\",\n \"size\": 137,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/599b99cc5700404fde316a7ede829776f23e7d45\"\n },\n {\n \"path\": \"package.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9d777616438b90a18f1a4ebfd5f114b4c06c6f17\",\n \"size\": 6855,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9d777616438b90a18f1a4ebfd5f114b4c06c6f17\"\n },\n {\n \"path\": \"postcss-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d216501e9b351a72e00ba0b7459a6500e27e7da2\",\n \"size\": 703,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d216501e9b351a72e00ba0b7459a6500e27e7da2\"\n },\n {\n \"path\": \"renovate.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"dcc309398785698b8870545c32051a3d72dd8271\",\n \"size\": 460,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/dcc309398785698b8870545c32051a3d72dd8271\"\n },\n {\n \"path\": \"serverless-scripts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ee3701f2fbfc7196ba340f6481d1387d20527898\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ee3701f2fbfc7196ba340f6481d1387d20527898\"\n },\n {\n \"path\": \"serverless-single-page-app-plugin\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"08763fcfba643a06a452398517019bea4a5850ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/08763fcfba643a06a452398517019bea4a5850ba\"\n },\n {\n \"path\": \"serverless.yml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"20b22c5fad229f35d029bf6614d333d82fe8a987\",\n \"size\": 7803,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/20b22c5fad229f35d029bf6614d333d82fe8a987\"\n },\n {\n \"path\": \"src\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"8cdb35a88232c0f32f12f130c92c7cc55f97f471\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/8cdb35a88232c0f32f12f130c92c7cc55f97f471\"\n },\n {\n \"path\": \"static\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"53c6380a600a030d3722bff7ecde36f749fb6964\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/53c6380a600a030d3722bff7ecde36f749fb6964\"\n },\n {\n \"path\": \"utils\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"a592549c9f74db40b51efefcda2fd76810405f27\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/a592549c9f74db40b51efefcda2fd76810405f27\"\n },\n {\n \"path\": \"yarn.lock\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"475c9c1924ca752a0686303e2fdeb7b13ad75f57\",\n \"size\": 793903,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/475c9c1924ca752a0686303e2fdeb7b13ad75f57\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/trees/0294ef106c58743907a5c855da1eb0f87b0b6dfc?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:57:33 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4415", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"0abcbf354911bd78b253b880b84d8da0\"", + "Last-Modified": "Tue, 10 Sep 2019 13:56:22 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7AA8:244EB:1822D99:1D5196E:5D77ABCD", + "content-length": "831", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\n \"tree\": [\n {\n \"path\": \"pages\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\"\n },\n {\n \"path\": \"posts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"34892575e216c06e757093f036bd8e057c78a52f\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/34892575e216c06e757093f036bd8e057c78a52f\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/trees/34892575e216c06e757093f036bd8e057c78a52f?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:57:34 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4414", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"29693f84571fe2df8dc664b09d0872b0\"", + "Last-Modified": "Tue, 10 Sep 2019 13:56:22 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7AAA:244EB:1822E80:1D51A84:5D77ABCE", + "content-length": "2030", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"34892575e216c06e757093f036bd8e057c78a52f\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/34892575e216c06e757093f036bd8e057c78a52f\",\n \"tree\": [\n {\n \"path\": \"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"size\": 1707,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\"\n },\n {\n \"path\": \"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"size\": 2565,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\"\n },\n {\n \"path\": \"2016-02-02---A-Brief-History-of-Typography.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"0eea554365f002d0f1572af9a58522d335a794d5\",\n \"size\": 2786,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\"\n },\n {\n \"path\": \"2017-18-08---The-Birth-of-Movable-Type.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"44f78c474d04273185a95821426f75affc9b0044\",\n \"size\": 16071,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\"\n },\n {\n \"path\": \"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"size\": 7465,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 200 + }, + { + "body": "{\"base_tree\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"tree\":[{\"path\":\"1970-01-01-first-title.md\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"a041245814892e3f73f63ca54333fda649b7fc0b\"}]}", + "method": "POST", + "url": "/repos/owner/repo/git/trees?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:57:35 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "2362", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4413", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"ebc1ab128eebad51810afca6f07ccff1\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7AAC:1510F:12451BE:162CB58:5D77ABCE", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a041245814892e3f73f63ca54333fda649b7fc0b\",\n \"size\": 167,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b\"\n },\n {\n \"path\": \"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"size\": 1707,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\"\n },\n {\n \"path\": \"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"size\": 2565,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\"\n },\n {\n \"path\": \"2016-02-02---A-Brief-History-of-Typography.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"0eea554365f002d0f1572af9a58522d335a794d5\",\n \"size\": 2786,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\"\n },\n {\n \"path\": \"2017-18-08---The-Birth-of-Movable-Type.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"44f78c474d04273185a95821426f75affc9b0044\",\n \"size\": 16071,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\"\n },\n {\n \"path\": \"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"size\": 7465,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"base_tree\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\"tree\":[{\"path\":\"posts\",\"mode\":\"040000\",\"type\":\"tree\",\"sha\":\"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\"parentSha\":\"34892575e216c06e757093f036bd8e057c78a52f\"}]}", + "method": "POST", + "url": "/repos/owner/repo/git/trees?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:57:35 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "831", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4412", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"cf11b691192f3fcf082e39fe0a214ad1\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7AB0:B4DC:AC6B38:D1C1CB:5D77ABCF", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"tree\": [\n {\n \"path\": \"pages\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\"\n },\n {\n \"path\": \"posts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"base_tree\":\"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\"tree\":[{\"path\":\"content\",\"mode\":\"040000\",\"type\":\"tree\",\"sha\":\"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\"parentSha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\"}]}", + "method": "POST", + "url": "/repos/owner/repo/git/trees?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:57:36 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "11769", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4411", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"259bcf85cfa917532f552d4919781c7b\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/trees/daee8d5d15d144e8779955166a2afeccde2770e1", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7AB2:2B24:17E2C54:1D09BAB:5D77ABD0", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"daee8d5d15d144e8779955166a2afeccde2770e1\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/daee8d5d15d144e8779955166a2afeccde2770e1\",\n \"tree\": [\n {\n \"path\": \".circleci\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"e5e9af3301cac61f120b8e4d40b1733c7a45685a\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/e5e9af3301cac61f120b8e4d40b1733c7a45685a\"\n },\n {\n \"path\": \".eslintignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"80b4531b026d19f8fa589efd122e76199d23f967\",\n \"size\": 39,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/80b4531b026d19f8fa589efd122e76199d23f967\"\n },\n {\n \"path\": \".eslintrc.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"370684994aaed5b858da3a006f48cfa57e88fd27\",\n \"size\": 414,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/370684994aaed5b858da3a006f48cfa57e88fd27\"\n },\n {\n \"path\": \".flowconfig\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14aa2ac4cc0e15223ad98630a6f1325fc81f8043\",\n \"size\": 283,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14aa2ac4cc0e15223ad98630a6f1325fc81f8043\"\n },\n {\n \"path\": \".gitattributes\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"10a369ddf4f603337cabc6f21646508323941ce1\",\n \"size\": 135,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/10a369ddf4f603337cabc6f21646508323941ce1\"\n },\n {\n \"path\": \".github\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4ebeece548b52b20af59622354530a6d33b50b43\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4ebeece548b52b20af59622354530a6d33b50b43\"\n },\n {\n \"path\": \".gitignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"c071ba35b0e49899bab6d610a68eef667dbbf157\",\n \"size\": 169,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/c071ba35b0e49899bab6d610a68eef667dbbf157\"\n },\n {\n \"path\": \".prettierignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"393f050e123d998cf8c8b362ff95cc8ac4d250e5\",\n \"size\": 45,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/393f050e123d998cf8c8b362ff95cc8ac4d250e5\"\n },\n {\n \"path\": \".prettierrc\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e52ad05bb13b084d7949dd76e1b2517455162150\",\n \"size\": 223,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/e52ad05bb13b084d7949dd76e1b2517455162150\"\n },\n {\n \"path\": \".stylelintrc.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"4b4c9698d10d756f5faa025659b86375428ed0a7\",\n \"size\": 718,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/4b4c9698d10d756f5faa025659b86375428ed0a7\"\n },\n {\n \"path\": \".vscode\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"286e97ec0113ea8242b41ac222e2c3e8077e6f1e\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/286e97ec0113ea8242b41ac222e2c3e8077e6f1e\"\n },\n {\n \"path\": \"CHANGELOG.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"070a5d4f0eacd2dc0be81ae8996f8982de43046e\",\n \"size\": 2113,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/070a5d4f0eacd2dc0be81ae8996f8982de43046e\"\n },\n {\n \"path\": \"CODE_OF_CONDUCT.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"92bc7565ff0ee145a0041b5179a820f14f39ab22\",\n \"size\": 3355,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/92bc7565ff0ee145a0041b5179a820f14f39ab22\"\n },\n {\n \"path\": \"CONTRIBUTING.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"8552aa241254a61258e1ff9666ab36f32fb1e3b9\",\n \"size\": 3548,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/8552aa241254a61258e1ff9666ab36f32fb1e3b9\"\n },\n {\n \"path\": \"LICENSE\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"42d85938357b49977c126ca03b199129082d4fb8\",\n \"size\": 1091,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/42d85938357b49977c126ca03b199129082d4fb8\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"19df50a78654c8d757ca7f38447aa3d09c7abcce\",\n \"size\": 3698,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/19df50a78654c8d757ca7f38447aa3d09c7abcce\"\n },\n {\n \"path\": \"backend\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\"\n },\n {\n \"path\": \"config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"58afd573bbb69fcca000efd0f5d90b93c93a98dd\",\n \"size\": 853,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/58afd573bbb69fcca000efd0f5d90b93c93a98dd\"\n },\n {\n \"path\": \"content\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639\"\n },\n {\n \"path\": \"flow-typed\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"86c32fd6c3118be5e0dbbb231a834447357236c6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/86c32fd6c3118be5e0dbbb231a834447357236c6\"\n },\n {\n \"path\": \"flow\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"0af45ad00d155c8d8c7407d913ff85278244c9ce\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/0af45ad00d155c8d8c7407d913ff85278244c9ce\"\n },\n {\n \"path\": \"gatsby-browser.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9bd2c9dce175f04980e91cd9dc295a299e3cdb80\",\n \"size\": 90,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9bd2c9dce175f04980e91cd9dc295a299e3cdb80\"\n },\n {\n \"path\": \"gatsby-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"353a109dad62e3f25bf9f5e6a2167f21a6c8b459\",\n \"size\": 7228,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/353a109dad62e3f25bf9f5e6a2167f21a6c8b459\"\n },\n {\n \"path\": \"gatsby-node.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14a207883c2093d2cc071bc5a464e165bcc1fead\",\n \"size\": 409,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14a207883c2093d2cc071bc5a464e165bcc1fead\"\n },\n {\n \"path\": \"gatsby\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4f23c06cd1740bf78304d2c0b29bf6bfdf427981\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4f23c06cd1740bf78304d2c0b29bf6bfdf427981\"\n },\n {\n \"path\": \"jest\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\"\n },\n {\n \"path\": \"netlify.toml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"599b99cc5700404fde316a7ede829776f23e7d45\",\n \"size\": 137,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/599b99cc5700404fde316a7ede829776f23e7d45\"\n },\n {\n \"path\": \"package.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9d777616438b90a18f1a4ebfd5f114b4c06c6f17\",\n \"size\": 6855,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9d777616438b90a18f1a4ebfd5f114b4c06c6f17\"\n },\n {\n \"path\": \"postcss-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d216501e9b351a72e00ba0b7459a6500e27e7da2\",\n \"size\": 703,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d216501e9b351a72e00ba0b7459a6500e27e7da2\"\n },\n {\n \"path\": \"renovate.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"dcc309398785698b8870545c32051a3d72dd8271\",\n \"size\": 460,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/dcc309398785698b8870545c32051a3d72dd8271\"\n },\n {\n \"path\": \"serverless-scripts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ee3701f2fbfc7196ba340f6481d1387d20527898\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ee3701f2fbfc7196ba340f6481d1387d20527898\"\n },\n {\n \"path\": \"serverless-single-page-app-plugin\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"08763fcfba643a06a452398517019bea4a5850ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/08763fcfba643a06a452398517019bea4a5850ba\"\n },\n {\n \"path\": \"serverless.yml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"20b22c5fad229f35d029bf6614d333d82fe8a987\",\n \"size\": 7803,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/20b22c5fad229f35d029bf6614d333d82fe8a987\"\n },\n {\n \"path\": \"src\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"8cdb35a88232c0f32f12f130c92c7cc55f97f471\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/8cdb35a88232c0f32f12f130c92c7cc55f97f471\"\n },\n {\n \"path\": \"static\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"53c6380a600a030d3722bff7ecde36f749fb6964\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/53c6380a600a030d3722bff7ecde36f749fb6964\"\n },\n {\n \"path\": \"utils\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"a592549c9f74db40b51efefcda2fd76810405f27\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/a592549c9f74db40b51efefcda2fd76810405f27\"\n },\n {\n \"path\": \"yarn.lock\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"475c9c1924ca752a0686303e2fdeb7b13ad75f57\",\n \"size\": 793903,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/475c9c1924ca752a0686303e2fdeb7b13ad75f57\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"message\":\"Create Post “1970-01-01-first-title”\",\"tree\":\"daee8d5d15d144e8779955166a2afeccde2770e1\",\"parents\":[\"726172deae99c8a2cea4c71e734a02a793d4d9e5\"]}", + "method": "POST", + "url": "/repos/owner/repo/git/commits?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:57:37 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "1504", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4410", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"66ec9ec42f13086c49f090252798bc30\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/commits/3395ea71c9d5a89e3553d2cffe80932026f23353", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7AB5:9D20:11646F0:1544E2F:5D77ABD1", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"3395ea71c9d5a89e3553d2cffe80932026f23353\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NTczMTU5OjMzOTVlYTcxYzlkNWE4OWUzNTUzZDJjZmZlODA5MzIwMjZmMjMzNTM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/3395ea71c9d5a89e3553d2cffe80932026f23353\",\n \"html_url\": \"https://github.com/owner/repo/commit/3395ea71c9d5a89e3553d2cffe80932026f23353\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T13:57:37Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T13:57:37Z\"\n },\n \"tree\": {\n \"sha\": \"daee8d5d15d144e8779955166a2afeccde2770e1\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/daee8d5d15d144e8779955166a2afeccde2770e1\"\n },\n \"message\": \"Create Post “1970-01-01-first-title”\",\n \"parents\": [\n {\n \"sha\": \"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"html_url\": \"https://github.com/owner/repo/commit/726172deae99c8a2cea4c71e734a02a793d4d9e5\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "status": 201 + }, + { + "body": "{\"ref\":\"refs/heads/cms/1970-01-01-first-title\",\"sha\":\"3395ea71c9d5a89e3553d2cffe80932026f23353\"}", + "method": "POST", + "url": "/repos/owner/repo/git/refs?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:57:38 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "518", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4409", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"bf48b8c0562e8201a91a782715c7cedb\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "Location": "https://api.github.com/repos/owner/repo/git/refs/heads/cms/1970-01-01-first-title", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7AB8:B4DC:AC6D46:D1C43D:5D77ABD1", + "connection": "keep-alive" + }, + "response": "{\n \"ref\": \"refs/heads/cms/1970-01-01-first-title\",\n \"node_id\": \"MDM6UmVmMjA3NTczMTU5OmNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxl\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/heads/cms/1970-01-01-first-title\",\n \"object\": {\n \"sha\": \"3395ea71c9d5a89e3553d2cffe80932026f23353\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/3395ea71c9d5a89e3553d2cffe80932026f23353\"\n }\n}\n", + "status": 201 + }, + { + "body": "{\"title\":\"Create Post “1970-01-01-first-title”\",\"body\":\"Automatically generated by Netlify CMS\",\"head\":\"cms/1970-01-01-first-title\",\"base\":\"master\"}", + "method": "POST", + "url": "/repos/owner/repo/pulls?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:57:39 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "21715", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4408", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"cdfc7b50adab0c5a2e53d43afc8ba2cd\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/pulls/4", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7ABA:2B19:AA0DBC:CEFF12:5D77ABD2", + "connection": "keep-alive" + }, + "response": "{\n \"url\": \"https://api.github.com/repos/owner/repo/pulls/4\",\n \"id\": 316008722,\n \"node_id\": \"MDExOlB1bGxSZXF1ZXN0MzE2MDA4NzIy\",\n \"html_url\": \"https://github.com/owner/repo/pull/4\",\n \"diff_url\": \"https://github.com/owner/repo/pull/4.diff\",\n \"patch_url\": \"https://github.com/owner/repo/pull/4.patch\",\n \"issue_url\": \"https://api.github.com/repos/owner/repo/issues/4\",\n \"number\": 4,\n \"state\": \"open\",\n \"locked\": false,\n \"title\": \"Create Post “1970-01-01-first-title”\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Automatically generated by Netlify CMS\",\n \"created_at\": \"2019-09-10T13:57:39Z\",\n \"updated_at\": \"2019-09-10T13:57:39Z\",\n \"closed_at\": null,\n \"merged_at\": null,\n \"merge_commit_sha\": null,\n \"assignee\": null,\n \"assignees\": [\n\n ],\n \"requested_reviewers\": [\n\n ],\n \"requested_teams\": [\n\n ],\n \"labels\": [\n\n ],\n \"milestone\": null,\n \"commits_url\": \"https://api.github.com/repos/owner/repo/pulls/4/commits\",\n \"review_comments_url\": \"https://api.github.com/repos/owner/repo/pulls/4/comments\",\n \"review_comment_url\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/issues/4/comments\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/3395ea71c9d5a89e3553d2cffe80932026f23353\",\n \"head\": {\n \"label\": \"owner:cms/1970-01-01-first-title\",\n \"ref\": \"cms/1970-01-01-first-title\",\n \"sha\": \"3395ea71c9d5a89e3553d2cffe80932026f23353\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 207573159,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NzMxNTk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-10T13:52:54Z\",\n \"updated_at\": \"2019-09-10T13:56:22Z\",\n \"pushed_at\": \"2019-09-10T13:57:38Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 1,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 1,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"base\": {\n \"label\": \"owner:master\",\n \"ref\": \"master\",\n \"sha\": \"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 207573159,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NzMxNTk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-10T13:52:54Z\",\n \"updated_at\": \"2019-09-10T13:56:22Z\",\n \"pushed_at\": \"2019-09-10T13:57:38Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 1,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 1,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/4\"\n },\n \"html\": {\n \"href\": \"https://github.com/owner/repo/pull/4\"\n },\n \"issue\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/4\"\n },\n \"comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/4/comments\"\n },\n \"review_comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/4/comments\"\n },\n \"review_comment\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\"\n },\n \"commits\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/4/commits\"\n },\n \"statuses\": {\n \"href\": \"https://api.github.com/repos/owner/repo/statuses/3395ea71c9d5a89e3553d2cffe80932026f23353\"\n }\n },\n \"author_association\": \"OWNER\",\n \"merged\": false,\n \"mergeable\": null,\n \"rebaseable\": null,\n \"mergeable_state\": \"unknown\",\n \"merged_by\": null,\n \"comments\": 0,\n \"review_comments\": 0,\n \"maintainer_can_modify\": false,\n \"commits\": 1,\n \"additions\": 11,\n \"deletions\": 0,\n \"changed_files\": 1\n}\n", + "status": 201 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:57:41 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4407", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"1e9794f4f0bd9f99377486c31d561a53\"", + "Last-Modified": "Tue, 10 Sep 2019 13:56:22 GMT", + "X-Poll-Interval": "300", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7ABC:B4DE:1205CFD:15F0F04:5D77ABD4", + "content-length": "484", + "connection": "keep-alive" + }, + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NTczMTU5OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"1aa078e6b8fcda0b8ebb428fa24dbf0d8f6aaa20\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/1aa078e6b8fcda0b8ebb428fa24dbf0d8f6aaa20\"\n }\n}\n", + "status": 200 + }, + { + "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjQsImhlYWQiOiIzMzk1ZWE3MWM5ZDVhODllMzU1M2QyY2ZmZTgwOTMyMDI2ZjIzMzUzIn0sInVzZXIiOiJvd25lciIsInN0YXR1cyI6ImRyYWZ0IiwiYnJhbmNoIjoiY21zLzE5NzAtMDEtMDEtZmlyc3QtdGl0bGUiLCJjb2xsZWN0aW9uIjoicG9zdHMiLCJjb21taXRNZXNzYWdlIjoiQ3JlYXRlIFBvc3Qg4oCcMTk3MC0wMS0wMS1maXJzdC10aXRsZeKAnSIsInRpdGxlIjoiZmlyc3QgdGl0bGUiLCJkZXNjcmlwdGlvbiI6ImZpcnN0IGRlc2NyaXB0aW9uIiwib2JqZWN0cyI6eyJlbnRyeSI6eyJwYXRoIjoiY29udGVudC9wb3N0cy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxlLm1kIiwic2hhIjoiYTA0MTI0NTgxNDg5MmUzZjczZjYzY2E1NDMzM2ZkYTY0OWI3ZmMwYiJ9LCJmaWxlcyI6W119LCJ0aW1lU3RhbXAiOiIxOTcwLTAxLTAxVDAwOjAwOjAwLjMwMFoifQ==\",\"encoding\":\"base64\"}", + "method": "POST", + "url": "/repos/owner/repo/git/blobs?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:57:42 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "207", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4406", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"bea6ed1ef6ffc076b84cf8cad233bce3\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/blobs/ca8ce9c0c707eebd8e95184292c4289a9ece13dc", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7ABE:2B15:4E8899:5F50F6:5D77ABD5", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"ca8ce9c0c707eebd8e95184292c4289a9ece13dc\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/ca8ce9c0c707eebd8e95184292c4289a9ece13dc\"\n}\n", + "status": 201 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/trees/1aa078e6b8fcda0b8ebb428fa24dbf0d8f6aaa20?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:57:42 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4405", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"d4a87f0dd33587b496fe3bffb9b013e4\"", + "Last-Modified": "Tue, 10 Sep 2019 13:56:22 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7ACA:3ED76:48B2EF:591BC6:5D77ABD6", + "content-length": "895", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"1aa078e6b8fcda0b8ebb428fa24dbf0d8f6aaa20\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/1aa078e6b8fcda0b8ebb428fa24dbf0d8f6aaa20\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"f1eeceb99397f78994740f0f9a14bc2d11160d76\",\n \"size\": 472,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/f1eeceb99397f78994740f0f9a14bc2d11160d76\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 200 + }, + { + "body": "{\"base_tree\":\"1aa078e6b8fcda0b8ebb428fa24dbf0d8f6aaa20\",\"tree\":[{\"path\":\"1970-01-01-first-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"ca8ce9c0c707eebd8e95184292c4289a9ece13dc\"}]}", + "method": "POST", + "url": "/repos/owner/repo/git/trees?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:57:43 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "895", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4404", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"d892b91e4bd0662eab9634f741ee8d6a\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/trees/3521f2d5a67814af2609504ab03e66a1a81ad58f", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7ACC:B4DE:120605F:15F134B:5D77ABD7", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"3521f2d5a67814af2609504ab03e66a1a81ad58f\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/3521f2d5a67814af2609504ab03e66a1a81ad58f\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"ca8ce9c0c707eebd8e95184292c4289a9ece13dc\",\n \"size\": 462,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/ca8ce9c0c707eebd8e95184292c4289a9ece13dc\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"message\":\"Updating “1970-01-01-first-title” metadata\",\"tree\":\"3521f2d5a67814af2609504ab03e66a1a81ad58f\",\"parents\":[\"1aa078e6b8fcda0b8ebb428fa24dbf0d8f6aaa20\"]}", + "method": "POST", + "url": "/repos/owner/repo/git/commits?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:57:44 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "1510", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4403", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"1c940196ffdec0919ddfcf5a1e57a846\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/commits/eb1e0e296f5bccea75bb2de46a4deba2e98bbd38", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7AD1:3ED77:AC4655:D0D8AA:5D77ABD7", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"eb1e0e296f5bccea75bb2de46a4deba2e98bbd38\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NTczMTU5OmViMWUwZTI5NmY1YmNjZWE3NWJiMmRlNDZhNGRlYmEyZTk4YmJkMzg=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/eb1e0e296f5bccea75bb2de46a4deba2e98bbd38\",\n \"html_url\": \"https://github.com/owner/repo/commit/eb1e0e296f5bccea75bb2de46a4deba2e98bbd38\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T13:57:44Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T13:57:44Z\"\n },\n \"tree\": {\n \"sha\": \"3521f2d5a67814af2609504ab03e66a1a81ad58f\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/3521f2d5a67814af2609504ab03e66a1a81ad58f\"\n },\n \"message\": \"Updating “1970-01-01-first-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"1aa078e6b8fcda0b8ebb428fa24dbf0d8f6aaa20\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/1aa078e6b8fcda0b8ebb428fa24dbf0d8f6aaa20\",\n \"html_url\": \"https://github.com/owner/repo/commit/1aa078e6b8fcda0b8ebb428fa24dbf0d8f6aaa20\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "status": 201 + }, + { + "body": "{\"sha\":\"eb1e0e296f5bccea75bb2de46a4deba2e98bbd38\",\"force\":false}", + "method": "PATCH", + "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:57:45 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4402", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"47fb9e023894b03616f59d8921753c36\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7AD3:1510E:AD1BD5:D2F080:5D77ABD8", + "content-length": "484", + "connection": "keep-alive" + }, + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NTczMTU5OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"eb1e0e296f5bccea75bb2de46a4deba2e98bbd38\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/eb1e0e296f5bccea75bb2de46a4deba2e98bbd38\"\n }\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=cms/1970-01-01-first-title", + "headers": { + "Date": "Tue, 10 Sep 2019 13:57:46 GMT", + "Content-Type": "application/vnd.github.VERSION.raw; charset=utf-8", + "Content-Length": "167", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4401", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"a041245814892e3f73f63ca54333fda649b7fc0b\"", + "Last-Modified": "Tue, 10 Sep 2019 13:57:37 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7AD5:B4E0:16D0791:1BC504C:5D77ABDA", + "connection": "keep-alive" + }, + "response": "---\ntemplate: post\ntitle: first title\ndraft: true\ndate: 1970-01-01T00:00:00.000Z\ndescription: first description\ncategory: first category\ntags:\n - tag1\n---\nfirst body\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=master", + "headers": { + "Date": "Tue, 10 Sep 2019 13:57:46 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "404 Not Found", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4400", + "X-RateLimit-Reset": "1568126651", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7AD7:3ED82:1897871:1DEB910:5D77ABDA", + "content-length": "116", + "connection": "keep-alive" + }, + "response": "{\n \"message\": \"Not Found\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/#get-contents\"\n}\n", + "status": 404 + }, + { + "method": "GET", + "url": "/repos/owner/repo/commits/3395ea71c9d5a89e3553d2cffe80932026f23353/status?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:57:47 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4399", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"6c0f6cf1cd1b916a83d1ae269f1f6607\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo, repo:status", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7ADA:244E1:520668:6300BC:5D77ABDB", + "content-length": "6574", + "connection": "keep-alive" + }, + "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"3395ea71c9d5a89e3553d2cffe80932026f23353\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 207573159,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NzMxNTk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/3395ea71c9d5a89e3553d2cffe80932026f23353\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/3395ea71c9d5a89e3553d2cffe80932026f23353/status\"\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/refs/heads/cms?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:57:47 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4398", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"c39ffd50126d59c7ac6247d4096d4321\"", + "Last-Modified": "Tue, 10 Sep 2019 13:56:22 GMT", + "X-Poll-Interval": "300", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7ADC:15110:189BDC6:1DE69CC:5D77ABDB", + "content-length": "542", + "connection": "keep-alive" + }, + "response": "[\n {\n \"ref\": \"refs/heads/cms/1970-01-01-first-title\",\n \"node_id\": \"MDM6UmVmMjA3NTczMTU5OmNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxl\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/heads/cms/1970-01-01-first-title\",\n \"object\": {\n \"sha\": \"3395ea71c9d5a89e3553d2cffe80932026f23353\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/3395ea71c9d5a89e3553d2cffe80932026f23353\"\n }\n }\n]\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/pulls?ts=300&head=cms/1970-01-01-first-title&state=open&base=master", + "headers": { + "Date": "Tue, 10 Sep 2019 13:57:48 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4397", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"5e1b760be020f5c69aa7f274bcd1a15a\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7ADF:3ED76:48B52B:591E78:5D77ABDB", + "content-length": "22154", + "connection": "keep-alive" + }, + "response": "[\n {\n \"url\": \"https://api.github.com/repos/owner/repo/pulls/4\",\n \"id\": 316008722,\n \"node_id\": \"MDExOlB1bGxSZXF1ZXN0MzE2MDA4NzIy\",\n \"html_url\": \"https://github.com/owner/repo/pull/4\",\n \"diff_url\": \"https://github.com/owner/repo/pull/4.diff\",\n \"patch_url\": \"https://github.com/owner/repo/pull/4.patch\",\n \"issue_url\": \"https://api.github.com/repos/owner/repo/issues/4\",\n \"number\": 4,\n \"state\": \"open\",\n \"locked\": false,\n \"title\": \"Create Post “1970-01-01-first-title”\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Automatically generated by Netlify CMS\",\n \"created_at\": \"2019-09-10T13:57:39Z\",\n \"updated_at\": \"2019-09-10T13:57:39Z\",\n \"closed_at\": null,\n \"merged_at\": null,\n \"merge_commit_sha\": \"df26bcfe232b7c02146ac03d41db505daa2029d0\",\n \"assignee\": null,\n \"assignees\": [\n\n ],\n \"requested_reviewers\": [\n\n ],\n \"requested_teams\": [\n\n ],\n \"labels\": [\n\n ],\n \"milestone\": null,\n \"commits_url\": \"https://api.github.com/repos/owner/repo/pulls/4/commits\",\n \"review_comments_url\": \"https://api.github.com/repos/owner/repo/pulls/4/comments\",\n \"review_comment_url\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/issues/4/comments\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/3395ea71c9d5a89e3553d2cffe80932026f23353\",\n \"head\": {\n \"label\": \"owner:cms/1970-01-01-first-title\",\n \"ref\": \"cms/1970-01-01-first-title\",\n \"sha\": \"3395ea71c9d5a89e3553d2cffe80932026f23353\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 207573159,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NzMxNTk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-10T13:52:54Z\",\n \"updated_at\": \"2019-09-10T13:56:22Z\",\n \"pushed_at\": \"2019-09-10T13:57:45Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 1,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 1,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"base\": {\n \"label\": \"owner:master\",\n \"ref\": \"master\",\n \"sha\": \"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 207573159,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NzMxNTk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-10T13:52:54Z\",\n \"updated_at\": \"2019-09-10T13:56:22Z\",\n \"pushed_at\": \"2019-09-10T13:57:45Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 1,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 1,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/4\"\n },\n \"html\": {\n \"href\": \"https://github.com/owner/repo/pull/4\"\n },\n \"issue\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/4\"\n },\n \"comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/4/comments\"\n },\n \"review_comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/4/comments\"\n },\n \"review_comment\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\"\n },\n \"commits\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/4/commits\"\n },\n \"statuses\": {\n \"href\": \"https://api.github.com/repos/owner/repo/statuses/3395ea71c9d5a89e3553d2cffe80932026f23353\"\n }\n },\n \"author_association\": \"OWNER\"\n }\n]\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=cms/1970-01-01-first-title", + "headers": { + "Date": "Tue, 10 Sep 2019 13:57:48 GMT", + "Content-Type": "application/vnd.github.VERSION.raw; charset=utf-8", + "Content-Length": "167", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4396", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"a041245814892e3f73f63ca54333fda649b7fc0b\"", + "Last-Modified": "Tue, 10 Sep 2019 13:57:37 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7AE2:1510D:475C44:5783DF:5D77ABDC", + "connection": "keep-alive" + }, + "response": "---\ntemplate: post\ntitle: first title\ndraft: true\ndate: 1970-01-01T00:00:00.000Z\ndescription: first description\ncategory: first category\ntags:\n - tag1\n---\nfirst body\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=master", + "headers": { + "Date": "Tue, 10 Sep 2019 13:57:49 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "404 Not Found", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4395", + "X-RateLimit-Reset": "1568126651", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7AE0:1510F:1246286:162E047:5D77ABDC", + "content-length": "116", + "connection": "keep-alive" + }, + "response": "{\n \"message\": \"Not Found\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/#get-contents\"\n}\n", + "status": 404 + }, + { + "method": "GET", + "url": "/repos/owner/repo/commits/3395ea71c9d5a89e3553d2cffe80932026f23353/status?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:57:50 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4394", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"6c0f6cf1cd1b916a83d1ae269f1f6607\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo, repo:status", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7AE6:9D21:175485F:1C6CF86:5D77ABDD", + "content-length": "6574", + "connection": "keep-alive" + }, + "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"3395ea71c9d5a89e3553d2cffe80932026f23353\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 207573159,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NzMxNTk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/3395ea71c9d5a89e3553d2cffe80932026f23353\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/3395ea71c9d5a89e3553d2cffe80932026f23353/status\"\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=cms/1970-01-01-first-title", + "headers": { + "Date": "Tue, 10 Sep 2019 13:57:50 GMT", + "Content-Type": "application/vnd.github.VERSION.raw; charset=utf-8", + "Content-Length": "167", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4393", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"a041245814892e3f73f63ca54333fda649b7fc0b\"", + "Last-Modified": "Tue, 10 Sep 2019 13:57:37 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7AE8:244E7:11B8026:159FD44:5D77ABDD", + "connection": "keep-alive" + }, + "response": "---\ntemplate: post\ntitle: first title\ndraft: true\ndate: 1970-01-01T00:00:00.000Z\ndescription: first description\ncategory: first category\ntags:\n - tag1\n---\nfirst body\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=master", + "headers": { + "Date": "Tue, 10 Sep 2019 13:57:50 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "404 Not Found", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4392", + "X-RateLimit-Reset": "1568126651", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7AEA:244EB:1824669:1D53871:5D77ABDD", + "content-length": "116", + "connection": "keep-alive" + }, + "response": "{\n \"message\": \"Not Found\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/#get-contents\"\n}\n", + "status": 404 + }, + { + "method": "GET", + "url": "/repos/owner/repo/commits/3395ea71c9d5a89e3553d2cffe80932026f23353/status?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:57:51 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4391", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"6c0f6cf1cd1b916a83d1ae269f1f6607\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo, repo:status", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7AEC:1510C:180242:1D6672:5D77ABDE", + "content-length": "6574", + "connection": "keep-alive" + }, + "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"3395ea71c9d5a89e3553d2cffe80932026f23353\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 207573159,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NzMxNTk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/3395ea71c9d5a89e3553d2cffe80932026f23353\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/3395ea71c9d5a89e3553d2cffe80932026f23353/status\"\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/commits/3395ea71c9d5a89e3553d2cffe80932026f23353/status?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:57:53 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4390", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"6c0f6cf1cd1b916a83d1ae269f1f6607\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo, repo:status", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7AF4:B4E0:16D124F:1BC5D6F:5D77ABE0", + "content-length": "6574", + "connection": "keep-alive" + }, + "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"3395ea71c9d5a89e3553d2cffe80932026f23353\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 207573159,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NzMxNTk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/3395ea71c9d5a89e3553d2cffe80932026f23353\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/3395ea71c9d5a89e3553d2cffe80932026f23353/status\"\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/commits/3395ea71c9d5a89e3553d2cffe80932026f23353/status?ts=600", + "headers": { + "Date": "Tue, 10 Sep 2019 13:57:55 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4389", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"6c0f6cf1cd1b916a83d1ae269f1f6607\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo, repo:status", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7AF8:B4DC:AC7AEA:D1D518:5D77ABE3", + "content-length": "6574", + "connection": "keep-alive" + }, + "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"3395ea71c9d5a89e3553d2cffe80932026f23353\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 207573159,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NzMxNTk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/3395ea71c9d5a89e3553d2cffe80932026f23353\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/3395ea71c9d5a89e3553d2cffe80932026f23353/status\"\n}\n", + "status": 200 + }, + { + "body": "{\"content\":\"LS0tCnRlbXBsYXRlOiBwb3N0CnRpdGxlOiBzZWNvbmQgdGl0bGUKZHJhZnQ6IHRydWUKZGF0ZTogMTk3MC0wMS0wMVQwMDowMDowMC4wMDBaCmRlc2NyaXB0aW9uOiBzZWNvbmQgZGVzY3JpcHRpb24KY2F0ZWdvcnk6IHNlY29uZCBjYXRlZ29yeQp0YWdzOgogIC0gdGFnMgotLS0Kc2Vjb25kIGJvZHkK\",\"encoding\":\"base64\"}", + "method": "POST", + "url": "/repos/owner/repo/git/blobs?ts=600", + "headers": { + "Date": "Tue, 10 Sep 2019 13:57:55 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "207", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4388", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"20da79c64ee18fa137d5d74df9112072\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/blobs/3e5676c8285a456a6604603042b5428883f50417", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7AF6:1510F:1246B2B:162EAED:5D77ABE3", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"3e5676c8285a456a6604603042b5428883f50417\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/3e5676c8285a456a6604603042b5428883f50417\"\n}\n", + "status": 201 + }, + { + "method": "GET", + "url": "/repos/owner/repo/branches/cms%2F1970-01-01-first-title?ts=600", + "headers": { + "Date": "Tue, 10 Sep 2019 13:57:56 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4387", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"be39b6abe17736fc0444ad24dbf986e5\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7AFB:3ED7B:12795CA:1670E09:5D77ABE4", + "content-length": "4815", + "connection": "keep-alive" + }, + "response": "{\n \"name\": \"cms/1970-01-01-first-title\",\n \"commit\": {\n \"sha\": \"3395ea71c9d5a89e3553d2cffe80932026f23353\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NTczMTU5OjMzOTVlYTcxYzlkNWE4OWUzNTUzZDJjZmZlODA5MzIwMjZmMjMzNTM=\",\n \"commit\": {\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T13:57:37Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T13:57:37Z\"\n },\n \"message\": \"Create Post “1970-01-01-first-title”\",\n \"tree\": {\n \"sha\": \"daee8d5d15d144e8779955166a2afeccde2770e1\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/daee8d5d15d144e8779955166a2afeccde2770e1\"\n },\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/3395ea71c9d5a89e3553d2cffe80932026f23353\",\n \"comment_count\": 0,\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n },\n \"url\": \"https://api.github.com/repos/owner/repo/commits/3395ea71c9d5a89e3553d2cffe80932026f23353\",\n \"html_url\": \"https://github.com/owner/repo/commit/3395ea71c9d5a89e3553d2cffe80932026f23353\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/commits/3395ea71c9d5a89e3553d2cffe80932026f23353/comments\",\n \"author\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"committer\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"parents\": [\n {\n \"sha\": \"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"html_url\": \"https://github.com/owner/repo/commit/726172deae99c8a2cea4c71e734a02a793d4d9e5\"\n }\n ]\n },\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/branches/cms/1970-01-01-first-title\",\n \"html\": \"https://github.com/owner/repo/tree/cms/1970-01-01-first-title\"\n },\n \"protected\": false,\n \"protection\": {\n \"enabled\": false,\n \"required_status_checks\": {\n \"enforcement_level\": \"off\",\n \"contexts\": [\n\n ]\n }\n },\n \"protection_url\": \"https://api.github.com/repos/owner/repo/branches/cms/1970-01-01-first-title/protection\"\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/commits/3395ea71c9d5a89e3553d2cffe80932026f23353/status?ts=600", + "headers": { + "Date": "Tue, 10 Sep 2019 13:57:56 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4386", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"6c0f6cf1cd1b916a83d1ae269f1f6607\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo, repo:status", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7AFD:9D21:1755232:1C6DBDE:5D77ABE4", + "content-length": "6574", + "connection": "keep-alive" + }, + "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"3395ea71c9d5a89e3553d2cffe80932026f23353\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 207573159,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NzMxNTk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/3395ea71c9d5a89e3553d2cffe80932026f23353\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/3395ea71c9d5a89e3553d2cffe80932026f23353/status\"\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/trees/3395ea71c9d5a89e3553d2cffe80932026f23353?ts=600", + "headers": { + "Date": "Tue, 10 Sep 2019 13:57:57 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4385", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"65a508bb75288e805db4bb12c2de0339\"", + "Last-Modified": "Tue, 10 Sep 2019 13:56:22 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7AFE:3ED74:1AE61C:20EF81:5D77ABE4", + "content-length": "11769", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"3395ea71c9d5a89e3553d2cffe80932026f23353\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/3395ea71c9d5a89e3553d2cffe80932026f23353\",\n \"tree\": [\n {\n \"path\": \".circleci\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"e5e9af3301cac61f120b8e4d40b1733c7a45685a\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/e5e9af3301cac61f120b8e4d40b1733c7a45685a\"\n },\n {\n \"path\": \".eslintignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"80b4531b026d19f8fa589efd122e76199d23f967\",\n \"size\": 39,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/80b4531b026d19f8fa589efd122e76199d23f967\"\n },\n {\n \"path\": \".eslintrc.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"370684994aaed5b858da3a006f48cfa57e88fd27\",\n \"size\": 414,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/370684994aaed5b858da3a006f48cfa57e88fd27\"\n },\n {\n \"path\": \".flowconfig\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14aa2ac4cc0e15223ad98630a6f1325fc81f8043\",\n \"size\": 283,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14aa2ac4cc0e15223ad98630a6f1325fc81f8043\"\n },\n {\n \"path\": \".gitattributes\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"10a369ddf4f603337cabc6f21646508323941ce1\",\n \"size\": 135,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/10a369ddf4f603337cabc6f21646508323941ce1\"\n },\n {\n \"path\": \".github\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4ebeece548b52b20af59622354530a6d33b50b43\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4ebeece548b52b20af59622354530a6d33b50b43\"\n },\n {\n \"path\": \".gitignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"c071ba35b0e49899bab6d610a68eef667dbbf157\",\n \"size\": 169,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/c071ba35b0e49899bab6d610a68eef667dbbf157\"\n },\n {\n \"path\": \".prettierignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"393f050e123d998cf8c8b362ff95cc8ac4d250e5\",\n \"size\": 45,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/393f050e123d998cf8c8b362ff95cc8ac4d250e5\"\n },\n {\n \"path\": \".prettierrc\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e52ad05bb13b084d7949dd76e1b2517455162150\",\n \"size\": 223,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/e52ad05bb13b084d7949dd76e1b2517455162150\"\n },\n {\n \"path\": \".stylelintrc.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"4b4c9698d10d756f5faa025659b86375428ed0a7\",\n \"size\": 718,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/4b4c9698d10d756f5faa025659b86375428ed0a7\"\n },\n {\n \"path\": \".vscode\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"286e97ec0113ea8242b41ac222e2c3e8077e6f1e\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/286e97ec0113ea8242b41ac222e2c3e8077e6f1e\"\n },\n {\n \"path\": \"CHANGELOG.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"070a5d4f0eacd2dc0be81ae8996f8982de43046e\",\n \"size\": 2113,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/070a5d4f0eacd2dc0be81ae8996f8982de43046e\"\n },\n {\n \"path\": \"CODE_OF_CONDUCT.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"92bc7565ff0ee145a0041b5179a820f14f39ab22\",\n \"size\": 3355,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/92bc7565ff0ee145a0041b5179a820f14f39ab22\"\n },\n {\n \"path\": \"CONTRIBUTING.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"8552aa241254a61258e1ff9666ab36f32fb1e3b9\",\n \"size\": 3548,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/8552aa241254a61258e1ff9666ab36f32fb1e3b9\"\n },\n {\n \"path\": \"LICENSE\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"42d85938357b49977c126ca03b199129082d4fb8\",\n \"size\": 1091,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/42d85938357b49977c126ca03b199129082d4fb8\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"19df50a78654c8d757ca7f38447aa3d09c7abcce\",\n \"size\": 3698,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/19df50a78654c8d757ca7f38447aa3d09c7abcce\"\n },\n {\n \"path\": \"backend\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\"\n },\n {\n \"path\": \"config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"58afd573bbb69fcca000efd0f5d90b93c93a98dd\",\n \"size\": 853,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/58afd573bbb69fcca000efd0f5d90b93c93a98dd\"\n },\n {\n \"path\": \"content\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639\"\n },\n {\n \"path\": \"flow-typed\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"86c32fd6c3118be5e0dbbb231a834447357236c6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/86c32fd6c3118be5e0dbbb231a834447357236c6\"\n },\n {\n \"path\": \"flow\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"0af45ad00d155c8d8c7407d913ff85278244c9ce\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/0af45ad00d155c8d8c7407d913ff85278244c9ce\"\n },\n {\n \"path\": \"gatsby-browser.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9bd2c9dce175f04980e91cd9dc295a299e3cdb80\",\n \"size\": 90,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9bd2c9dce175f04980e91cd9dc295a299e3cdb80\"\n },\n {\n \"path\": \"gatsby-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"353a109dad62e3f25bf9f5e6a2167f21a6c8b459\",\n \"size\": 7228,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/353a109dad62e3f25bf9f5e6a2167f21a6c8b459\"\n },\n {\n \"path\": \"gatsby-node.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14a207883c2093d2cc071bc5a464e165bcc1fead\",\n \"size\": 409,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14a207883c2093d2cc071bc5a464e165bcc1fead\"\n },\n {\n \"path\": \"gatsby\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4f23c06cd1740bf78304d2c0b29bf6bfdf427981\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4f23c06cd1740bf78304d2c0b29bf6bfdf427981\"\n },\n {\n \"path\": \"jest\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\"\n },\n {\n \"path\": \"netlify.toml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"599b99cc5700404fde316a7ede829776f23e7d45\",\n \"size\": 137,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/599b99cc5700404fde316a7ede829776f23e7d45\"\n },\n {\n \"path\": \"package.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9d777616438b90a18f1a4ebfd5f114b4c06c6f17\",\n \"size\": 6855,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9d777616438b90a18f1a4ebfd5f114b4c06c6f17\"\n },\n {\n \"path\": \"postcss-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d216501e9b351a72e00ba0b7459a6500e27e7da2\",\n \"size\": 703,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d216501e9b351a72e00ba0b7459a6500e27e7da2\"\n },\n {\n \"path\": \"renovate.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"dcc309398785698b8870545c32051a3d72dd8271\",\n \"size\": 460,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/dcc309398785698b8870545c32051a3d72dd8271\"\n },\n {\n \"path\": \"serverless-scripts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ee3701f2fbfc7196ba340f6481d1387d20527898\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ee3701f2fbfc7196ba340f6481d1387d20527898\"\n },\n {\n \"path\": \"serverless-single-page-app-plugin\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"08763fcfba643a06a452398517019bea4a5850ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/08763fcfba643a06a452398517019bea4a5850ba\"\n },\n {\n \"path\": \"serverless.yml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"20b22c5fad229f35d029bf6614d333d82fe8a987\",\n \"size\": 7803,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/20b22c5fad229f35d029bf6614d333d82fe8a987\"\n },\n {\n \"path\": \"src\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"8cdb35a88232c0f32f12f130c92c7cc55f97f471\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/8cdb35a88232c0f32f12f130c92c7cc55f97f471\"\n },\n {\n \"path\": \"static\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"53c6380a600a030d3722bff7ecde36f749fb6964\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/53c6380a600a030d3722bff7ecde36f749fb6964\"\n },\n {\n \"path\": \"utils\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"a592549c9f74db40b51efefcda2fd76810405f27\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/a592549c9f74db40b51efefcda2fd76810405f27\"\n },\n {\n \"path\": \"yarn.lock\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"475c9c1924ca752a0686303e2fdeb7b13ad75f57\",\n \"size\": 793903,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/475c9c1924ca752a0686303e2fdeb7b13ad75f57\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639?ts=600", + "headers": { + "Date": "Tue, 10 Sep 2019 13:57:57 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4384", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"cf11b691192f3fcf082e39fe0a214ad1\"", + "Last-Modified": "Tue, 10 Sep 2019 13:56:22 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B00:1510E:AD2752:D2FE95:5D77ABE5", + "content-length": "831", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"tree\": [\n {\n \"path\": \"pages\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\"\n },\n {\n \"path\": \"posts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba?ts=600", + "headers": { + "Date": "Tue, 10 Sep 2019 13:57:58 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4383", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"ebc1ab128eebad51810afca6f07ccff1\"", + "Last-Modified": "Tue, 10 Sep 2019 13:56:22 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B02:2B1F:123A5AD:163F5F6:5D77ABE5", + "content-length": "2362", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a041245814892e3f73f63ca54333fda649b7fc0b\",\n \"size\": 167,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b\"\n },\n {\n \"path\": \"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"size\": 1707,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\"\n },\n {\n \"path\": \"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"size\": 2565,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\"\n },\n {\n \"path\": \"2016-02-02---A-Brief-History-of-Typography.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"0eea554365f002d0f1572af9a58522d335a794d5\",\n \"size\": 2786,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\"\n },\n {\n \"path\": \"2017-18-08---The-Birth-of-Movable-Type.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"44f78c474d04273185a95821426f75affc9b0044\",\n \"size\": 16071,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\"\n },\n {\n \"path\": \"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"size\": 7465,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/commits/3395ea71c9d5a89e3553d2cffe80932026f23353/status?ts=600", + "headers": { + "Date": "Tue, 10 Sep 2019 13:57:58 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4382", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"6c0f6cf1cd1b916a83d1ae269f1f6607\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo, repo:status", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B04:15110:189CFB5:1DE7FD0:5D77ABE6", + "content-length": "6574", + "connection": "keep-alive" + }, + "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"3395ea71c9d5a89e3553d2cffe80932026f23353\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 207573159,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NzMxNTk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/3395ea71c9d5a89e3553d2cffe80932026f23353\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/3395ea71c9d5a89e3553d2cffe80932026f23353/status\"\n}\n", + "status": 200 + }, + { + "body": "{\"base_tree\":\"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\"tree\":[{\"path\":\"1970-01-01-first-title.md\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"3e5676c8285a456a6604603042b5428883f50417\"}]}", + "method": "POST", + "url": "/repos/owner/repo/git/trees?ts=600", + "headers": { + "Date": "Tue, 10 Sep 2019 13:57:58 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "2362", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4381", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"d564641877e5dbf80c984c6cd098d23b\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/trees/7db8b5bca921590c7c398d029d9172111750f5fc", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B06:B4DA:530261:6542C0:5D77ABE6", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"7db8b5bca921590c7c398d029d9172111750f5fc\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/7db8b5bca921590c7c398d029d9172111750f5fc\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"3e5676c8285a456a6604603042b5428883f50417\",\n \"size\": 171,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/3e5676c8285a456a6604603042b5428883f50417\"\n },\n {\n \"path\": \"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"size\": 1707,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\"\n },\n {\n \"path\": \"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"size\": 2565,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\"\n },\n {\n \"path\": \"2016-02-02---A-Brief-History-of-Typography.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"0eea554365f002d0f1572af9a58522d335a794d5\",\n \"size\": 2786,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\"\n },\n {\n \"path\": \"2017-18-08---The-Birth-of-Movable-Type.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"44f78c474d04273185a95821426f75affc9b0044\",\n \"size\": 16071,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\"\n },\n {\n \"path\": \"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"size\": 7465,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"base_tree\":\"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\"tree\":[{\"path\":\"posts\",\"mode\":\"040000\",\"type\":\"tree\",\"sha\":\"7db8b5bca921590c7c398d029d9172111750f5fc\",\"parentSha\":\"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\"}]}", + "method": "POST", + "url": "/repos/owner/repo/git/trees?ts=600", + "headers": { + "Date": "Tue, 10 Sep 2019 13:57:59 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "831", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4380", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"da30aaa456f4811b19903bb9eec2937d\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/trees/4663bc351c2b79f066f9434722d865f8a0fc88cd", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B08:9D20:1166043:1546D90:5D77ABE7", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"4663bc351c2b79f066f9434722d865f8a0fc88cd\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4663bc351c2b79f066f9434722d865f8a0fc88cd\",\n \"tree\": [\n {\n \"path\": \"pages\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\"\n },\n {\n \"path\": \"posts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"7db8b5bca921590c7c398d029d9172111750f5fc\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/7db8b5bca921590c7c398d029d9172111750f5fc\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"base_tree\":\"3395ea71c9d5a89e3553d2cffe80932026f23353\",\"tree\":[{\"path\":\"content\",\"mode\":\"040000\",\"type\":\"tree\",\"sha\":\"4663bc351c2b79f066f9434722d865f8a0fc88cd\",\"parentSha\":\"93da0f3541510f5f9ec829a3cdc6e8147f611639\"}]}", + "method": "POST", + "url": "/repos/owner/repo/git/trees?ts=600", + "headers": { + "Date": "Tue, 10 Sep 2019 13:58:00 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "11769", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4379", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"79f84687b6c980f834f04e4a1a94c7db\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/trees/9011d70a132ecce386da7098e3ca594bbb772623", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B0A:3ED7B:1279A53:16713BC:5D77ABE7", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"9011d70a132ecce386da7098e3ca594bbb772623\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/9011d70a132ecce386da7098e3ca594bbb772623\",\n \"tree\": [\n {\n \"path\": \".circleci\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"e5e9af3301cac61f120b8e4d40b1733c7a45685a\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/e5e9af3301cac61f120b8e4d40b1733c7a45685a\"\n },\n {\n \"path\": \".eslintignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"80b4531b026d19f8fa589efd122e76199d23f967\",\n \"size\": 39,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/80b4531b026d19f8fa589efd122e76199d23f967\"\n },\n {\n \"path\": \".eslintrc.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"370684994aaed5b858da3a006f48cfa57e88fd27\",\n \"size\": 414,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/370684994aaed5b858da3a006f48cfa57e88fd27\"\n },\n {\n \"path\": \".flowconfig\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14aa2ac4cc0e15223ad98630a6f1325fc81f8043\",\n \"size\": 283,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14aa2ac4cc0e15223ad98630a6f1325fc81f8043\"\n },\n {\n \"path\": \".gitattributes\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"10a369ddf4f603337cabc6f21646508323941ce1\",\n \"size\": 135,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/10a369ddf4f603337cabc6f21646508323941ce1\"\n },\n {\n \"path\": \".github\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4ebeece548b52b20af59622354530a6d33b50b43\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4ebeece548b52b20af59622354530a6d33b50b43\"\n },\n {\n \"path\": \".gitignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"c071ba35b0e49899bab6d610a68eef667dbbf157\",\n \"size\": 169,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/c071ba35b0e49899bab6d610a68eef667dbbf157\"\n },\n {\n \"path\": \".prettierignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"393f050e123d998cf8c8b362ff95cc8ac4d250e5\",\n \"size\": 45,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/393f050e123d998cf8c8b362ff95cc8ac4d250e5\"\n },\n {\n \"path\": \".prettierrc\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e52ad05bb13b084d7949dd76e1b2517455162150\",\n \"size\": 223,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/e52ad05bb13b084d7949dd76e1b2517455162150\"\n },\n {\n \"path\": \".stylelintrc.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"4b4c9698d10d756f5faa025659b86375428ed0a7\",\n \"size\": 718,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/4b4c9698d10d756f5faa025659b86375428ed0a7\"\n },\n {\n \"path\": \".vscode\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"286e97ec0113ea8242b41ac222e2c3e8077e6f1e\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/286e97ec0113ea8242b41ac222e2c3e8077e6f1e\"\n },\n {\n \"path\": \"CHANGELOG.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"070a5d4f0eacd2dc0be81ae8996f8982de43046e\",\n \"size\": 2113,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/070a5d4f0eacd2dc0be81ae8996f8982de43046e\"\n },\n {\n \"path\": \"CODE_OF_CONDUCT.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"92bc7565ff0ee145a0041b5179a820f14f39ab22\",\n \"size\": 3355,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/92bc7565ff0ee145a0041b5179a820f14f39ab22\"\n },\n {\n \"path\": \"CONTRIBUTING.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"8552aa241254a61258e1ff9666ab36f32fb1e3b9\",\n \"size\": 3548,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/8552aa241254a61258e1ff9666ab36f32fb1e3b9\"\n },\n {\n \"path\": \"LICENSE\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"42d85938357b49977c126ca03b199129082d4fb8\",\n \"size\": 1091,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/42d85938357b49977c126ca03b199129082d4fb8\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"19df50a78654c8d757ca7f38447aa3d09c7abcce\",\n \"size\": 3698,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/19df50a78654c8d757ca7f38447aa3d09c7abcce\"\n },\n {\n \"path\": \"backend\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\"\n },\n {\n \"path\": \"config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"58afd573bbb69fcca000efd0f5d90b93c93a98dd\",\n \"size\": 853,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/58afd573bbb69fcca000efd0f5d90b93c93a98dd\"\n },\n {\n \"path\": \"content\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4663bc351c2b79f066f9434722d865f8a0fc88cd\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4663bc351c2b79f066f9434722d865f8a0fc88cd\"\n },\n {\n \"path\": \"flow-typed\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"86c32fd6c3118be5e0dbbb231a834447357236c6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/86c32fd6c3118be5e0dbbb231a834447357236c6\"\n },\n {\n \"path\": \"flow\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"0af45ad00d155c8d8c7407d913ff85278244c9ce\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/0af45ad00d155c8d8c7407d913ff85278244c9ce\"\n },\n {\n \"path\": \"gatsby-browser.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9bd2c9dce175f04980e91cd9dc295a299e3cdb80\",\n \"size\": 90,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9bd2c9dce175f04980e91cd9dc295a299e3cdb80\"\n },\n {\n \"path\": \"gatsby-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"353a109dad62e3f25bf9f5e6a2167f21a6c8b459\",\n \"size\": 7228,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/353a109dad62e3f25bf9f5e6a2167f21a6c8b459\"\n },\n {\n \"path\": \"gatsby-node.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14a207883c2093d2cc071bc5a464e165bcc1fead\",\n \"size\": 409,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14a207883c2093d2cc071bc5a464e165bcc1fead\"\n },\n {\n \"path\": \"gatsby\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4f23c06cd1740bf78304d2c0b29bf6bfdf427981\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4f23c06cd1740bf78304d2c0b29bf6bfdf427981\"\n },\n {\n \"path\": \"jest\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\"\n },\n {\n \"path\": \"netlify.toml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"599b99cc5700404fde316a7ede829776f23e7d45\",\n \"size\": 137,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/599b99cc5700404fde316a7ede829776f23e7d45\"\n },\n {\n \"path\": \"package.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9d777616438b90a18f1a4ebfd5f114b4c06c6f17\",\n \"size\": 6855,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9d777616438b90a18f1a4ebfd5f114b4c06c6f17\"\n },\n {\n \"path\": \"postcss-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d216501e9b351a72e00ba0b7459a6500e27e7da2\",\n \"size\": 703,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d216501e9b351a72e00ba0b7459a6500e27e7da2\"\n },\n {\n \"path\": \"renovate.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"dcc309398785698b8870545c32051a3d72dd8271\",\n \"size\": 460,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/dcc309398785698b8870545c32051a3d72dd8271\"\n },\n {\n \"path\": \"serverless-scripts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ee3701f2fbfc7196ba340f6481d1387d20527898\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ee3701f2fbfc7196ba340f6481d1387d20527898\"\n },\n {\n \"path\": \"serverless-single-page-app-plugin\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"08763fcfba643a06a452398517019bea4a5850ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/08763fcfba643a06a452398517019bea4a5850ba\"\n },\n {\n \"path\": \"serverless.yml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"20b22c5fad229f35d029bf6614d333d82fe8a987\",\n \"size\": 7803,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/20b22c5fad229f35d029bf6614d333d82fe8a987\"\n },\n {\n \"path\": \"src\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"8cdb35a88232c0f32f12f130c92c7cc55f97f471\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/8cdb35a88232c0f32f12f130c92c7cc55f97f471\"\n },\n {\n \"path\": \"static\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"53c6380a600a030d3722bff7ecde36f749fb6964\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/53c6380a600a030d3722bff7ecde36f749fb6964\"\n },\n {\n \"path\": \"utils\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"a592549c9f74db40b51efefcda2fd76810405f27\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/a592549c9f74db40b51efefcda2fd76810405f27\"\n },\n {\n \"path\": \"yarn.lock\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"475c9c1924ca752a0686303e2fdeb7b13ad75f57\",\n \"size\": 793903,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/475c9c1924ca752a0686303e2fdeb7b13ad75f57\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "method": "GET", + "url": "/repos/owner/repo/commits/3395ea71c9d5a89e3553d2cffe80932026f23353/status?ts=600", + "headers": { + "Date": "Tue, 10 Sep 2019 13:58:01 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4378", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"6c0f6cf1cd1b916a83d1ae269f1f6607\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo, repo:status", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B0E:2B1F:123AA42:163FBCD:5D77ABE9", + "content-length": "6574", + "connection": "keep-alive" + }, + "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"3395ea71c9d5a89e3553d2cffe80932026f23353\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 207573159,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NzMxNTk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/3395ea71c9d5a89e3553d2cffe80932026f23353\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/3395ea71c9d5a89e3553d2cffe80932026f23353/status\"\n}\n", + "status": 200 + }, + { + "body": "{\"message\":\"Update Post “1970-01-01-first-title”\",\"tree\":\"9011d70a132ecce386da7098e3ca594bbb772623\",\"parents\":[\"3395ea71c9d5a89e3553d2cffe80932026f23353\"]}", + "method": "POST", + "url": "/repos/owner/repo/git/commits?ts=600", + "headers": { + "Date": "Tue, 10 Sep 2019 13:58:02 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "1504", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4377", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"e742777c58859fdd478e173736a7f76d\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/commits/86f35c37a918ec896c5398724088236b57089da2", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B0C:244EB:182576D:1D54DD1:5D77ABE8", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"86f35c37a918ec896c5398724088236b57089da2\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NTczMTU5Ojg2ZjM1YzM3YTkxOGVjODk2YzUzOTg3MjQwODgyMzZiNTcwODlkYTI=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/86f35c37a918ec896c5398724088236b57089da2\",\n \"html_url\": \"https://github.com/owner/repo/commit/86f35c37a918ec896c5398724088236b57089da2\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T13:58:01Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T13:58:01Z\"\n },\n \"tree\": {\n \"sha\": \"9011d70a132ecce386da7098e3ca594bbb772623\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/9011d70a132ecce386da7098e3ca594bbb772623\"\n },\n \"message\": \"Update Post “1970-01-01-first-title”\",\n \"parents\": [\n {\n \"sha\": \"3395ea71c9d5a89e3553d2cffe80932026f23353\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/3395ea71c9d5a89e3553d2cffe80932026f23353\",\n \"html_url\": \"https://github.com/owner/repo/commit/3395ea71c9d5a89e3553d2cffe80932026f23353\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "status": 201 + }, + { + "method": "GET", + "url": "/repos/owner/repo/pulls/4/commits?ts=600", + "headers": { + "Date": "Tue, 10 Sep 2019 13:58:02 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4376", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"3d569c5cfd2a5944dcde1c0e8091fd3a\"", + "Last-Modified": "Tue, 10 Sep 2019 13:57:39 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B16:1510E:AD2C4B:D304C5:5D77ABEA", + "content-length": "4157", + "connection": "keep-alive" + }, + "response": "[\n {\n \"sha\": \"3395ea71c9d5a89e3553d2cffe80932026f23353\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NTczMTU5OjMzOTVlYTcxYzlkNWE4OWUzNTUzZDJjZmZlODA5MzIwMjZmMjMzNTM=\",\n \"commit\": {\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T13:57:37Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T13:57:37Z\"\n },\n \"message\": \"Create Post “1970-01-01-first-title”\",\n \"tree\": {\n \"sha\": \"daee8d5d15d144e8779955166a2afeccde2770e1\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/daee8d5d15d144e8779955166a2afeccde2770e1\"\n },\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/3395ea71c9d5a89e3553d2cffe80932026f23353\",\n \"comment_count\": 0,\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n },\n \"url\": \"https://api.github.com/repos/owner/repo/commits/3395ea71c9d5a89e3553d2cffe80932026f23353\",\n \"html_url\": \"https://github.com/owner/repo/commit/3395ea71c9d5a89e3553d2cffe80932026f23353\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/commits/3395ea71c9d5a89e3553d2cffe80932026f23353/comments\",\n \"author\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"committer\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"parents\": [\n {\n \"sha\": \"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"html_url\": \"https://github.com/owner/repo/commit/726172deae99c8a2cea4c71e734a02a793d4d9e5\"\n }\n ]\n }\n]\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/branches/master?ts=600", + "headers": { + "Date": "Tue, 10 Sep 2019 13:58:02 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4375", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"f47adc6d20eeac555786fbffd72595af\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B14:9D21:1755B54:1C6E7C1:5D77ABEA", + "content-length": "5961", + "connection": "keep-alive" + }, + "response": "{\n \"name\": \"master\",\n \"commit\": {\n \"sha\": \"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NTczMTU5OjcyNjE3MmRlYWU5OWM4YTJjZWE0YzcxZTczNGEwMmE3OTNkNGQ5ZTU=\",\n \"commit\": {\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-08T09:08:14Z\"\n },\n \"committer\": {\n \"name\": \"GitHub\",\n \"email\": \"noreply@github.com\",\n \"date\": \"2019-09-08T09:08:14Z\"\n },\n \"message\": \"Merge pull request #10 from owner/chore/update_dependencies\\n\\nChore: update dependencies\",\n \"tree\": {\n \"sha\": \"c5b7f6d674ba193bb7b4a5fcf4933034e1b7f2b7\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/c5b7f6d674ba193bb7b4a5fcf4933034e1b7f2b7\"\n },\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"comment_count\": 0,\n \"verification\": {\n \"verified\": true,\n \"reason\": \"valid\",\n \"signature\": \"-----BEGIN PGP SIGNATURE-----\\n\\nwsBcBAABCAAQBQJddMT+CRBK7hj4Ov3rIwAAdHIIABWcobVYZFMuqSPezceRaKDr\\npXGqxvB3WLiIrvsQiBz2si9SvufXxLUdq72iaYTbXMCqIAAIBDNwHLltOKcbUF9J\\nKa8pD6cq7jpNyZfhI8xlapMwEZPu53as0tSvwdOnl/0iL+WYjUZUFQR+vrWEmllu\\nhIES9QxU2nk5zcS7t8sFRA+sJdll8GzzhoWYkpw3wgqpxCzJdf5HJS0tWyVCZM5U\\nCgSpSgTvz9bALnQxu7YVrfLGEvi8S7LaOEz5HQc+TV1hNR2dfl5hhiHhWQ1Rsx5w\\nUECV01vItNWhx2dyMn77hIu/G+bTH89WZDU+CmifsNkmvkq90fk4eNt8Hg1mxn4=\\n=6ayM\\n-----END PGP SIGNATURE-----\\n\",\n \"payload\": \"tree c5b7f6d674ba193bb7b4a5fcf4933034e1b7f2b7\\nparent 8ade583d7c02e7769dd685ca64c10851c09f51cf\\nparent 4940957ff42b034d8c47d64b383c34548a34fbb5\\nauthor owner 1567933694 +0300\\ncommitter GitHub 1567933694 +0300\\n\\nMerge pull request #10 from owner/chore/update_dependencies\\n\\nChore: update dependencies\"\n }\n },\n \"url\": \"https://api.github.com/repos/owner/repo/commits/726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"html_url\": \"https://github.com/owner/repo/commit/726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/commits/726172deae99c8a2cea4c71e734a02a793d4d9e5/comments\",\n \"author\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"committer\": {\n \"login\": \"web-flow\",\n \"id\": 19864447,\n \"node_id\": \"MDQ6VXNlcjE5ODY0NDQ3\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/web-flow\",\n \"html_url\": \"https://github.com/web-flow\",\n \"followers_url\": \"https://api.github.com/users/web-flow/followers\",\n \"following_url\": \"https://api.github.com/users/web-flow/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/web-flow/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/web-flow/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/web-flow/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/web-flow/orgs\",\n \"repos_url\": \"https://api.github.com/users/web-flow/repos\",\n \"events_url\": \"https://api.github.com/users/web-flow/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/web-flow/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"parents\": [\n {\n \"sha\": \"8ade583d7c02e7769dd685ca64c10851c09f51cf\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/8ade583d7c02e7769dd685ca64c10851c09f51cf\",\n \"html_url\": \"https://github.com/owner/repo/commit/8ade583d7c02e7769dd685ca64c10851c09f51cf\"\n },\n {\n \"sha\": \"4940957ff42b034d8c47d64b383c34548a34fbb5\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/4940957ff42b034d8c47d64b383c34548a34fbb5\",\n \"html_url\": \"https://github.com/owner/repo/commit/4940957ff42b034d8c47d64b383c34548a34fbb5\"\n }\n ]\n },\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/branches/master\",\n \"html\": \"https://github.com/owner/repo/tree/master\"\n },\n \"protected\": false,\n \"protection\": {\n \"enabled\": false,\n \"required_status_checks\": {\n \"enforcement_level\": \"off\",\n \"contexts\": [\n\n ]\n }\n },\n \"protection_url\": \"https://api.github.com/repos/owner/repo/branches/master/protection\"\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/commits/3395ea71c9d5a89e3553d2cffe80932026f23353/status?ts=600", + "headers": { + "Date": "Tue, 10 Sep 2019 13:58:03 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4374", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"6c0f6cf1cd1b916a83d1ae269f1f6607\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo, repo:status", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B10:9D20:1166421:1547278:5D77ABEA", + "content-length": "6574", + "connection": "keep-alive" + }, + "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"3395ea71c9d5a89e3553d2cffe80932026f23353\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 207573159,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NzMxNTk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/3395ea71c9d5a89e3553d2cffe80932026f23353\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/3395ea71c9d5a89e3553d2cffe80932026f23353/status\"\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=600", + "headers": { + "Date": "Tue, 10 Sep 2019 13:58:03 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4373", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"47fb9e023894b03616f59d8921753c36\"", + "Last-Modified": "Tue, 10 Sep 2019 13:56:22 GMT", + "X-Poll-Interval": "300", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B18:3ED74:1AE787:20F15E:5D77ABEB", + "content-length": "484", + "connection": "keep-alive" + }, + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NTczMTU5OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"eb1e0e296f5bccea75bb2de46a4deba2e98bbd38\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/eb1e0e296f5bccea75bb2de46a4deba2e98bbd38\"\n }\n}\n", + "status": 200 + }, + { + "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjQsImhlYWQiOiI4NmYzNWMzN2E5MThlYzg5NmM1Mzk4NzI0MDg4MjM2YjU3MDg5ZGEyIn0sInVzZXIiOiJvd25lciIsInN0YXR1cyI6ImRyYWZ0IiwiYnJhbmNoIjoiY21zLzE5NzAtMDEtMDEtZmlyc3QtdGl0bGUiLCJjb2xsZWN0aW9uIjoicG9zdHMiLCJjb21taXRNZXNzYWdlIjoiQ3JlYXRlIFBvc3Qg4oCcMTk3MC0wMS0wMS1maXJzdC10aXRsZeKAnSIsInRpdGxlIjoiZmlyc3QgdGl0bGUiLCJkZXNjcmlwdGlvbiI6ImZpcnN0IGRlc2NyaXB0aW9uIiwib2JqZWN0cyI6eyJlbnRyeSI6eyJwYXRoIjoiY29udGVudC9wb3N0cy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxlLm1kIiwic2hhIjoiYTA0MTI0NTgxNDg5MmUzZjczZjYzY2E1NDMzM2ZkYTY0OWI3ZmMwYiJ9LCJmaWxlcyI6W119LCJ0aW1lU3RhbXAiOiIxOTcwLTAxLTAxVDAwOjAwOjAwLjYwMFoifQ==\",\"encoding\":\"base64\"}", + "method": "POST", + "url": "/repos/owner/repo/git/blobs?ts=600", + "headers": { + "Date": "Tue, 10 Sep 2019 13:58:04 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "207", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4372", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"162dd30dc1109ed550c05d42caaf2da9\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/blobs/fdc915851683d975593b92883c28fac5829caee5", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B1A:B4DC:AC81CC:D1DDD8:5D77ABEC", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"fdc915851683d975593b92883c28fac5829caee5\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/fdc915851683d975593b92883c28fac5829caee5\"\n}\n", + "status": 201 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/trees/eb1e0e296f5bccea75bb2de46a4deba2e98bbd38?ts=600", + "headers": { + "Date": "Tue, 10 Sep 2019 13:58:05 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4371", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"56b31e801faac66f7531558da7e4f405\"", + "Last-Modified": "Tue, 10 Sep 2019 13:56:22 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B1C:B4DE:1207C8A:15F3635:5D77ABED", + "content-length": "895", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"eb1e0e296f5bccea75bb2de46a4deba2e98bbd38\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/eb1e0e296f5bccea75bb2de46a4deba2e98bbd38\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"ca8ce9c0c707eebd8e95184292c4289a9ece13dc\",\n \"size\": 462,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/ca8ce9c0c707eebd8e95184292c4289a9ece13dc\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 200 + }, + { + "body": "{\"base_tree\":\"eb1e0e296f5bccea75bb2de46a4deba2e98bbd38\",\"tree\":[{\"path\":\"1970-01-01-first-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"fdc915851683d975593b92883c28fac5829caee5\"}]}", + "method": "POST", + "url": "/repos/owner/repo/git/trees?ts=600", + "headers": { + "Date": "Tue, 10 Sep 2019 13:58:08 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "895", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4370", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"abd272e6344942be6905c1f0eb9c2d99\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/trees/3d48c4a79740aa1891550bcf74fb215a27c4bc84", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B1E:2B1F:123B112:1640448:5D77ABED", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"3d48c4a79740aa1891550bcf74fb215a27c4bc84\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/3d48c4a79740aa1891550bcf74fb215a27c4bc84\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"fdc915851683d975593b92883c28fac5829caee5\",\n \"size\": 462,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/fdc915851683d975593b92883c28fac5829caee5\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"message\":\"Updating “1970-01-01-first-title” metadata\",\"tree\":\"3d48c4a79740aa1891550bcf74fb215a27c4bc84\",\"parents\":[\"eb1e0e296f5bccea75bb2de46a4deba2e98bbd38\"]}", + "method": "POST", + "url": "/repos/owner/repo/git/commits?ts=600", + "headers": { + "Date": "Tue, 10 Sep 2019 13:58:09 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "1510", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4369", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"a2aa8c4984b9e5d7dd7cfbef2735b93e\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/commits/8c927740ce1aeb2ea14692f94d9d1b2f89d9e97e", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B20:244E4:AFD461:D51455:5D77ABF0", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"8c927740ce1aeb2ea14692f94d9d1b2f89d9e97e\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NTczMTU5OjhjOTI3NzQwY2UxYWViMmVhMTQ2OTJmOTRkOWQxYjJmODlkOWU5N2U=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/8c927740ce1aeb2ea14692f94d9d1b2f89d9e97e\",\n \"html_url\": \"https://github.com/owner/repo/commit/8c927740ce1aeb2ea14692f94d9d1b2f89d9e97e\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T13:58:08Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T13:58:08Z\"\n },\n \"tree\": {\n \"sha\": \"3d48c4a79740aa1891550bcf74fb215a27c4bc84\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/3d48c4a79740aa1891550bcf74fb215a27c4bc84\"\n },\n \"message\": \"Updating “1970-01-01-first-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"eb1e0e296f5bccea75bb2de46a4deba2e98bbd38\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/eb1e0e296f5bccea75bb2de46a4deba2e98bbd38\",\n \"html_url\": \"https://github.com/owner/repo/commit/eb1e0e296f5bccea75bb2de46a4deba2e98bbd38\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "status": 201 + }, + { + "body": "{\"sha\":\"8c927740ce1aeb2ea14692f94d9d1b2f89d9e97e\",\"force\":false}", + "method": "PATCH", + "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=600", + "headers": { + "Date": "Tue, 10 Sep 2019 13:58:10 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4368", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"ccc22bb6cc6a6794fdfdf86aa5dd27b6\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B22:244EB:1826645:1D5600F:5D77ABF1", + "content-length": "484", + "connection": "keep-alive" + }, + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NTczMTU5OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"8c927740ce1aeb2ea14692f94d9d1b2f89d9e97e\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/8c927740ce1aeb2ea14692f94d9d1b2f89d9e97e\"\n }\n}\n", + "status": 200 + }, + { + "body": "{\"sha\":\"86f35c37a918ec896c5398724088236b57089da2\",\"force\":true}", + "method": "PATCH", + "url": "/repos/owner/repo/git/refs/heads/cms%2F1970-01-01-first-title?ts=600", + "headers": { + "Date": "Tue, 10 Sep 2019 13:58:11 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4367", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"370754473fafc8b387be19f1f41a498b\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B24:3ED77:AC5D2B:D0F49C:5D77ABF2", + "content-length": "518", + "connection": "keep-alive" + }, + "response": "{\n \"ref\": \"refs/heads/cms/1970-01-01-first-title\",\n \"node_id\": \"MDM6UmVmMjA3NTczMTU5OmNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxl\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/heads/cms/1970-01-01-first-title\",\n \"object\": {\n \"sha\": \"86f35c37a918ec896c5398724088236b57089da2\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/86f35c37a918ec896c5398724088236b57089da2\"\n }\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/commits/86f35c37a918ec896c5398724088236b57089da2/status?ts=600", + "headers": { + "Date": "Tue, 10 Sep 2019 13:58:12 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4366", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"94a9944305640336faed8d6ccb90a9db\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo, repo:status", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B26:1510E:AD3630:D310AA:5D77ABF4", + "content-length": "6574", + "connection": "keep-alive" + }, + "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"86f35c37a918ec896c5398724088236b57089da2\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 207573159,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NzMxNTk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/86f35c37a918ec896c5398724088236b57089da2\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/86f35c37a918ec896c5398724088236b57089da2/status\"\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/refs/heads/cms?ts=600", + "headers": { + "Date": "Tue, 10 Sep 2019 13:58:12 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4365", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"6222f06ae2a0d73db9c95cf3130adf5e\"", + "Last-Modified": "Tue, 10 Sep 2019 13:56:22 GMT", + "X-Poll-Interval": "300", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B28:2B1F:123B9E5:1640F29:5D77ABF4", + "content-length": "542", + "connection": "keep-alive" + }, + "response": "[\n {\n \"ref\": \"refs/heads/cms/1970-01-01-first-title\",\n \"node_id\": \"MDM6UmVmMjA3NTczMTU5OmNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxl\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/heads/cms/1970-01-01-first-title\",\n \"object\": {\n \"sha\": \"86f35c37a918ec896c5398724088236b57089da2\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/86f35c37a918ec896c5398724088236b57089da2\"\n }\n }\n]\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/pulls?ts=600&head=cms/1970-01-01-first-title&state=open&base=master", + "headers": { + "Date": "Tue, 10 Sep 2019 13:58:13 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4364", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"df39502365591489a8e6173817f3a711\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B2A:2B24:17E695A:1D0E70C:5D77ABF5", + "content-length": "22154", + "connection": "keep-alive" + }, + "response": "[\n {\n \"url\": \"https://api.github.com/repos/owner/repo/pulls/4\",\n \"id\": 316008722,\n \"node_id\": \"MDExOlB1bGxSZXF1ZXN0MzE2MDA4NzIy\",\n \"html_url\": \"https://github.com/owner/repo/pull/4\",\n \"diff_url\": \"https://github.com/owner/repo/pull/4.diff\",\n \"patch_url\": \"https://github.com/owner/repo/pull/4.patch\",\n \"issue_url\": \"https://api.github.com/repos/owner/repo/issues/4\",\n \"number\": 4,\n \"state\": \"open\",\n \"locked\": false,\n \"title\": \"Create Post “1970-01-01-first-title”\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Automatically generated by Netlify CMS\",\n \"created_at\": \"2019-09-10T13:57:39Z\",\n \"updated_at\": \"2019-09-10T13:58:11Z\",\n \"closed_at\": null,\n \"merged_at\": null,\n \"merge_commit_sha\": \"df26bcfe232b7c02146ac03d41db505daa2029d0\",\n \"assignee\": null,\n \"assignees\": [\n\n ],\n \"requested_reviewers\": [\n\n ],\n \"requested_teams\": [\n\n ],\n \"labels\": [\n\n ],\n \"milestone\": null,\n \"commits_url\": \"https://api.github.com/repos/owner/repo/pulls/4/commits\",\n \"review_comments_url\": \"https://api.github.com/repos/owner/repo/pulls/4/comments\",\n \"review_comment_url\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/issues/4/comments\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/86f35c37a918ec896c5398724088236b57089da2\",\n \"head\": {\n \"label\": \"owner:cms/1970-01-01-first-title\",\n \"ref\": \"cms/1970-01-01-first-title\",\n \"sha\": \"86f35c37a918ec896c5398724088236b57089da2\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 207573159,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NzMxNTk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-10T13:52:54Z\",\n \"updated_at\": \"2019-09-10T13:56:22Z\",\n \"pushed_at\": \"2019-09-10T13:58:12Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 1,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 1,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"base\": {\n \"label\": \"owner:master\",\n \"ref\": \"master\",\n \"sha\": \"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 207573159,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NzMxNTk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-10T13:52:54Z\",\n \"updated_at\": \"2019-09-10T13:56:22Z\",\n \"pushed_at\": \"2019-09-10T13:58:12Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 1,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 1,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/4\"\n },\n \"html\": {\n \"href\": \"https://github.com/owner/repo/pull/4\"\n },\n \"issue\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/4\"\n },\n \"comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/4/comments\"\n },\n \"review_comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/4/comments\"\n },\n \"review_comment\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\"\n },\n \"commits\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/4/commits\"\n },\n \"statuses\": {\n \"href\": \"https://api.github.com/repos/owner/repo/statuses/86f35c37a918ec896c5398724088236b57089da2\"\n }\n },\n \"author_association\": \"OWNER\"\n }\n]\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=600&ref=master", + "headers": { + "Date": "Tue, 10 Sep 2019 13:58:14 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "404 Not Found", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4363", + "X-RateLimit-Reset": "1568126651", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B2E:1510F:124841A:16309C0:5D77ABF6", + "content-length": "116", + "connection": "keep-alive" + }, + "response": "{\n \"message\": \"Not Found\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/#get-contents\"\n}\n", + "status": 404 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=600&ref=cms/1970-01-01-first-title", + "headers": { + "Date": "Tue, 10 Sep 2019 13:58:14 GMT", + "Content-Type": "application/vnd.github.VERSION.raw; charset=utf-8", + "Content-Length": "171", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4362", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"3e5676c8285a456a6604603042b5428883f50417\"", + "Last-Modified": "Tue, 10 Sep 2019 13:58:01 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B2C:9D20:11672DE:15484C6:5D77ABF6", + "connection": "keep-alive" + }, + "response": "---\ntemplate: post\ntitle: second title\ndraft: true\ndate: 1970-01-01T00:00:00.000Z\ndescription: second description\ncategory: second category\ntags:\n - tag2\n---\nsecond body\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/commits/86f35c37a918ec896c5398724088236b57089da2/status?ts=600", + "headers": { + "Date": "Tue, 10 Sep 2019 13:58:17 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4358", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"94a9944305640336faed8d6ccb90a9db\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo, repo:status", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B3A:244E4:AFDCD4:D51EAB:5D77ABF9", + "content-length": "6574", + "connection": "keep-alive" + }, + "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"86f35c37a918ec896c5398724088236b57089da2\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 207573159,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NzMxNTk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/86f35c37a918ec896c5398724088236b57089da2\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/86f35c37a918ec896c5398724088236b57089da2/status\"\n}\n", + "status": 200 + } +] \ No newline at end of file diff --git a/cypress/fixtures/Github Backend Editorial Workflow - REST API - Open Authoring__can update an entry.json b/cypress/fixtures/Github Backend Editorial Workflow - REST API - Open Authoring__can update an entry.json new file mode 100644 index 00000000..4b19c2cc --- /dev/null +++ b/cypress/fixtures/Github Backend Editorial Workflow - REST API - Open Authoring__can update an entry.json @@ -0,0 +1,2383 @@ +[ + { + "method": "GET", + "url": "/user", + "headers": { + "Date": "Tue, 10 Sep 2019 13:54:21 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4576", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"fb606f875be1d23b690ea5f5e26b9fe9\"", + "Last-Modified": "Wed, 28 Aug 2019 04:48:54 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A01:2B24:17CEA4A:1CF0F63:5D77AB0D", + "content-length": "1321", + "connection": "keep-alive" + }, + "response": "{\"login\":\"owner\",\"id\":1,\"avatar_url\":\"https://avatars1.githubusercontent.com/u/7892489?v=4\",\"name\":\"owner\"}", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/collaborators/owner/permission", + "headers": { + "Date": "Tue, 10 Sep 2019 13:54:22 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4575", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"254416b9fc40a4c5acc82d271a9b493b\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A03:15110:188725C:1DCCEE3:5D77AB0E", + "content-length": "1071", + "connection": "keep-alive" + }, + "response": "{\n \"permission\": \"admin\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/user?ts=0", + "headers": { + "Date": "Tue, 10 Sep 2019 13:54:23 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4574", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"fb606f875be1d23b690ea5f5e26b9fe9\"", + "Last-Modified": "Wed, 28 Aug 2019 04:48:54 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A04:3ED77:ABAA2B:D015FC:5D77AB0E", + "content-length": "1321", + "connection": "keep-alive" + }, + "response": "{\"login\":\"owner\",\"id\":1,\"avatar_url\":\"https://avatars1.githubusercontent.com/u/7892489?v=4\",\"name\":\"owner\"}", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo?ts=0", + "headers": { + "Date": "Tue, 10 Sep 2019 13:54:23 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4573", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"0cf2f29e0ac3b64f43142725600fe38d\"", + "Last-Modified": "Tue, 10 Sep 2019 13:53:22 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A08:244E1:51B0F7:62977C:5D77AB0F", + "content-length": "7296", + "connection": "keep-alive" + }, + "response": "{\n \"id\": 207573159,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NzMxNTk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-10T13:52:54Z\",\n \"updated_at\": \"2019-09-10T13:53:22Z\",\n \"pushed_at\": \"2019-09-10T13:54:13Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\",\n \"permissions\": {\n \"admin\": true,\n \"push\": true,\n \"pull\": true\n },\n \"allow_squash_merge\": true,\n \"allow_merge_commit\": true,\n \"allow_rebase_merge\": true,\n \"network_count\": 0,\n \"subscribers_count\": 1\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/content/posts?ts=0&ref=master", + "headers": { + "Date": "Tue, 10 Sep 2019 13:54:24 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4572", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"c5b7f6d674ba193bb7b4a5fcf4933034e1b7f2b7\"", + "Last-Modified": "Tue, 10 Sep 2019 13:53:22 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A0A:9D1C:69E4F:821C6:5D77AB0F", + "content-length": "7422", + "connection": "keep-alive" + }, + "response": "[\n {\n \"name\": \"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"path\": \"content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"sha\": \"6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"size\": 1707,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"html\": \"https://github.com/owner/repo/blob/master/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md\"\n }\n },\n {\n \"name\": \"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"path\": \"content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"sha\": \"d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"size\": 2565,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"html\": \"https://github.com/owner/repo/blob/master/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\"\n }\n },\n {\n \"name\": \"2016-02-02---A-Brief-History-of-Typography.md\",\n \"path\": \"content/posts/2016-02-02---A-Brief-History-of-Typography.md\",\n \"sha\": \"0eea554365f002d0f1572af9a58522d335a794d5\",\n \"size\": 2786,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2016-02-02---A-Brief-History-of-Typography.md?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/content/posts/2016-02-02---A-Brief-History-of-Typography.md\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/content/posts/2016-02-02---A-Brief-History-of-Typography.md\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2016-02-02---A-Brief-History-of-Typography.md?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\",\n \"html\": \"https://github.com/owner/repo/blob/master/content/posts/2016-02-02---A-Brief-History-of-Typography.md\"\n }\n },\n {\n \"name\": \"2017-18-08---The-Birth-of-Movable-Type.md\",\n \"path\": \"content/posts/2017-18-08---The-Birth-of-Movable-Type.md\",\n \"sha\": \"44f78c474d04273185a95821426f75affc9b0044\",\n \"size\": 16071,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2017-18-08---The-Birth-of-Movable-Type.md?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/content/posts/2017-18-08---The-Birth-of-Movable-Type.md\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/content/posts/2017-18-08---The-Birth-of-Movable-Type.md\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2017-18-08---The-Birth-of-Movable-Type.md?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\",\n \"html\": \"https://github.com/owner/repo/blob/master/content/posts/2017-18-08---The-Birth-of-Movable-Type.md\"\n }\n },\n {\n \"name\": \"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"path\": \"content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"sha\": \"a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"size\": 7465,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"html\": \"https://github.com/owner/repo/blob/master/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md\"\n }\n }\n]\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/static/media?ts=0&ref=master", + "headers": { + "Date": "Tue, 10 Sep 2019 13:54:24 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4571", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"c5b7f6d674ba193bb7b4a5fcf4933034e1b7f2b7\"", + "Last-Modified": "Tue, 10 Sep 2019 13:53:22 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A0D:9D20:1155DBE:1532D43:5D77AB0F", + "content-length": "12362", + "connection": "keep-alive" + }, + "response": "[\n {\n \"name\": \"42-line-bible.jpg\",\n \"path\": \"static/media/42-line-bible.jpg\",\n \"sha\": \"41c8d12f9ca5864beb827c381fbeff935209d5fb\",\n \"size\": 671242,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/static/media/42-line-bible.jpg?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/static/media/42-line-bible.jpg\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/41c8d12f9ca5864beb827c381fbeff935209d5fb\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/static/media/42-line-bible.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/static/media/42-line-bible.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/41c8d12f9ca5864beb827c381fbeff935209d5fb\",\n \"html\": \"https://github.com/owner/repo/blob/master/static/media/42-line-bible.jpg\"\n }\n },\n {\n \"name\": \"gutenberg.jpg\",\n \"path\": \"static/media/gutenberg.jpg\",\n \"sha\": \"04315e355873ea5d358d9c371c39a6845c1ae4ae\",\n \"size\": 155002,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/static/media/gutenberg.jpg?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/static/media/gutenberg.jpg\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/04315e355873ea5d358d9c371c39a6845c1ae4ae\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/static/media/gutenberg.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/static/media/gutenberg.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/04315e355873ea5d358d9c371c39a6845c1ae4ae\",\n \"html\": \"https://github.com/owner/repo/blob/master/static/media/gutenberg.jpg\"\n }\n },\n {\n \"name\": \"image-0.jpg\",\n \"path\": \"static/media/image-0.jpg\",\n \"sha\": \"b70a1b64fd4fa9635823231a0ba92c6dc9393f16\",\n \"size\": 660287,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/static/media/image-0.jpg?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/static/media/image-0.jpg\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/b70a1b64fd4fa9635823231a0ba92c6dc9393f16\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/static/media/image-0.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/static/media/image-0.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/b70a1b64fd4fa9635823231a0ba92c6dc9393f16\",\n \"html\": \"https://github.com/owner/repo/blob/master/static/media/image-0.jpg\"\n }\n },\n {\n \"name\": \"image-1.jpg\",\n \"path\": \"static/media/image-1.jpg\",\n \"sha\": \"05eedae372b829c62501ac751b2d42dcc432541b\",\n \"size\": 392411,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/static/media/image-1.jpg?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/static/media/image-1.jpg\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/05eedae372b829c62501ac751b2d42dcc432541b\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/static/media/image-1.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/static/media/image-1.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/05eedae372b829c62501ac751b2d42dcc432541b\",\n \"html\": \"https://github.com/owner/repo/blob/master/static/media/image-1.jpg\"\n }\n },\n {\n \"name\": \"image-2.jpg\",\n \"path\": \"static/media/image-2.jpg\",\n \"sha\": \"53845ed35faf8939bea242bb85eda7c324b1be0b\",\n \"size\": 99147,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/static/media/image-2.jpg?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/static/media/image-2.jpg\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/53845ed35faf8939bea242bb85eda7c324b1be0b\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/static/media/image-2.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/static/media/image-2.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/53845ed35faf8939bea242bb85eda7c324b1be0b\",\n \"html\": \"https://github.com/owner/repo/blob/master/static/media/image-2.jpg\"\n }\n },\n {\n \"name\": \"image-3.jpg\",\n \"path\": \"static/media/image-3.jpg\",\n \"sha\": \"8b2339d97069e826fae1f156212e40ae458454e3\",\n \"size\": 358022,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/static/media/image-3.jpg?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/static/media/image-3.jpg\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/8b2339d97069e826fae1f156212e40ae458454e3\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/static/media/image-3.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/static/media/image-3.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/8b2339d97069e826fae1f156212e40ae458454e3\",\n \"html\": \"https://github.com/owner/repo/blob/master/static/media/image-3.jpg\"\n }\n },\n {\n \"name\": \"image-4.jpg\",\n \"path\": \"static/media/image-4.jpg\",\n \"sha\": \"a8f6f21253a67a4284b5a953b2fe633d44152ecd\",\n \"size\": 114837,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/static/media/image-4.jpg?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/static/media/image-4.jpg\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/a8f6f21253a67a4284b5a953b2fe633d44152ecd\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/static/media/image-4.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/static/media/image-4.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/a8f6f21253a67a4284b5a953b2fe633d44152ecd\",\n \"html\": \"https://github.com/owner/repo/blob/master/static/media/image-4.jpg\"\n }\n },\n {\n \"name\": \"movable-type.jpg\",\n \"path\": \"static/media/movable-type.jpg\",\n \"sha\": \"57b4e925ea00bd8e195cf4418eb6eb2995ea5f10\",\n \"size\": 559028,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/static/media/movable-type.jpg?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/static/media/movable-type.jpg\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/57b4e925ea00bd8e195cf4418eb6eb2995ea5f10\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/static/media/movable-type.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/static/media/movable-type.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/57b4e925ea00bd8e195cf4418eb6eb2995ea5f10\",\n \"html\": \"https://github.com/owner/repo/blob/master/static/media/movable-type.jpg\"\n }\n },\n {\n \"name\": \"printing-press.jpg\",\n \"path\": \"static/media/printing-press.jpg\",\n \"sha\": \"d27f56c9437d9becd2f56cc627c9322c2f1f61f6\",\n \"size\": 279283,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/static/media/printing-press.jpg?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/static/media/printing-press.jpg\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/d27f56c9437d9becd2f56cc627c9322c2f1f61f6\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/static/media/printing-press.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/static/media/printing-press.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/d27f56c9437d9becd2f56cc627c9322c2f1f61f6\",\n \"html\": \"https://github.com/owner/repo/blob/master/static/media/printing-press.jpg\"\n }\n },\n {\n \"name\": \"type-through-time.jpg\",\n \"path\": \"static/media/type-through-time.jpg\",\n \"sha\": \"3f08366a805c51a60ec5056010f22de4ba08abaa\",\n \"size\": 117689,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/static/media/type-through-time.jpg?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/static/media/type-through-time.jpg\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/3f08366a805c51a60ec5056010f22de4ba08abaa\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/static/media/type-through-time.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/static/media/type-through-time.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/3f08366a805c51a60ec5056010f22de4ba08abaa\",\n \"html\": \"https://github.com/owner/repo/blob/master/static/media/type-through-time.jpg\"\n }\n }\n]\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5?ts=0", + "headers": { + "Date": "Tue, 10 Sep 2019 13:54:24 GMT", + "Content-Type": "text/plain; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4570", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"733ab4cffe213d8db3be254e7fee8f69\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A14:244E4:AF1F8F:D43561:5D77AB10", + "content-length": "2786", + "connection": "keep-alive" + }, + "response": "---\ntitle: \"A Brief History of Typography\"\ndate: \"2016-02-02T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Design Inspiration\"\ntags:\n - \"Linotype\"\n - \"Monotype\"\n - \"History of typography\"\n - \"Helvetica\"\ndescription: \"Morbi in sem quis dui placerat ornare. Pellentesque odio nisi, euismod in, pharetra a, ultricies in, diam. Sed arcu. Cras consequat.\"\ncanonical: ''\n---\n\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\n\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-0.jpg)\n\n## Header Level 2\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \n\n
\n\t
\n\t\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\n\t\t
\n\t\t\t— Aliquam tincidunt mauris eu risus.\n\t\t
\n\t
\n
\n\n### Header Level 3\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\n\n```css\n#header h1 a {\n display: block;\n width: 300px;\n height: 80px;\n}\n```\n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044?ts=0", + "headers": { + "Date": "Tue, 10 Sep 2019 13:54:24 GMT", + "Content-Type": "text/plain; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4569", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"6e2453f34250f47bb0adc4ff2f6887a8\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A1A:244E1:51B184:62982C:5D77AB10", + "content-length": "16071", + "connection": "keep-alive" + }, + "response": "---\ntitle: \"Johannes Gutenberg: The Birth of Movable Type\"\ndate: \"2017-08-18T22:12:03.284Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Typography\"\ntags:\n - \"Open source\"\n - \"Gatsby\"\n - \"Typography\"\ndescription: \"German inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\"\ncanonical: ''\n---\n\nGerman inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\n\n**Johannes Gensfleisch zur Laden zum Gutenberg** (c. 1398 – 1468) was a German blacksmith, goldsmith, printer, and publisher who introduced printing to Europe. His invention of mechanical movable type printing started the Printing Revolution and is widely regarded as the most important event of the modern period. It played a key role in the development of the Renaissance, Reformation, the Age of Enlightenment, and the Scientific revolution and laid the material basis for the modern knowledge-based economy and the spread of learning to the masses.\n\n
\n\t\"Gutenberg\"\n\t
Johannes Gutenberg
\n
\n\nWith his invention of the printing press, Gutenberg was the first European to use movable type printing, in around 1439. Among his many contributions to printing are: the invention of a process for mass-producing movable type; the use of oil-based ink; and the use of a wooden printing press similar to the agricultural screw presses of the period. His truly epochal invention was the combination of these elements into a practical system that allowed the mass production of printed books and was economically viable for printers and readers alike. Gutenberg's method for making type is traditionally considered to have included a type metal alloy and a hand mould for casting type. The alloy was a mixture of lead, tin, and antimony that melted at a relatively low temperature for faster and more economical casting, cast well, and created a durable type.\n\nIn Renaissance Europe, the arrival of mechanical movable type printing introduced the era of mass communication which permanently altered the structure of society. The relatively unrestricted circulation of information — including revolutionary ideas — transcended borders, captured the masses in the Reformation and threatened the power of political and religious authorities; the sharp increase in literacy broke the monopoly of the literate elite on education and learning and bolstered the emerging middle class. Across Europe, the increasing cultural self-awareness of its people led to the rise of proto-nationalism, accelerated by the flowering of the European vernacular languages to the detriment of Latin's status as lingua franca. In the 19th century, the replacement of the hand-operated Gutenberg-style press by steam-powered rotary presses allowed printing on an industrial scale, while Western-style printing was adopted all over the world, becoming practically the sole medium for modern bulk printing.\n\nThe use of movable type was a marked improvement on the handwritten manuscript, which was the existing method of book production in Europe, and upon woodblock printing, and revolutionized European book-making. Gutenberg's printing technology spread rapidly throughout Europe and later the world.\n\nHis major work, the Gutenberg Bible (also known as the 42-line Bible), has been acclaimed for its high aesthetic and technical quality.\n\n## Printing Press\n\nAround 1439, Gutenberg was involved in a financial misadventure making polished metal mirrors (which were believed to capture holy light from religious relics) for sale to pilgrims to Aachen: in 1439 the city was planning to exhibit its collection of relics from Emperor Charlemagne but the event was delayed by one year due to a severe flood and the capital already spent could not be repaid. When the question of satisfying the investors came up, Gutenberg is said to have promised to share a “secret”. It has been widely speculated that this secret may have been the idea of printing with movable type. Also around 1439–1440, the Dutch Laurens Janszoon Coster came up with the idea of printing. Legend has it that the idea came to him “like a ray of light”.\n\n
\n\t\"Early\n\t
Early wooden printing press as depicted in 1568.
\n
\n\nUntil at least 1444 he lived in Strasbourg, most likely in the St. Arbogast parish. It was in Strasbourg in 1440 that Gutenberg is said to have perfected and unveiled the secret of printing based on his research, mysteriously entitled Kunst und Aventur (art and enterprise). It is not clear what work he was engaged in, or whether some early trials with printing from movable type may have been conducted there. After this, there is a gap of four years in the record. In 1448, he was back in Mainz, where he took out a loan from his brother-in-law Arnold Gelthus, quite possibly for a printing press or related paraphernalia. By this date, Gutenberg may have been familiar with intaglio printing; it is claimed that he had worked on copper engravings with an artist known as the Master of Playing Cards.\n\nBy 1450, the press was in operation, and a German poem had been printed, possibly the first item to be printed there. Gutenberg was able to convince the wealthy moneylender Johann Fust for a loan of 800 guilders. Peter Schöffer, who became Fust’s son-in-law, also joined the enterprise. Schöffer had worked as a scribe in Paris and is believed to have designed some of the first typefaces.\n\n
\n\t
\n\t\t

All that has been written to me about that marvelous man seen at Frankfurt is true. I have not seen complete Bibles but only a number of quires of various books of the Bible. The script was very neat and legible, not at all difficult to follow—your grace would be able to read it without effort, and indeed without glasses.

\n\t\t
\n\t\t\t—Future pope Pius II in a letter to Cardinal Carvajal, March 1455\n\t\t
\n\t
\n
\n\nGutenberg's workshop was set up at Hof Humbrecht, a property belonging to a distant relative. It is not clear when Gutenberg conceived the Bible project, but for this he borrowed another 800 guilders from Fust, and work commenced in 1452. At the same time, the press was also printing other, more lucrative texts (possibly Latin grammars). There is also some speculation that there may have been two presses, one for the pedestrian texts, and one for the Bible. One of the profit-making enterprises of the new press was the printing of thousands of indulgences for the church, documented from 1454–55.\n\nIn 1455 Gutenberg completed his 42-line Bible, known as the Gutenberg Bible. About 180 copies were printed, most on paper and some on vellum.\n\n## Court Case\n\nSome time in 1456, there was a dispute between Gutenberg and Fust, and Fust demanded his money back, accusing Gutenberg of misusing the funds. Meanwhile the expenses of the Bible project had proliferated, and Gutenberg's debt now exceeded 20,000 guilders. Fust sued at the archbishop's court. A November 1455 legal document records that there was a partnership for a \"project of the books,\" the funds for which Gutenberg had used for other purposes, according to Fust. The court decided in favor of Fust, giving him control over the Bible printing workshop and half of all printed Bibles.\n\nThus Gutenberg was effectively bankrupt, but it appears he retained (or re-started) a small printing shop, and participated in the printing of a Bible in the town of Bamberg around 1459, for which he seems at least to have supplied the type. But since his printed books never carry his name or a date, it is difficult to be certain, and there is consequently a considerable scholarly debate on this subject. It is also possible that the large Catholicon dictionary, 300 copies of 754 pages, printed in Mainz in 1460, may have been executed in his workshop.\n\nMeanwhile, the Fust–Schöffer shop was the first in Europe to bring out a book with the printer's name and date, the Mainz Psalter of August 1457, and while proudly proclaiming the mechanical process by which it had been produced, it made no mention of Gutenberg.\n\n## Later Life\n\nIn 1462, during a conflict between two archbishops, Mainz was sacked by archbishop Adolph von Nassau, and Gutenberg was exiled. An old man by now, he moved to Eltville where he may have initiated and supervised a new printing press belonging to the brothers Bechtermünze.\n\nIn January 1465, Gutenberg's achievements were recognized and he was given the title Hofmann (gentleman of the court) by von Nassau. This honor included a stipend, an annual court outfit, as well as 2,180 litres of grain and 2,000 litres of wine tax-free. It is believed he may have moved back to Mainz around this time, but this is not certain.\n\n***\n\nGutenberg died in 1468 and was buried in the Franciscan church at Mainz, his contributions largely unknown. This church and the cemetery were later destroyed, and Gutenberg's grave is now lost.\n\nIn 1504, he was mentioned as the inventor of typography in a book by Professor Ivo Wittig. It was not until 1567 that the first portrait of Gutenberg, almost certainly an imaginary reconstruction, appeared in Heinrich Pantaleon's biography of famous Germans.\n\n## Printing Method With Movable Type\n\nGutenberg's early printing process, and what tests he may have made with movable type, are not known in great detail. His later Bibles were printed in such a way as to have required large quantities of type, some estimates suggesting as many as 100,000 individual sorts. Setting each page would take, perhaps, half a day, and considering all the work in loading the press, inking the type, pulling the impressions, hanging up the sheets, distributing the type, etc., it is thought that the Gutenberg–Fust shop might have employed as many as 25 craftsmen.\n\n![Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5](/media/movable-type.jpg)\n\n*Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5*\n\nGutenberg's technique of making movable type remains unclear. In the following decades, punches and copper matrices became standardized in the rapidly disseminating printing presses across Europe. Whether Gutenberg used this sophisticated technique or a somewhat primitive version has been the subject of considerable debate.\n\nIn the standard process of making type, a hard metal punch (made by punchcutting, with the letter carved back to front) is hammered into a softer copper bar, creating a matrix. This is then placed into a hand-held mould and a piece of type, or \"sort\", is cast by filling the mould with molten type-metal; this cools almost at once, and the resulting piece of type can be removed from the mould. The matrix can be reused to create hundreds, or thousands, of identical sorts so that the same character appearing anywhere within the book will appear very uniform, giving rise, over time, to the development of distinct styles of typefaces or fonts. After casting, the sorts are arranged into type-cases, and used to make up pages which are inked and printed, a procedure which can be repeated hundreds, or thousands, of times. The sorts can be reused in any combination, earning the process the name of “movable type”.\n\nThe invention of the making of types with punch, matrix and mold has been widely attributed to Gutenberg. However, recent evidence suggests that Gutenberg's process was somewhat different. If he used the punch and matrix approach, all his letters should have been nearly identical, with some variations due to miscasting and inking. However, the type used in Gutenberg's earliest work shows other variations.\n\n
\n\t
\n\t\t

It is a press, certainly, but a press from which shall flow in inexhaustible streams… Through it, god will spread his word.

\n\t\t
\n\t\t\t—Johannes Gutenberg\n\t\t
\n\t
\n
\n\nIn 2001, the physicist Blaise Agüera y Arcas and Princeton librarian Paul Needham, used digital scans of a Papal bull in the Scheide Library, Princeton, to carefully compare the same letters (types) appearing in different parts of the printed text. The irregularities in Gutenberg's type, particularly in simple characters such as the hyphen, suggested that the variations could not have come from either ink smear or from wear and damage on the pieces of metal on the types themselves. While some identical types are clearly used on other pages, other variations, subjected to detailed image analysis, suggested that they could not have been produced from the same matrix. Transmitted light pictures of the page also appeared to reveal substructures in the type that could not arise from traditional punchcutting techniques. They hypothesized that the method may have involved impressing simple shapes to create alphabets in “cuneiform” style in a matrix made of some soft material, perhaps sand. Casting the type would destroy the mould, and the matrix would need to be recreated to make each additional sort. This could explain the variations in the type, as well as the substructures observed in the printed images.\n\nThus, they feel that “the decisive factor for the birth of typography”, the use of reusable moulds for casting type, might have been a more progressive process than was previously thought. They suggest that the additional step of using the punch to create a mould that could be reused many times was not taken until twenty years later, in the 1470s. Others have not accepted some or all of their suggestions, and have interpreted the evidence in other ways, and the truth of the matter remains very uncertain.\n\nA 1568 history by Hadrianus Junius of Holland claims that the basic idea of the movable type came to Gutenberg from Laurens Janszoon Coster via Fust, who was apprenticed to Coster in the 1430s and may have brought some of his equipment from Haarlem to Mainz. While Coster appears to have experimented with moulds and castable metal type, there is no evidence that he had actually printed anything with this technology. He was an inventor and a goldsmith. However, there is one indirect supporter of the claim that Coster might be the inventor. The author of the Cologne Chronicle of 1499 quotes Ulrich Zell, the first printer of Cologne, that printing was performed in Mainz in 1450, but that some type of printing of lower quality had previously occurred in the Netherlands. However, the chronicle does not mention the name of Coster, while it actually credits Gutenberg as the \"first inventor of printing\" in the very same passage (fol. 312). The first securely dated book by Dutch printers is from 1471, and the Coster connection is today regarded as a mere legend.\n\nThe 19th century printer and typefounder Fournier Le Jeune suggested that Gutenberg might not have been using type cast with a reusable matrix, but possibly wooden types that were carved individually. A similar suggestion was made by Nash in 2004. This remains possible, albeit entirely unproven.\n\nIt has also been questioned whether Gutenberg used movable types at all. In 2004, Italian professor Bruno Fabbiani claimed that examination of the 42-line Bible revealed an overlapping of letters, suggesting that Gutenberg did not in fact use movable type (individual cast characters) but rather used whole plates made from a system somewhat like a modern typewriter, whereby the letters were stamped successively into the plate and then printed. However, most specialists regard the occasional overlapping of type as caused by paper movement over pieces of type of slightly unequal height.", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043?ts=0", + "headers": { + "Date": "Tue, 10 Sep 2019 13:54:24 GMT", + "Content-Type": "text/plain; charset=iso-8859-1", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4568", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"b11610ec1fe2f13ce388952c3fdf3423\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A0E:1510E:AC6D91:D21B4A:5D77AB10", + "content-length": "1707", + "connection": "keep-alive" + }, + "response": "---\ntitle: Perfecting the Art of Perfection\ndate: \"2016-09-01T23:46:37.121Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Design Inspiration\"\ntags:\n - \"Handwriting\"\n - \"Learning to write\"\ndescription: \"Quisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\"\ncanonical: ''\n---\n\nQuisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\n\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-2.jpg)\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. \n\nPraesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9?ts=0", + "headers": { + "Date": "Tue, 10 Sep 2019 13:54:24 GMT", + "Content-Type": "text/plain; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4567", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"f9b97e27090d24f9b7c773ede73acd0c\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A10:9D1F:A2EFD1:C6D5CB:5D77AB10", + "content-length": "2565", + "connection": "keep-alive" + }, + "response": "---\ntitle: The Origins of Social Stationery Lettering\ndate: \"2016-12-01T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Design Culture\"\ndescription: \"Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante.\"\ncanonical: ''\n---\n\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\n\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-3.jpg)\n\n## Header Level 2\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \n\n
\n\t
\n\t\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\n\t\t
\n\t\t\t— Aliquam tincidunt mauris eu risus.\n\t\t
\n\t
\n
\n\n### Header Level 3\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\n\n```css\n#header h1 a {\n display: block;\n width: 300px;\n height: 80px;\n}\n```\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774?ts=0", + "headers": { + "Date": "Tue, 10 Sep 2019 13:54:25 GMT", + "Content-Type": "text/plain; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4566", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"d2bb4e67afce9cad20457cc0c72b8a41\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A20:2B24:17CF047:1CF16B9:5D77AB10", + "content-length": "7465", + "connection": "keep-alive" + }, + "response": "---\ntitle: Humane Typography in the Digital Age\ndate: \"2017-08-19T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Typography\"\ntags:\n - \"Design\"\n - \"Typography\"\n - \"Web Development\"\ndescription: \"An Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\"\ncanonical: ''\n---\n\n- [The first transition](#the-first-transition)\n- [The digital age](#the-digital-age)\n- [Loss of humanity through transitions](#loss-of-humanity-through-transitions)\n- [Chasing perfection](#chasing-perfection)\n\nAn Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\n\nThe typography of this industrial age was no longer handcrafted. Mass production and profit became more important. Quantity mattered more than the quality. The books and printed works in general lost a part of its humanity. The typefaces were not produced by craftsmen anymore. It was the machines printing and tying the books together now. The craftsmen had to let go of their craft and became a cog in the process. An extension of the industrial machine.\n\nBut the victory of the industrialism didn’t mean that the craftsmen were completely extinct. The two worlds continued to coexist independently. Each recognising the good in the other — the power of industrialism and the humanity of craftsmanship. This was the second transition that would strip typography of a part of its humanity. We have to go 500 years back in time to meet the first one.\n\n## The first transition\n\nA similar conflict emerged after the invention of the first printing press in Europe. Johannes Gutenberg invented movable type and used it to produce different compositions. His workshop could print up to 240 impressions per hour. Until then, the books were being copied by hand. All the books were handwritten and decorated with hand drawn ornaments and figures. A process of copying a book was long but each book, even a copy, was a work of art.\n\nThe first printed books were, at first, perceived as inferior to the handwritten ones. They were smaller and cheaper to produce. Movable type provided the printers with flexibility that allowed them to print books in languages other than Latin. Gill describes the transition to industrialism as something that people needed and wanted. Something similar happened after the first printed books emerged. People wanted books in a language they understood and they wanted books they could take with them. They were hungry for knowledge and printed books satisfied this hunger.\n\n![42-line-bible.jpg](/media/42-line-bible.jpg)\n\n*The 42–Line Bible, printed by Gutenberg.*\n\nBut, through this transition, the book lost a large part of its humanity. The machine took over most of the process but craftsmanship was still a part of it. The typefaces were cut manually by the first punch cutters. The paper was made by hand. The illustrations and ornaments were still being hand drawn. These were the remains of the craftsmanship that went almost extinct in the times of Eric Gill.\n\n## The digital age\n\nThe first transition took away a large part of humanity from written communication. Industrialisation, the second transition described by Eric Gill, took away most of what was left. But it’s the third transition that stripped it naked. Typefaces are faceless these days. They’re just fonts on our computers. Hardly anyone knows their stories. Hardly anyone cares. Flicking through thousands of typefaces and finding the “right one” is a matter of minutes.\n\n> In the new computer age the proliferation of typefaces and type manipulations represents a new level of visual pollution threatening our culture. Out of thousands of typefaces, all we need are a few basic ones, and trash the rest.\n>\n— Massimo Vignelli\n\nTypography is not about typefaces. It’s not about what looks best, it’s about what feels right. What communicates the message best. Typography, in its essence, is about the message. “Typographical design should perform optically what the speaker creates through voice and gesture of his thoughts.”, as El Lissitzky, a famous Russian typographer, put it.\n\n## Loss of humanity through transitions\n\nEach transition took away a part of humanity from written language. Handwritten books being the most humane form and the digital typefaces being the least. Overuse of Helvetica is a good example. Messages are being told in a typeface just because it’s a safe option. It’s always there. Everyone knows it but yet, nobody knows it. Stop someone on the street and ask him what Helvetica is? Ask a designer the same question. Ask him where it came from, when, why and who designed it. Most of them will fail to answer these questions. Most of them used it in their precious projects but they still don’t spot it in the street.\n\n
\n\t
\n\t\t

Knowledge of the quality of a typeface is of the greatest importance for the functional, aesthetic and psychological effect.

\n\t\t
\n\t\t\t— Josef Mueller-Brockmann\n\t\t
\n\t
\n
\n\nTypefaces don’t look handmade these days. And that’s all right. They don’t have to. Industrialism took that away from them and we’re fine with it. We’ve traded that part of humanity for a process that produces more books that are easier to read. That can’t be bad. And it isn’t.\n\n> Humane typography will often be comparatively rough and even uncouth; but while a certain uncouthness does not seriously matter in humane works, uncouthness has no excuse whatever in the productions of the machine.\n>\n> — Eric Gill\n\nWe’ve come close to “perfection” in the last five centuries. The letters are crisp and without rough edges. We print our compositions with high–precision printers on a high quality, machine made paper.\n\n![type-through-time.jpg](/media/type-through-time.jpg)\n\n*Type through 5 centuries.*\n\nWe lost a part of ourselves because of this chase after perfection. We forgot about the craftsmanship along the way. And the worst part is that we don’t care. The transition to the digital age made that clear. We choose typefaces like clueless zombies. There’s no meaning in our work. Type sizes, leading, margins… It’s all just a few clicks or lines of code. The message isn’t important anymore. There’s no more “why” behind the “what”.\n\n## Chasing perfection\n\nHuman beings aren’t perfect. Perfection is something that will always elude us. There will always be a small part of humanity in everything we do. No matter how small that part, we should make sure that it transcends the limits of the medium. We have to think about the message first. What typeface should we use and why? Does the typeface match the message and what we want to communicate with it? What will be the leading and why? Will there be more typefaces in our design? On what ground will they be combined? What makes our design unique and why? This is the part of humanity that is left in typography. It might be the last part. Are we really going to give it up?\n\n*Originally published by [Matej Latin](http://matejlatin.co.uk/) on [Medium](https://medium.com/design-notes/humane-typography-in-the-digital-age-9bd5c16199bd?ref=webdesignernews.com#.lygo82z0x).*", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/1970-01-01-first-title.json?ts=300&ref=refs/meta/_netlify_cms", + "headers": { + "Date": "Tue, 10 Sep 2019 13:54:28 GMT", + "Content-Type": "application/vnd.github.VERSION.raw; charset=utf-8", + "Content-Length": "462", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4565", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"6433f34f6bca822582c063d602bf2bd4ccedf208\"", + "Last-Modified": "Tue, 10 Sep 2019 13:54:07 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7AB6:3ED7B:1268F39:165C97B:5D77AB14", + "connection": "keep-alive" + }, + "response": "{\"type\":\"PR\",\"pr\":{\"number\":1,\"head\":\"973d234526213ad01bd1e7e0cdf5c9ffc2f4e504\"},\"user\":\"owner\",\"status\":\"draft\",\"branch\":\"cms/1970-01-01-first-title\",\"collection\":\"posts\",\"commitMessage\":\"Create Post “1970-01-01-first-title”\",\"title\":\"first title\",\"description\":\"first description\",\"objects\":{\"entry\":{\"path\":\"content/posts/1970-01-01-first-title.md\",\"sha\":\"a041245814892e3f73f63ca54333fda649b7fc0b\"},\"files\":[]},\"timeStamp\":\"1970-01-01T00:00:00.300Z\"}", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=cms/1970-01-01-first-title", + "headers": { + "Date": "Tue, 10 Sep 2019 13:54:28 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "404 Not Found", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4564", + "X-RateLimit-Reset": "1568126651", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7ABA:2B15:4E369C:5EEC79:5D77AB14", + "content-length": "148", + "connection": "keep-alive" + }, + "response": "{\n \"message\": \"No commit found for the ref cms/1970-01-01-first-title\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/\"\n}\n", + "status": 404 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=master", + "headers": { + "Date": "Tue, 10 Sep 2019 13:54:28 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "404 Not Found", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4563", + "X-RateLimit-Reset": "1568126651", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7AB8:B4E0:16BCE13:1BACE07:5D77AB14", + "content-length": "116", + "connection": "keep-alive" + }, + "response": "{\n \"message\": \"Not Found\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/#get-contents\"\n}\n", + "status": 404 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=master", + "headers": { + "Date": "Tue, 10 Sep 2019 13:54:29 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "404 Not Found", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4562", + "X-RateLimit-Reset": "1568126651", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7ABE:2B1F:122B4CA:162C73C:5D77AB15", + "content-length": "116", + "connection": "keep-alive" + }, + "response": "{\n \"message\": \"Not Found\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/#get-contents\"\n}\n", + "status": 404 + }, + { + "body": "{\"content\":\"LS0tCnRlbXBsYXRlOiBwb3N0CnRpdGxlOiBmaXJzdCB0aXRsZQpkcmFmdDogdHJ1ZQpkYXRlOiAxOTcwLTAxLTAxVDAwOjAwOjAwLjAwMFoKZGVzY3JpcHRpb246IGZpcnN0IGRlc2NyaXB0aW9uCmNhdGVnb3J5OiBmaXJzdCBjYXRlZ29yeQp0YWdzOgogIC0gdGFnMQotLS0KZmlyc3QgYm9keQo=\",\"encoding\":\"base64\"}", + "method": "POST", + "url": "/repos/owner/repo/git/blobs?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:54:30 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "207", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4561", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"56a87df1038fbc514d2fc013aa391906\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7AC1:3ED7B:1269180:165CC67:5D77AB15", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"a041245814892e3f73f63ca54333fda649b7fc0b\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b\"\n}\n", + "status": 201 + }, + { + "method": "GET", + "url": "/repos/owner/repo/branches/master?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:54:31 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4560", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"f47adc6d20eeac555786fbffd72595af\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7AC4:2B19:A96FC4:CE3CF7:5D77AB16", + "content-length": "5961", + "connection": "keep-alive" + }, + "response": "{\n \"name\": \"master\",\n \"commit\": {\n \"sha\": \"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NTczMTU5OjcyNjE3MmRlYWU5OWM4YTJjZWE0YzcxZTczNGEwMmE3OTNkNGQ5ZTU=\",\n \"commit\": {\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-08T09:08:14Z\"\n },\n \"committer\": {\n \"name\": \"GitHub\",\n \"email\": \"noreply@github.com\",\n \"date\": \"2019-09-08T09:08:14Z\"\n },\n \"message\": \"Merge pull request #10 from owner/chore/update_dependencies\\n\\nChore: update dependencies\",\n \"tree\": {\n \"sha\": \"c5b7f6d674ba193bb7b4a5fcf4933034e1b7f2b7\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/c5b7f6d674ba193bb7b4a5fcf4933034e1b7f2b7\"\n },\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"comment_count\": 0,\n \"verification\": {\n \"verified\": true,\n \"reason\": \"valid\",\n \"signature\": \"-----BEGIN PGP SIGNATURE-----\\n\\nwsBcBAABCAAQBQJddMT+CRBK7hj4Ov3rIwAAdHIIABWcobVYZFMuqSPezceRaKDr\\npXGqxvB3WLiIrvsQiBz2si9SvufXxLUdq72iaYTbXMCqIAAIBDNwHLltOKcbUF9J\\nKa8pD6cq7jpNyZfhI8xlapMwEZPu53as0tSvwdOnl/0iL+WYjUZUFQR+vrWEmllu\\nhIES9QxU2nk5zcS7t8sFRA+sJdll8GzzhoWYkpw3wgqpxCzJdf5HJS0tWyVCZM5U\\nCgSpSgTvz9bALnQxu7YVrfLGEvi8S7LaOEz5HQc+TV1hNR2dfl5hhiHhWQ1Rsx5w\\nUECV01vItNWhx2dyMn77hIu/G+bTH89WZDU+CmifsNkmvkq90fk4eNt8Hg1mxn4=\\n=6ayM\\n-----END PGP SIGNATURE-----\\n\",\n \"payload\": \"tree c5b7f6d674ba193bb7b4a5fcf4933034e1b7f2b7\\nparent 8ade583d7c02e7769dd685ca64c10851c09f51cf\\nparent 4940957ff42b034d8c47d64b383c34548a34fbb5\\nauthor owner 1567933694 +0300\\ncommitter GitHub 1567933694 +0300\\n\\nMerge pull request #10 from owner/chore/update_dependencies\\n\\nChore: update dependencies\"\n }\n },\n \"url\": \"https://api.github.com/repos/owner/repo/commits/726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"html_url\": \"https://github.com/owner/repo/commit/726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/commits/726172deae99c8a2cea4c71e734a02a793d4d9e5/comments\",\n \"author\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"committer\": {\n \"login\": \"web-flow\",\n \"id\": 19864447,\n \"node_id\": \"MDQ6VXNlcjE5ODY0NDQ3\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/web-flow\",\n \"html_url\": \"https://github.com/web-flow\",\n \"followers_url\": \"https://api.github.com/users/web-flow/followers\",\n \"following_url\": \"https://api.github.com/users/web-flow/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/web-flow/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/web-flow/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/web-flow/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/web-flow/orgs\",\n \"repos_url\": \"https://api.github.com/users/web-flow/repos\",\n \"events_url\": \"https://api.github.com/users/web-flow/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/web-flow/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"parents\": [\n {\n \"sha\": \"8ade583d7c02e7769dd685ca64c10851c09f51cf\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/8ade583d7c02e7769dd685ca64c10851c09f51cf\",\n \"html_url\": \"https://github.com/owner/repo/commit/8ade583d7c02e7769dd685ca64c10851c09f51cf\"\n },\n {\n \"sha\": \"4940957ff42b034d8c47d64b383c34548a34fbb5\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/4940957ff42b034d8c47d64b383c34548a34fbb5\",\n \"html_url\": \"https://github.com/owner/repo/commit/4940957ff42b034d8c47d64b383c34548a34fbb5\"\n }\n ]\n },\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/branches/master\",\n \"html\": \"https://github.com/owner/repo/tree/master\"\n },\n \"protected\": false,\n \"protection\": {\n \"enabled\": false,\n \"required_status_checks\": {\n \"enforcement_level\": \"off\",\n \"contexts\": [\n\n ]\n }\n },\n \"protection_url\": \"https://api.github.com/repos/owner/repo/branches/master/protection\"\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/trees/726172deae99c8a2cea4c71e734a02a793d4d9e5?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:54:31 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4559", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"d77b8ce9e58b2411117ccbf09ab34ed8\"", + "Last-Modified": "Tue, 10 Sep 2019 13:53:22 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7AC7:3ED7B:12693C3:165CF22:5D77AB17", + "content-length": "11769", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"tree\": [\n {\n \"path\": \".circleci\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"e5e9af3301cac61f120b8e4d40b1733c7a45685a\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/e5e9af3301cac61f120b8e4d40b1733c7a45685a\"\n },\n {\n \"path\": \".eslintignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"80b4531b026d19f8fa589efd122e76199d23f967\",\n \"size\": 39,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/80b4531b026d19f8fa589efd122e76199d23f967\"\n },\n {\n \"path\": \".eslintrc.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"370684994aaed5b858da3a006f48cfa57e88fd27\",\n \"size\": 414,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/370684994aaed5b858da3a006f48cfa57e88fd27\"\n },\n {\n \"path\": \".flowconfig\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14aa2ac4cc0e15223ad98630a6f1325fc81f8043\",\n \"size\": 283,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14aa2ac4cc0e15223ad98630a6f1325fc81f8043\"\n },\n {\n \"path\": \".gitattributes\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"10a369ddf4f603337cabc6f21646508323941ce1\",\n \"size\": 135,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/10a369ddf4f603337cabc6f21646508323941ce1\"\n },\n {\n \"path\": \".github\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4ebeece548b52b20af59622354530a6d33b50b43\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4ebeece548b52b20af59622354530a6d33b50b43\"\n },\n {\n \"path\": \".gitignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"c071ba35b0e49899bab6d610a68eef667dbbf157\",\n \"size\": 169,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/c071ba35b0e49899bab6d610a68eef667dbbf157\"\n },\n {\n \"path\": \".prettierignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"393f050e123d998cf8c8b362ff95cc8ac4d250e5\",\n \"size\": 45,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/393f050e123d998cf8c8b362ff95cc8ac4d250e5\"\n },\n {\n \"path\": \".prettierrc\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e52ad05bb13b084d7949dd76e1b2517455162150\",\n \"size\": 223,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/e52ad05bb13b084d7949dd76e1b2517455162150\"\n },\n {\n \"path\": \".stylelintrc.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"4b4c9698d10d756f5faa025659b86375428ed0a7\",\n \"size\": 718,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/4b4c9698d10d756f5faa025659b86375428ed0a7\"\n },\n {\n \"path\": \".vscode\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"286e97ec0113ea8242b41ac222e2c3e8077e6f1e\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/286e97ec0113ea8242b41ac222e2c3e8077e6f1e\"\n },\n {\n \"path\": \"CHANGELOG.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"070a5d4f0eacd2dc0be81ae8996f8982de43046e\",\n \"size\": 2113,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/070a5d4f0eacd2dc0be81ae8996f8982de43046e\"\n },\n {\n \"path\": \"CODE_OF_CONDUCT.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"92bc7565ff0ee145a0041b5179a820f14f39ab22\",\n \"size\": 3355,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/92bc7565ff0ee145a0041b5179a820f14f39ab22\"\n },\n {\n \"path\": \"CONTRIBUTING.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"8552aa241254a61258e1ff9666ab36f32fb1e3b9\",\n \"size\": 3548,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/8552aa241254a61258e1ff9666ab36f32fb1e3b9\"\n },\n {\n \"path\": \"LICENSE\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"42d85938357b49977c126ca03b199129082d4fb8\",\n \"size\": 1091,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/42d85938357b49977c126ca03b199129082d4fb8\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"19df50a78654c8d757ca7f38447aa3d09c7abcce\",\n \"size\": 3698,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/19df50a78654c8d757ca7f38447aa3d09c7abcce\"\n },\n {\n \"path\": \"backend\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\"\n },\n {\n \"path\": \"config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"58afd573bbb69fcca000efd0f5d90b93c93a98dd\",\n \"size\": 853,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/58afd573bbb69fcca000efd0f5d90b93c93a98dd\"\n },\n {\n \"path\": \"content\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/0294ef106c58743907a5c855da1eb0f87b0b6dfc\"\n },\n {\n \"path\": \"flow-typed\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"86c32fd6c3118be5e0dbbb231a834447357236c6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/86c32fd6c3118be5e0dbbb231a834447357236c6\"\n },\n {\n \"path\": \"flow\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"0af45ad00d155c8d8c7407d913ff85278244c9ce\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/0af45ad00d155c8d8c7407d913ff85278244c9ce\"\n },\n {\n \"path\": \"gatsby-browser.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9bd2c9dce175f04980e91cd9dc295a299e3cdb80\",\n \"size\": 90,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9bd2c9dce175f04980e91cd9dc295a299e3cdb80\"\n },\n {\n \"path\": \"gatsby-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"353a109dad62e3f25bf9f5e6a2167f21a6c8b459\",\n \"size\": 7228,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/353a109dad62e3f25bf9f5e6a2167f21a6c8b459\"\n },\n {\n \"path\": \"gatsby-node.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14a207883c2093d2cc071bc5a464e165bcc1fead\",\n \"size\": 409,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14a207883c2093d2cc071bc5a464e165bcc1fead\"\n },\n {\n \"path\": \"gatsby\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4f23c06cd1740bf78304d2c0b29bf6bfdf427981\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4f23c06cd1740bf78304d2c0b29bf6bfdf427981\"\n },\n {\n \"path\": \"jest\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\"\n },\n {\n \"path\": \"netlify.toml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"599b99cc5700404fde316a7ede829776f23e7d45\",\n \"size\": 137,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/599b99cc5700404fde316a7ede829776f23e7d45\"\n },\n {\n \"path\": \"package.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9d777616438b90a18f1a4ebfd5f114b4c06c6f17\",\n \"size\": 6855,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9d777616438b90a18f1a4ebfd5f114b4c06c6f17\"\n },\n {\n \"path\": \"postcss-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d216501e9b351a72e00ba0b7459a6500e27e7da2\",\n \"size\": 703,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d216501e9b351a72e00ba0b7459a6500e27e7da2\"\n },\n {\n \"path\": \"renovate.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"dcc309398785698b8870545c32051a3d72dd8271\",\n \"size\": 460,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/dcc309398785698b8870545c32051a3d72dd8271\"\n },\n {\n \"path\": \"serverless-scripts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ee3701f2fbfc7196ba340f6481d1387d20527898\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ee3701f2fbfc7196ba340f6481d1387d20527898\"\n },\n {\n \"path\": \"serverless-single-page-app-plugin\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"08763fcfba643a06a452398517019bea4a5850ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/08763fcfba643a06a452398517019bea4a5850ba\"\n },\n {\n \"path\": \"serverless.yml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"20b22c5fad229f35d029bf6614d333d82fe8a987\",\n \"size\": 7803,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/20b22c5fad229f35d029bf6614d333d82fe8a987\"\n },\n {\n \"path\": \"src\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"8cdb35a88232c0f32f12f130c92c7cc55f97f471\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/8cdb35a88232c0f32f12f130c92c7cc55f97f471\"\n },\n {\n \"path\": \"static\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"53c6380a600a030d3722bff7ecde36f749fb6964\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/53c6380a600a030d3722bff7ecde36f749fb6964\"\n },\n {\n \"path\": \"utils\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"a592549c9f74db40b51efefcda2fd76810405f27\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/a592549c9f74db40b51efefcda2fd76810405f27\"\n },\n {\n \"path\": \"yarn.lock\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"475c9c1924ca752a0686303e2fdeb7b13ad75f57\",\n \"size\": 793903,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/475c9c1924ca752a0686303e2fdeb7b13ad75f57\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/trees/0294ef106c58743907a5c855da1eb0f87b0b6dfc?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:54:32 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4558", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"0abcbf354911bd78b253b880b84d8da0\"", + "Last-Modified": "Tue, 10 Sep 2019 13:53:22 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7AC8:B4DC:ABE316:D11741:5D77AB17", + "content-length": "831", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\n \"tree\": [\n {\n \"path\": \"pages\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\"\n },\n {\n \"path\": \"posts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"34892575e216c06e757093f036bd8e057c78a52f\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/34892575e216c06e757093f036bd8e057c78a52f\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/trees/34892575e216c06e757093f036bd8e057c78a52f?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:54:32 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4557", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"29693f84571fe2df8dc664b09d0872b0\"", + "Last-Modified": "Tue, 10 Sep 2019 13:53:22 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7ACB:244EB:1811023:1D3B757:5D77AB18", + "content-length": "2030", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"34892575e216c06e757093f036bd8e057c78a52f\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/34892575e216c06e757093f036bd8e057c78a52f\",\n \"tree\": [\n {\n \"path\": \"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"size\": 1707,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\"\n },\n {\n \"path\": \"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"size\": 2565,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\"\n },\n {\n \"path\": \"2016-02-02---A-Brief-History-of-Typography.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"0eea554365f002d0f1572af9a58522d335a794d5\",\n \"size\": 2786,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\"\n },\n {\n \"path\": \"2017-18-08---The-Birth-of-Movable-Type.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"44f78c474d04273185a95821426f75affc9b0044\",\n \"size\": 16071,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\"\n },\n {\n \"path\": \"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"size\": 7465,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 200 + }, + { + "body": "{\"base_tree\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"tree\":[{\"path\":\"1970-01-01-first-title.md\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"a041245814892e3f73f63ca54333fda649b7fc0b\"}]}", + "method": "POST", + "url": "/repos/owner/repo/git/trees?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:54:33 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "2362", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4556", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"ebc1ab128eebad51810afca6f07ccff1\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7ACC:B4DE:11F7954:15DF4FA:5D77AB19", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a041245814892e3f73f63ca54333fda649b7fc0b\",\n \"size\": 167,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b\"\n },\n {\n \"path\": \"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"size\": 1707,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\"\n },\n {\n \"path\": \"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"size\": 2565,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\"\n },\n {\n \"path\": \"2016-02-02---A-Brief-History-of-Typography.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"0eea554365f002d0f1572af9a58522d335a794d5\",\n \"size\": 2786,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\"\n },\n {\n \"path\": \"2017-18-08---The-Birth-of-Movable-Type.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"44f78c474d04273185a95821426f75affc9b0044\",\n \"size\": 16071,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\"\n },\n {\n \"path\": \"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"size\": 7465,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"base_tree\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\"tree\":[{\"path\":\"posts\",\"mode\":\"040000\",\"type\":\"tree\",\"sha\":\"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\"parentSha\":\"34892575e216c06e757093f036bd8e057c78a52f\"}]}", + "method": "POST", + "url": "/repos/owner/repo/git/trees?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:54:34 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "831", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4555", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"cf11b691192f3fcf082e39fe0a214ad1\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7ACE:244EB:1811232:1D3B9F8:5D77AB19", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"tree\": [\n {\n \"path\": \"pages\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\"\n },\n {\n \"path\": \"posts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"base_tree\":\"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\"tree\":[{\"path\":\"content\",\"mode\":\"040000\",\"type\":\"tree\",\"sha\":\"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\"parentSha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\"}]}", + "method": "POST", + "url": "/repos/owner/repo/git/trees?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:54:35 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "11769", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4554", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"259bcf85cfa917532f552d4919781c7b\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/trees/daee8d5d15d144e8779955166a2afeccde2770e1", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7AD0:9D21:1741F83:1C55D82:5D77AB1A", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"daee8d5d15d144e8779955166a2afeccde2770e1\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/daee8d5d15d144e8779955166a2afeccde2770e1\",\n \"tree\": [\n {\n \"path\": \".circleci\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"e5e9af3301cac61f120b8e4d40b1733c7a45685a\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/e5e9af3301cac61f120b8e4d40b1733c7a45685a\"\n },\n {\n \"path\": \".eslintignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"80b4531b026d19f8fa589efd122e76199d23f967\",\n \"size\": 39,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/80b4531b026d19f8fa589efd122e76199d23f967\"\n },\n {\n \"path\": \".eslintrc.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"370684994aaed5b858da3a006f48cfa57e88fd27\",\n \"size\": 414,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/370684994aaed5b858da3a006f48cfa57e88fd27\"\n },\n {\n \"path\": \".flowconfig\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14aa2ac4cc0e15223ad98630a6f1325fc81f8043\",\n \"size\": 283,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14aa2ac4cc0e15223ad98630a6f1325fc81f8043\"\n },\n {\n \"path\": \".gitattributes\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"10a369ddf4f603337cabc6f21646508323941ce1\",\n \"size\": 135,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/10a369ddf4f603337cabc6f21646508323941ce1\"\n },\n {\n \"path\": \".github\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4ebeece548b52b20af59622354530a6d33b50b43\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4ebeece548b52b20af59622354530a6d33b50b43\"\n },\n {\n \"path\": \".gitignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"c071ba35b0e49899bab6d610a68eef667dbbf157\",\n \"size\": 169,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/c071ba35b0e49899bab6d610a68eef667dbbf157\"\n },\n {\n \"path\": \".prettierignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"393f050e123d998cf8c8b362ff95cc8ac4d250e5\",\n \"size\": 45,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/393f050e123d998cf8c8b362ff95cc8ac4d250e5\"\n },\n {\n \"path\": \".prettierrc\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e52ad05bb13b084d7949dd76e1b2517455162150\",\n \"size\": 223,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/e52ad05bb13b084d7949dd76e1b2517455162150\"\n },\n {\n \"path\": \".stylelintrc.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"4b4c9698d10d756f5faa025659b86375428ed0a7\",\n \"size\": 718,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/4b4c9698d10d756f5faa025659b86375428ed0a7\"\n },\n {\n \"path\": \".vscode\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"286e97ec0113ea8242b41ac222e2c3e8077e6f1e\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/286e97ec0113ea8242b41ac222e2c3e8077e6f1e\"\n },\n {\n \"path\": \"CHANGELOG.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"070a5d4f0eacd2dc0be81ae8996f8982de43046e\",\n \"size\": 2113,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/070a5d4f0eacd2dc0be81ae8996f8982de43046e\"\n },\n {\n \"path\": \"CODE_OF_CONDUCT.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"92bc7565ff0ee145a0041b5179a820f14f39ab22\",\n \"size\": 3355,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/92bc7565ff0ee145a0041b5179a820f14f39ab22\"\n },\n {\n \"path\": \"CONTRIBUTING.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"8552aa241254a61258e1ff9666ab36f32fb1e3b9\",\n \"size\": 3548,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/8552aa241254a61258e1ff9666ab36f32fb1e3b9\"\n },\n {\n \"path\": \"LICENSE\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"42d85938357b49977c126ca03b199129082d4fb8\",\n \"size\": 1091,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/42d85938357b49977c126ca03b199129082d4fb8\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"19df50a78654c8d757ca7f38447aa3d09c7abcce\",\n \"size\": 3698,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/19df50a78654c8d757ca7f38447aa3d09c7abcce\"\n },\n {\n \"path\": \"backend\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\"\n },\n {\n \"path\": \"config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"58afd573bbb69fcca000efd0f5d90b93c93a98dd\",\n \"size\": 853,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/58afd573bbb69fcca000efd0f5d90b93c93a98dd\"\n },\n {\n \"path\": \"content\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639\"\n },\n {\n \"path\": \"flow-typed\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"86c32fd6c3118be5e0dbbb231a834447357236c6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/86c32fd6c3118be5e0dbbb231a834447357236c6\"\n },\n {\n \"path\": \"flow\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"0af45ad00d155c8d8c7407d913ff85278244c9ce\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/0af45ad00d155c8d8c7407d913ff85278244c9ce\"\n },\n {\n \"path\": \"gatsby-browser.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9bd2c9dce175f04980e91cd9dc295a299e3cdb80\",\n \"size\": 90,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9bd2c9dce175f04980e91cd9dc295a299e3cdb80\"\n },\n {\n \"path\": \"gatsby-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"353a109dad62e3f25bf9f5e6a2167f21a6c8b459\",\n \"size\": 7228,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/353a109dad62e3f25bf9f5e6a2167f21a6c8b459\"\n },\n {\n \"path\": \"gatsby-node.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14a207883c2093d2cc071bc5a464e165bcc1fead\",\n \"size\": 409,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14a207883c2093d2cc071bc5a464e165bcc1fead\"\n },\n {\n \"path\": \"gatsby\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4f23c06cd1740bf78304d2c0b29bf6bfdf427981\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4f23c06cd1740bf78304d2c0b29bf6bfdf427981\"\n },\n {\n \"path\": \"jest\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\"\n },\n {\n \"path\": \"netlify.toml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"599b99cc5700404fde316a7ede829776f23e7d45\",\n \"size\": 137,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/599b99cc5700404fde316a7ede829776f23e7d45\"\n },\n {\n \"path\": \"package.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9d777616438b90a18f1a4ebfd5f114b4c06c6f17\",\n \"size\": 6855,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9d777616438b90a18f1a4ebfd5f114b4c06c6f17\"\n },\n {\n \"path\": \"postcss-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d216501e9b351a72e00ba0b7459a6500e27e7da2\",\n \"size\": 703,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d216501e9b351a72e00ba0b7459a6500e27e7da2\"\n },\n {\n \"path\": \"renovate.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"dcc309398785698b8870545c32051a3d72dd8271\",\n \"size\": 460,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/dcc309398785698b8870545c32051a3d72dd8271\"\n },\n {\n \"path\": \"serverless-scripts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ee3701f2fbfc7196ba340f6481d1387d20527898\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ee3701f2fbfc7196ba340f6481d1387d20527898\"\n },\n {\n \"path\": \"serverless-single-page-app-plugin\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"08763fcfba643a06a452398517019bea4a5850ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/08763fcfba643a06a452398517019bea4a5850ba\"\n },\n {\n \"path\": \"serverless.yml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"20b22c5fad229f35d029bf6614d333d82fe8a987\",\n \"size\": 7803,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/20b22c5fad229f35d029bf6614d333d82fe8a987\"\n },\n {\n \"path\": \"src\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"8cdb35a88232c0f32f12f130c92c7cc55f97f471\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/8cdb35a88232c0f32f12f130c92c7cc55f97f471\"\n },\n {\n \"path\": \"static\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"53c6380a600a030d3722bff7ecde36f749fb6964\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/53c6380a600a030d3722bff7ecde36f749fb6964\"\n },\n {\n \"path\": \"utils\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"a592549c9f74db40b51efefcda2fd76810405f27\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/a592549c9f74db40b51efefcda2fd76810405f27\"\n },\n {\n \"path\": \"yarn.lock\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"475c9c1924ca752a0686303e2fdeb7b13ad75f57\",\n \"size\": 793903,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/475c9c1924ca752a0686303e2fdeb7b13ad75f57\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"message\":\"Create Post “1970-01-01-first-title”\",\"tree\":\"daee8d5d15d144e8779955166a2afeccde2770e1\",\"parents\":[\"726172deae99c8a2cea4c71e734a02a793d4d9e5\"]}", + "method": "POST", + "url": "/repos/owner/repo/git/commits?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:54:35 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "1504", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4553", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"efe788153db28407658264a2dff81e53\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/commits/2851d76ee62b2e875e3eae94a6329f112c7e1be9", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7AD2:244EB:181146F:1D3BCCE:5D77AB1B", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"2851d76ee62b2e875e3eae94a6329f112c7e1be9\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NTczMTU5OjI4NTFkNzZlZTYyYjJlODc1ZTNlYWU5NGE2MzI5ZjExMmM3ZTFiZTk=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/2851d76ee62b2e875e3eae94a6329f112c7e1be9\",\n \"html_url\": \"https://github.com/owner/repo/commit/2851d76ee62b2e875e3eae94a6329f112c7e1be9\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T13:54:35Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T13:54:35Z\"\n },\n \"tree\": {\n \"sha\": \"daee8d5d15d144e8779955166a2afeccde2770e1\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/daee8d5d15d144e8779955166a2afeccde2770e1\"\n },\n \"message\": \"Create Post “1970-01-01-first-title”\",\n \"parents\": [\n {\n \"sha\": \"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"html_url\": \"https://github.com/owner/repo/commit/726172deae99c8a2cea4c71e734a02a793d4d9e5\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "status": 201 + }, + { + "body": "{\"ref\":\"refs/heads/cms/1970-01-01-first-title\",\"sha\":\"2851d76ee62b2e875e3eae94a6329f112c7e1be9\"}", + "method": "POST", + "url": "/repos/owner/repo/git/refs?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:54:37 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "518", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4552", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"92a581e1fb7e7ab02c949b75a372ebfb\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "Location": "https://api.github.com/repos/owner/repo/git/refs/heads/cms/1970-01-01-first-title", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7AD4:9D1F:A2F97C:C6E16C:5D77AB1C", + "connection": "keep-alive" + }, + "response": "{\n \"ref\": \"refs/heads/cms/1970-01-01-first-title\",\n \"node_id\": \"MDM6UmVmMjA3NTczMTU5OmNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxl\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/heads/cms/1970-01-01-first-title\",\n \"object\": {\n \"sha\": \"2851d76ee62b2e875e3eae94a6329f112c7e1be9\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/2851d76ee62b2e875e3eae94a6329f112c7e1be9\"\n }\n}\n", + "status": 201 + }, + { + "body": "{\"title\":\"Create Post “1970-01-01-first-title”\",\"body\":\"Automatically generated by Netlify CMS\",\"head\":\"cms/1970-01-01-first-title\",\"base\":\"master\"}", + "method": "POST", + "url": "/repos/owner/repo/pulls?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:54:38 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "21715", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4551", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"d9d6ec7f96db49c0b176cfb422f87eae\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/pulls/2", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7AD6:244E7:11A95DE:158D9FB:5D77AB1D", + "connection": "keep-alive" + }, + "response": "{\n \"url\": \"https://api.github.com/repos/owner/repo/pulls/2\",\n \"id\": 316007203,\n \"node_id\": \"MDExOlB1bGxSZXF1ZXN0MzE2MDA3MjAz\",\n \"html_url\": \"https://github.com/owner/repo/pull/2\",\n \"diff_url\": \"https://github.com/owner/repo/pull/2.diff\",\n \"patch_url\": \"https://github.com/owner/repo/pull/2.patch\",\n \"issue_url\": \"https://api.github.com/repos/owner/repo/issues/2\",\n \"number\": 2,\n \"state\": \"open\",\n \"locked\": false,\n \"title\": \"Create Post “1970-01-01-first-title”\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Automatically generated by Netlify CMS\",\n \"created_at\": \"2019-09-10T13:54:38Z\",\n \"updated_at\": \"2019-09-10T13:54:38Z\",\n \"closed_at\": null,\n \"merged_at\": null,\n \"merge_commit_sha\": null,\n \"assignee\": null,\n \"assignees\": [\n\n ],\n \"requested_reviewers\": [\n\n ],\n \"requested_teams\": [\n\n ],\n \"labels\": [\n\n ],\n \"milestone\": null,\n \"commits_url\": \"https://api.github.com/repos/owner/repo/pulls/2/commits\",\n \"review_comments_url\": \"https://api.github.com/repos/owner/repo/pulls/2/comments\",\n \"review_comment_url\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/issues/2/comments\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/2851d76ee62b2e875e3eae94a6329f112c7e1be9\",\n \"head\": {\n \"label\": \"owner:cms/1970-01-01-first-title\",\n \"ref\": \"cms/1970-01-01-first-title\",\n \"sha\": \"2851d76ee62b2e875e3eae94a6329f112c7e1be9\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 207573159,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NzMxNTk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-10T13:52:54Z\",\n \"updated_at\": \"2019-09-10T13:53:22Z\",\n \"pushed_at\": \"2019-09-10T13:54:37Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 1,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 1,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"base\": {\n \"label\": \"owner:master\",\n \"ref\": \"master\",\n \"sha\": \"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 207573159,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NzMxNTk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-10T13:52:54Z\",\n \"updated_at\": \"2019-09-10T13:53:22Z\",\n \"pushed_at\": \"2019-09-10T13:54:37Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 1,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 1,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/2\"\n },\n \"html\": {\n \"href\": \"https://github.com/owner/repo/pull/2\"\n },\n \"issue\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/2\"\n },\n \"comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/2/comments\"\n },\n \"review_comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/2/comments\"\n },\n \"review_comment\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\"\n },\n \"commits\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/2/commits\"\n },\n \"statuses\": {\n \"href\": \"https://api.github.com/repos/owner/repo/statuses/2851d76ee62b2e875e3eae94a6329f112c7e1be9\"\n }\n },\n \"author_association\": \"OWNER\",\n \"merged\": false,\n \"mergeable\": null,\n \"rebaseable\": null,\n \"mergeable_state\": \"unknown\",\n \"merged_by\": null,\n \"comments\": 0,\n \"review_comments\": 0,\n \"maintainer_can_modify\": false,\n \"commits\": 1,\n \"additions\": 11,\n \"deletions\": 0,\n \"changed_files\": 1\n}\n", + "status": 201 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:54:39 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4550", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"08f8cdce9195e7c9e5efb2cf67242b3b\"", + "Last-Modified": "Tue, 10 Sep 2019 13:53:22 GMT", + "X-Poll-Interval": "300", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7AD8:B4DE:11F8074:15DFDB7:5D77AB1E", + "content-length": "484", + "connection": "keep-alive" + }, + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NTczMTU5OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"3ed46cf7b738d1a26f9eef8bf45e11dd4ad968be\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/3ed46cf7b738d1a26f9eef8bf45e11dd4ad968be\"\n }\n}\n", + "status": 200 + }, + { + "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjIsImhlYWQiOiIyODUxZDc2ZWU2MmIyZTg3NWUzZWFlOTRhNjMyOWYxMTJjN2UxYmU5In0sInVzZXIiOiJvd25lciIsInN0YXR1cyI6ImRyYWZ0IiwiYnJhbmNoIjoiY21zLzE5NzAtMDEtMDEtZmlyc3QtdGl0bGUiLCJjb2xsZWN0aW9uIjoicG9zdHMiLCJjb21taXRNZXNzYWdlIjoiQ3JlYXRlIFBvc3Qg4oCcMTk3MC0wMS0wMS1maXJzdC10aXRsZeKAnSIsInRpdGxlIjoiZmlyc3QgdGl0bGUiLCJkZXNjcmlwdGlvbiI6ImZpcnN0IGRlc2NyaXB0aW9uIiwib2JqZWN0cyI6eyJlbnRyeSI6eyJwYXRoIjoiY29udGVudC9wb3N0cy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxlLm1kIiwic2hhIjoiYTA0MTI0NTgxNDg5MmUzZjczZjYzY2E1NDMzM2ZkYTY0OWI3ZmMwYiJ9LCJmaWxlcyI6W119LCJ0aW1lU3RhbXAiOiIxOTcwLTAxLTAxVDAwOjAwOjAwLjMwMFoifQ==\",\"encoding\":\"base64\"}", + "method": "POST", + "url": "/repos/owner/repo/git/blobs?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:54:39 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "207", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4549", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"cae4414596e3938b954f8df0b2d71546\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/blobs/00e2c6d485b053ca962b09355ca38354e4783f7b", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7ADA:244E7:11A9803:158DCA2:5D77AB1F", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"00e2c6d485b053ca962b09355ca38354e4783f7b\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/00e2c6d485b053ca962b09355ca38354e4783f7b\"\n}\n", + "status": 201 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/trees/3ed46cf7b738d1a26f9eef8bf45e11dd4ad968be?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:54:40 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4548", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"f702c7899262ec9e4d6681c04d343ba9\"", + "Last-Modified": "Tue, 10 Sep 2019 13:53:22 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7ADC:15110:1888FB5:1DCF31D:5D77AB20", + "content-length": "895", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"3ed46cf7b738d1a26f9eef8bf45e11dd4ad968be\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/3ed46cf7b738d1a26f9eef8bf45e11dd4ad968be\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"6433f34f6bca822582c063d602bf2bd4ccedf208\",\n \"size\": 462,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/6433f34f6bca822582c063d602bf2bd4ccedf208\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 200 + }, + { + "body": "{\"base_tree\":\"3ed46cf7b738d1a26f9eef8bf45e11dd4ad968be\",\"tree\":[{\"path\":\"1970-01-01-first-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"00e2c6d485b053ca962b09355ca38354e4783f7b\"}]}", + "method": "POST", + "url": "/repos/owner/repo/git/trees?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:54:41 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "895", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4547", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"a318b84b1c2d54725925f34ccfd900a8\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/trees/1883fffcf2895695a842c484a21ccf3115bb148c", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7ADF:3ED7B:1269FC0:165DDF6:5D77AB20", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"1883fffcf2895695a842c484a21ccf3115bb148c\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/1883fffcf2895695a842c484a21ccf3115bb148c\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"00e2c6d485b053ca962b09355ca38354e4783f7b\",\n \"size\": 462,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/00e2c6d485b053ca962b09355ca38354e4783f7b\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"message\":\"Updating “1970-01-01-first-title” metadata\",\"tree\":\"1883fffcf2895695a842c484a21ccf3115bb148c\",\"parents\":[\"3ed46cf7b738d1a26f9eef8bf45e11dd4ad968be\"]}", + "method": "POST", + "url": "/repos/owner/repo/git/commits?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:54:42 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "1510", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4546", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"83b10748887288015a2f25b0be05201b\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/commits/3c928d9cec9fa4718b5a38c11891e4ca6f130873", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7AE2:15110:18891B2:1DCF5AD:5D77AB21", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"3c928d9cec9fa4718b5a38c11891e4ca6f130873\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NTczMTU5OjNjOTI4ZDljZWM5ZmE0NzE4YjVhMzhjMTE4OTFlNGNhNmYxMzA4NzM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/3c928d9cec9fa4718b5a38c11891e4ca6f130873\",\n \"html_url\": \"https://github.com/owner/repo/commit/3c928d9cec9fa4718b5a38c11891e4ca6f130873\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T13:54:41Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T13:54:41Z\"\n },\n \"tree\": {\n \"sha\": \"1883fffcf2895695a842c484a21ccf3115bb148c\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/1883fffcf2895695a842c484a21ccf3115bb148c\"\n },\n \"message\": \"Updating “1970-01-01-first-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"3ed46cf7b738d1a26f9eef8bf45e11dd4ad968be\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/3ed46cf7b738d1a26f9eef8bf45e11dd4ad968be\",\n \"html_url\": \"https://github.com/owner/repo/commit/3ed46cf7b738d1a26f9eef8bf45e11dd4ad968be\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "status": 201 + }, + { + "body": "{\"sha\":\"3c928d9cec9fa4718b5a38c11891e4ca6f130873\",\"force\":false}", + "method": "PATCH", + "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:54:43 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4545", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"43e2cfa40e03d450e0a485224b040964\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7AE3:2B24:17D0E4D:1CF3B54:5D77AB22", + "content-length": "484", + "connection": "keep-alive" + }, + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NTczMTU5OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"3c928d9cec9fa4718b5a38c11891e4ca6f130873\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/3c928d9cec9fa4718b5a38c11891e4ca6f130873\"\n }\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=master", + "headers": { + "Date": "Tue, 10 Sep 2019 13:54:43 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "404 Not Found", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4544", + "X-RateLimit-Reset": "1568126651", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7AE4:15110:18894E6:1DCF9AE:5D77AB23", + "content-length": "116", + "connection": "keep-alive" + }, + "response": "{\n \"message\": \"Not Found\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/#get-contents\"\n}\n", + "status": 404 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=cms/1970-01-01-first-title", + "headers": { + "Date": "Tue, 10 Sep 2019 13:54:43 GMT", + "Content-Type": "application/vnd.github.VERSION.raw; charset=utf-8", + "Content-Length": "167", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4543", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"a041245814892e3f73f63ca54333fda649b7fc0b\"", + "Last-Modified": "Tue, 10 Sep 2019 13:54:35 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7AE6:9D21:1742C4F:1C56DB4:5D77AB23", + "connection": "keep-alive" + }, + "response": "---\ntemplate: post\ntitle: first title\ndraft: true\ndate: 1970-01-01T00:00:00.000Z\ndescription: first description\ncategory: first category\ntags:\n - tag1\n---\nfirst body\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/commits/2851d76ee62b2e875e3eae94a6329f112c7e1be9/status?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:54:44 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4542", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"8e526a154e677bd948a26f42732e5907\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo, repo:status", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7AE8:244EB:18122E7:1D3CEA3:5D77AB24", + "content-length": "6574", + "connection": "keep-alive" + }, + "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"2851d76ee62b2e875e3eae94a6329f112c7e1be9\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 207573159,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NzMxNTk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/2851d76ee62b2e875e3eae94a6329f112c7e1be9\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/2851d76ee62b2e875e3eae94a6329f112c7e1be9/status\"\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/refs/heads/cms?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:54:45 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4541", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"4cb2ccbac09dcdef5acdd2a89216d266\"", + "Last-Modified": "Tue, 10 Sep 2019 13:53:22 GMT", + "X-Poll-Interval": "300", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7AEA:244E4:AF2F7F:D44894:5D77AB24", + "content-length": "542", + "connection": "keep-alive" + }, + "response": "[\n {\n \"ref\": \"refs/heads/cms/1970-01-01-first-title\",\n \"node_id\": \"MDM6UmVmMjA3NTczMTU5OmNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxl\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/heads/cms/1970-01-01-first-title\",\n \"object\": {\n \"sha\": \"2851d76ee62b2e875e3eae94a6329f112c7e1be9\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/2851d76ee62b2e875e3eae94a6329f112c7e1be9\"\n }\n }\n]\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/pulls?ts=300&head=cms/1970-01-01-first-title&state=open&base=master", + "headers": { + "Date": "Tue, 10 Sep 2019 13:54:46 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4540", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"9e19272dd650baf25fd4241712384d96\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7AEC:15110:1889769:1DCFCD2:5D77AB25", + "content-length": "22154", + "connection": "keep-alive" + }, + "response": "[\n {\n \"url\": \"https://api.github.com/repos/owner/repo/pulls/2\",\n \"id\": 316007203,\n \"node_id\": \"MDExOlB1bGxSZXF1ZXN0MzE2MDA3MjAz\",\n \"html_url\": \"https://github.com/owner/repo/pull/2\",\n \"diff_url\": \"https://github.com/owner/repo/pull/2.diff\",\n \"patch_url\": \"https://github.com/owner/repo/pull/2.patch\",\n \"issue_url\": \"https://api.github.com/repos/owner/repo/issues/2\",\n \"number\": 2,\n \"state\": \"open\",\n \"locked\": false,\n \"title\": \"Create Post “1970-01-01-first-title”\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Automatically generated by Netlify CMS\",\n \"created_at\": \"2019-09-10T13:54:38Z\",\n \"updated_at\": \"2019-09-10T13:54:38Z\",\n \"closed_at\": null,\n \"merged_at\": null,\n \"merge_commit_sha\": \"ffee8e32d23f9c8936efac96cc0e8c1484ccf008\",\n \"assignee\": null,\n \"assignees\": [\n\n ],\n \"requested_reviewers\": [\n\n ],\n \"requested_teams\": [\n\n ],\n \"labels\": [\n\n ],\n \"milestone\": null,\n \"commits_url\": \"https://api.github.com/repos/owner/repo/pulls/2/commits\",\n \"review_comments_url\": \"https://api.github.com/repos/owner/repo/pulls/2/comments\",\n \"review_comment_url\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/issues/2/comments\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/2851d76ee62b2e875e3eae94a6329f112c7e1be9\",\n \"head\": {\n \"label\": \"owner:cms/1970-01-01-first-title\",\n \"ref\": \"cms/1970-01-01-first-title\",\n \"sha\": \"2851d76ee62b2e875e3eae94a6329f112c7e1be9\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 207573159,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NzMxNTk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-10T13:52:54Z\",\n \"updated_at\": \"2019-09-10T13:53:22Z\",\n \"pushed_at\": \"2019-09-10T13:54:43Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 1,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 1,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"base\": {\n \"label\": \"owner:master\",\n \"ref\": \"master\",\n \"sha\": \"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 207573159,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NzMxNTk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-10T13:52:54Z\",\n \"updated_at\": \"2019-09-10T13:53:22Z\",\n \"pushed_at\": \"2019-09-10T13:54:43Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 1,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 1,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/2\"\n },\n \"html\": {\n \"href\": \"https://github.com/owner/repo/pull/2\"\n },\n \"issue\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/2\"\n },\n \"comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/2/comments\"\n },\n \"review_comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/2/comments\"\n },\n \"review_comment\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\"\n },\n \"commits\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/2/commits\"\n },\n \"statuses\": {\n \"href\": \"https://api.github.com/repos/owner/repo/statuses/2851d76ee62b2e875e3eae94a6329f112c7e1be9\"\n }\n },\n \"author_association\": \"OWNER\"\n }\n]\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=cms/1970-01-01-first-title", + "headers": { + "Date": "Tue, 10 Sep 2019 13:54:46 GMT", + "Content-Type": "application/vnd.github.VERSION.raw; charset=utf-8", + "Content-Length": "167", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4539", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"a041245814892e3f73f63ca54333fda649b7fc0b\"", + "Last-Modified": "Tue, 10 Sep 2019 13:54:35 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7AEE:3ED76:486CBA:58C412:5D77AB26", + "connection": "keep-alive" + }, + "response": "---\ntemplate: post\ntitle: first title\ndraft: true\ndate: 1970-01-01T00:00:00.000Z\ndescription: first description\ncategory: first category\ntags:\n - tag1\n---\nfirst body\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=master", + "headers": { + "Date": "Tue, 10 Sep 2019 13:54:46 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "404 Not Found", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4538", + "X-RateLimit-Reset": "1568126651", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7AF0:2B1F:122C6B2:162DDF3:5D77AB26", + "content-length": "116", + "connection": "keep-alive" + }, + "response": "{\n \"message\": \"Not Found\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/#get-contents\"\n}\n", + "status": 404 + }, + { + "method": "GET", + "url": "/repos/owner/repo/commits/2851d76ee62b2e875e3eae94a6329f112c7e1be9/status?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:54:47 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4537", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"8e526a154e677bd948a26f42732e5907\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo, repo:status", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7AF2:2B1F:122C7EC:162DF8E:5D77AB27", + "content-length": "6574", + "connection": "keep-alive" + }, + "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"2851d76ee62b2e875e3eae94a6329f112c7e1be9\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 207573159,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NzMxNTk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/2851d76ee62b2e875e3eae94a6329f112c7e1be9\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/2851d76ee62b2e875e3eae94a6329f112c7e1be9/status\"\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=cms/1970-01-01-first-title", + "headers": { + "Date": "Tue, 10 Sep 2019 13:54:47 GMT", + "Content-Type": "application/vnd.github.VERSION.raw; charset=utf-8", + "Content-Length": "167", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4536", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"a041245814892e3f73f63ca54333fda649b7fc0b\"", + "Last-Modified": "Tue, 10 Sep 2019 13:54:35 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7AF4:B4DC:ABEE23:D12569:5D77AB27", + "connection": "keep-alive" + }, + "response": "---\ntemplate: post\ntitle: first title\ndraft: true\ndate: 1970-01-01T00:00:00.000Z\ndescription: first description\ncategory: first category\ntags:\n - tag1\n---\nfirst body\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=master", + "headers": { + "Date": "Tue, 10 Sep 2019 13:54:47 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "404 Not Found", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4535", + "X-RateLimit-Reset": "1568126651", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7AF6:15110:1889A79:1DD0092:5D77AB27", + "content-length": "116", + "connection": "keep-alive" + }, + "response": "{\n \"message\": \"Not Found\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/#get-contents\"\n}\n", + "status": 404 + }, + { + "method": "GET", + "url": "/repos/owner/repo/commits/2851d76ee62b2e875e3eae94a6329f112c7e1be9/status?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:54:48 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4534", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"8e526a154e677bd948a26f42732e5907\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo, repo:status", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7AFA:9D1D:1964E8:1F039D:5D77AB28", + "content-length": "6574", + "connection": "keep-alive" + }, + "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"2851d76ee62b2e875e3eae94a6329f112c7e1be9\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 207573159,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NzMxNTk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/2851d76ee62b2e875e3eae94a6329f112c7e1be9\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/2851d76ee62b2e875e3eae94a6329f112c7e1be9/status\"\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/commits/2851d76ee62b2e875e3eae94a6329f112c7e1be9/status?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 13:54:50 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4533", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"8e526a154e677bd948a26f42732e5907\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo, repo:status", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7AFE:3ED77:ABBD49:D02E45:5D77AB2A", + "content-length": "6574", + "connection": "keep-alive" + }, + "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"2851d76ee62b2e875e3eae94a6329f112c7e1be9\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 207573159,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NzMxNTk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/2851d76ee62b2e875e3eae94a6329f112c7e1be9\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/2851d76ee62b2e875e3eae94a6329f112c7e1be9/status\"\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/commits/2851d76ee62b2e875e3eae94a6329f112c7e1be9/status?ts=600", + "headers": { + "Date": "Tue, 10 Sep 2019 13:54:53 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4532", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"8e526a154e677bd948a26f42732e5907\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo, repo:status", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B02:2B19:A981C1:CE5325:5D77AB2D", + "content-length": "6574", + "connection": "keep-alive" + }, + "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"2851d76ee62b2e875e3eae94a6329f112c7e1be9\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 207573159,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NzMxNTk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/2851d76ee62b2e875e3eae94a6329f112c7e1be9\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/2851d76ee62b2e875e3eae94a6329f112c7e1be9/status\"\n}\n", + "status": 200 + }, + { + "body": "{\"content\":\"LS0tCnRlbXBsYXRlOiBwb3N0CnRpdGxlOiBzZWNvbmQgdGl0bGUKZHJhZnQ6IHRydWUKZGF0ZTogMTk3MC0wMS0wMVQwMDowMDowMC4wMDBaCmRlc2NyaXB0aW9uOiBzZWNvbmQgZGVzY3JpcHRpb24KY2F0ZWdvcnk6IHNlY29uZCBjYXRlZ29yeQp0YWdzOgogIC0gdGFnMgotLS0Kc2Vjb25kIGJvZHkK\",\"encoding\":\"base64\"}", + "method": "POST", + "url": "/repos/owner/repo/git/blobs?ts=600", + "headers": { + "Date": "Tue, 10 Sep 2019 13:54:53 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "207", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4531", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"20da79c64ee18fa137d5d74df9112072\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/blobs/3e5676c8285a456a6604603042b5428883f50417", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B00:15110:188A284:1DD0AA6:5D77AB2D", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"3e5676c8285a456a6604603042b5428883f50417\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/3e5676c8285a456a6604603042b5428883f50417\"\n}\n", + "status": 201 + }, + { + "method": "GET", + "url": "/repos/owner/repo/branches/cms%2F1970-01-01-first-title?ts=600", + "headers": { + "Date": "Tue, 10 Sep 2019 13:54:54 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4530", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"2c3b723a6f952710370144f60290521f\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B04:15110:188A391:1DD0BF6:5D77AB2D", + "content-length": "4815", + "connection": "keep-alive" + }, + "response": "{\n \"name\": \"cms/1970-01-01-first-title\",\n \"commit\": {\n \"sha\": \"2851d76ee62b2e875e3eae94a6329f112c7e1be9\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NTczMTU5OjI4NTFkNzZlZTYyYjJlODc1ZTNlYWU5NGE2MzI5ZjExMmM3ZTFiZTk=\",\n \"commit\": {\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T13:54:35Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T13:54:35Z\"\n },\n \"message\": \"Create Post “1970-01-01-first-title”\",\n \"tree\": {\n \"sha\": \"daee8d5d15d144e8779955166a2afeccde2770e1\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/daee8d5d15d144e8779955166a2afeccde2770e1\"\n },\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/2851d76ee62b2e875e3eae94a6329f112c7e1be9\",\n \"comment_count\": 0,\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n },\n \"url\": \"https://api.github.com/repos/owner/repo/commits/2851d76ee62b2e875e3eae94a6329f112c7e1be9\",\n \"html_url\": \"https://github.com/owner/repo/commit/2851d76ee62b2e875e3eae94a6329f112c7e1be9\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/commits/2851d76ee62b2e875e3eae94a6329f112c7e1be9/comments\",\n \"author\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"committer\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"parents\": [\n {\n \"sha\": \"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"html_url\": \"https://github.com/owner/repo/commit/726172deae99c8a2cea4c71e734a02a793d4d9e5\"\n }\n ]\n },\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/branches/cms/1970-01-01-first-title\",\n \"html\": \"https://github.com/owner/repo/tree/cms/1970-01-01-first-title\"\n },\n \"protected\": false,\n \"protection\": {\n \"enabled\": false,\n \"required_status_checks\": {\n \"enforcement_level\": \"off\",\n \"contexts\": [\n\n ]\n }\n },\n \"protection_url\": \"https://api.github.com/repos/owner/repo/branches/cms/1970-01-01-first-title/protection\"\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/commits/2851d76ee62b2e875e3eae94a6329f112c7e1be9/status?ts=600", + "headers": { + "Date": "Tue, 10 Sep 2019 13:54:54 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4529", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"8e526a154e677bd948a26f42732e5907\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo, repo:status", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B08:9D20:1158238:1535A1C:5D77AB2D", + "content-length": "6574", + "connection": "keep-alive" + }, + "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"2851d76ee62b2e875e3eae94a6329f112c7e1be9\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 207573159,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NzMxNTk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/2851d76ee62b2e875e3eae94a6329f112c7e1be9\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/2851d76ee62b2e875e3eae94a6329f112c7e1be9/status\"\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/trees/2851d76ee62b2e875e3eae94a6329f112c7e1be9?ts=600", + "headers": { + "Date": "Tue, 10 Sep 2019 13:54:54 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4528", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"0160bb923093b0e7b104592a27e2083c\"", + "Last-Modified": "Tue, 10 Sep 2019 13:53:22 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B0E:2B19:A982DD:CE5484:5D77AB2E", + "content-length": "11769", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"2851d76ee62b2e875e3eae94a6329f112c7e1be9\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/2851d76ee62b2e875e3eae94a6329f112c7e1be9\",\n \"tree\": [\n {\n \"path\": \".circleci\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"e5e9af3301cac61f120b8e4d40b1733c7a45685a\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/e5e9af3301cac61f120b8e4d40b1733c7a45685a\"\n },\n {\n \"path\": \".eslintignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"80b4531b026d19f8fa589efd122e76199d23f967\",\n \"size\": 39,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/80b4531b026d19f8fa589efd122e76199d23f967\"\n },\n {\n \"path\": \".eslintrc.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"370684994aaed5b858da3a006f48cfa57e88fd27\",\n \"size\": 414,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/370684994aaed5b858da3a006f48cfa57e88fd27\"\n },\n {\n \"path\": \".flowconfig\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14aa2ac4cc0e15223ad98630a6f1325fc81f8043\",\n \"size\": 283,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14aa2ac4cc0e15223ad98630a6f1325fc81f8043\"\n },\n {\n \"path\": \".gitattributes\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"10a369ddf4f603337cabc6f21646508323941ce1\",\n \"size\": 135,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/10a369ddf4f603337cabc6f21646508323941ce1\"\n },\n {\n \"path\": \".github\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4ebeece548b52b20af59622354530a6d33b50b43\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4ebeece548b52b20af59622354530a6d33b50b43\"\n },\n {\n \"path\": \".gitignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"c071ba35b0e49899bab6d610a68eef667dbbf157\",\n \"size\": 169,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/c071ba35b0e49899bab6d610a68eef667dbbf157\"\n },\n {\n \"path\": \".prettierignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"393f050e123d998cf8c8b362ff95cc8ac4d250e5\",\n \"size\": 45,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/393f050e123d998cf8c8b362ff95cc8ac4d250e5\"\n },\n {\n \"path\": \".prettierrc\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e52ad05bb13b084d7949dd76e1b2517455162150\",\n \"size\": 223,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/e52ad05bb13b084d7949dd76e1b2517455162150\"\n },\n {\n \"path\": \".stylelintrc.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"4b4c9698d10d756f5faa025659b86375428ed0a7\",\n \"size\": 718,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/4b4c9698d10d756f5faa025659b86375428ed0a7\"\n },\n {\n \"path\": \".vscode\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"286e97ec0113ea8242b41ac222e2c3e8077e6f1e\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/286e97ec0113ea8242b41ac222e2c3e8077e6f1e\"\n },\n {\n \"path\": \"CHANGELOG.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"070a5d4f0eacd2dc0be81ae8996f8982de43046e\",\n \"size\": 2113,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/070a5d4f0eacd2dc0be81ae8996f8982de43046e\"\n },\n {\n \"path\": \"CODE_OF_CONDUCT.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"92bc7565ff0ee145a0041b5179a820f14f39ab22\",\n \"size\": 3355,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/92bc7565ff0ee145a0041b5179a820f14f39ab22\"\n },\n {\n \"path\": \"CONTRIBUTING.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"8552aa241254a61258e1ff9666ab36f32fb1e3b9\",\n \"size\": 3548,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/8552aa241254a61258e1ff9666ab36f32fb1e3b9\"\n },\n {\n \"path\": \"LICENSE\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"42d85938357b49977c126ca03b199129082d4fb8\",\n \"size\": 1091,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/42d85938357b49977c126ca03b199129082d4fb8\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"19df50a78654c8d757ca7f38447aa3d09c7abcce\",\n \"size\": 3698,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/19df50a78654c8d757ca7f38447aa3d09c7abcce\"\n },\n {\n \"path\": \"backend\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\"\n },\n {\n \"path\": \"config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"58afd573bbb69fcca000efd0f5d90b93c93a98dd\",\n \"size\": 853,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/58afd573bbb69fcca000efd0f5d90b93c93a98dd\"\n },\n {\n \"path\": \"content\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639\"\n },\n {\n \"path\": \"flow-typed\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"86c32fd6c3118be5e0dbbb231a834447357236c6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/86c32fd6c3118be5e0dbbb231a834447357236c6\"\n },\n {\n \"path\": \"flow\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"0af45ad00d155c8d8c7407d913ff85278244c9ce\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/0af45ad00d155c8d8c7407d913ff85278244c9ce\"\n },\n {\n \"path\": \"gatsby-browser.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9bd2c9dce175f04980e91cd9dc295a299e3cdb80\",\n \"size\": 90,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9bd2c9dce175f04980e91cd9dc295a299e3cdb80\"\n },\n {\n \"path\": \"gatsby-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"353a109dad62e3f25bf9f5e6a2167f21a6c8b459\",\n \"size\": 7228,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/353a109dad62e3f25bf9f5e6a2167f21a6c8b459\"\n },\n {\n \"path\": \"gatsby-node.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14a207883c2093d2cc071bc5a464e165bcc1fead\",\n \"size\": 409,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14a207883c2093d2cc071bc5a464e165bcc1fead\"\n },\n {\n \"path\": \"gatsby\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4f23c06cd1740bf78304d2c0b29bf6bfdf427981\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4f23c06cd1740bf78304d2c0b29bf6bfdf427981\"\n },\n {\n \"path\": \"jest\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\"\n },\n {\n \"path\": \"netlify.toml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"599b99cc5700404fde316a7ede829776f23e7d45\",\n \"size\": 137,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/599b99cc5700404fde316a7ede829776f23e7d45\"\n },\n {\n \"path\": \"package.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9d777616438b90a18f1a4ebfd5f114b4c06c6f17\",\n \"size\": 6855,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9d777616438b90a18f1a4ebfd5f114b4c06c6f17\"\n },\n {\n \"path\": \"postcss-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d216501e9b351a72e00ba0b7459a6500e27e7da2\",\n \"size\": 703,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d216501e9b351a72e00ba0b7459a6500e27e7da2\"\n },\n {\n \"path\": \"renovate.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"dcc309398785698b8870545c32051a3d72dd8271\",\n \"size\": 460,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/dcc309398785698b8870545c32051a3d72dd8271\"\n },\n {\n \"path\": \"serverless-scripts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ee3701f2fbfc7196ba340f6481d1387d20527898\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ee3701f2fbfc7196ba340f6481d1387d20527898\"\n },\n {\n \"path\": \"serverless-single-page-app-plugin\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"08763fcfba643a06a452398517019bea4a5850ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/08763fcfba643a06a452398517019bea4a5850ba\"\n },\n {\n \"path\": \"serverless.yml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"20b22c5fad229f35d029bf6614d333d82fe8a987\",\n \"size\": 7803,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/20b22c5fad229f35d029bf6614d333d82fe8a987\"\n },\n {\n \"path\": \"src\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"8cdb35a88232c0f32f12f130c92c7cc55f97f471\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/8cdb35a88232c0f32f12f130c92c7cc55f97f471\"\n },\n {\n \"path\": \"static\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"53c6380a600a030d3722bff7ecde36f749fb6964\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/53c6380a600a030d3722bff7ecde36f749fb6964\"\n },\n {\n \"path\": \"utils\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"a592549c9f74db40b51efefcda2fd76810405f27\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/a592549c9f74db40b51efefcda2fd76810405f27\"\n },\n {\n \"path\": \"yarn.lock\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"475c9c1924ca752a0686303e2fdeb7b13ad75f57\",\n \"size\": 793903,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/475c9c1924ca752a0686303e2fdeb7b13ad75f57\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639?ts=600", + "headers": { + "Date": "Tue, 10 Sep 2019 13:54:55 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4527", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"cf11b691192f3fcf082e39fe0a214ad1\"", + "Last-Modified": "Tue, 10 Sep 2019 13:53:22 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B10:9D1F:A30950:C6F493:5D77AB2F", + "content-length": "831", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"tree\": [\n {\n \"path\": \"pages\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\"\n },\n {\n \"path\": \"posts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba?ts=600", + "headers": { + "Date": "Tue, 10 Sep 2019 13:54:56 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4526", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"ebc1ab128eebad51810afca6f07ccff1\"", + "Last-Modified": "Tue, 10 Sep 2019 13:53:22 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B12:9D1F:A30A1C:C6F590:5D77AB2F", + "content-length": "2362", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a041245814892e3f73f63ca54333fda649b7fc0b\",\n \"size\": 167,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b\"\n },\n {\n \"path\": \"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"size\": 1707,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\"\n },\n {\n \"path\": \"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"size\": 2565,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\"\n },\n {\n \"path\": \"2016-02-02---A-Brief-History-of-Typography.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"0eea554365f002d0f1572af9a58522d335a794d5\",\n \"size\": 2786,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\"\n },\n {\n \"path\": \"2017-18-08---The-Birth-of-Movable-Type.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"44f78c474d04273185a95821426f75affc9b0044\",\n \"size\": 16071,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\"\n },\n {\n \"path\": \"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"size\": 7465,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/commits/2851d76ee62b2e875e3eae94a6329f112c7e1be9/status?ts=600", + "headers": { + "Date": "Tue, 10 Sep 2019 13:54:56 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4525", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"8e526a154e677bd948a26f42732e5907\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo, repo:status", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B15:B4DE:11F93BF:15E1590:5D77AB30", + "content-length": "6574", + "connection": "keep-alive" + }, + "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"2851d76ee62b2e875e3eae94a6329f112c7e1be9\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 207573159,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NzMxNTk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/2851d76ee62b2e875e3eae94a6329f112c7e1be9\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/2851d76ee62b2e875e3eae94a6329f112c7e1be9/status\"\n}\n", + "status": 200 + }, + { + "body": "{\"base_tree\":\"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\"tree\":[{\"path\":\"1970-01-01-first-title.md\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"3e5676c8285a456a6604603042b5428883f50417\"}]}", + "method": "POST", + "url": "/repos/owner/repo/git/trees?ts=600", + "headers": { + "Date": "Tue, 10 Sep 2019 13:54:56 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "2362", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4524", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"d564641877e5dbf80c984c6cd098d23b\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/trees/7db8b5bca921590c7c398d029d9172111750f5fc", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B17:1510F:12388AA:161D231:5D77AB30", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"7db8b5bca921590c7c398d029d9172111750f5fc\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/7db8b5bca921590c7c398d029d9172111750f5fc\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"3e5676c8285a456a6604603042b5428883f50417\",\n \"size\": 171,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/3e5676c8285a456a6604603042b5428883f50417\"\n },\n {\n \"path\": \"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"size\": 1707,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\"\n },\n {\n \"path\": \"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"size\": 2565,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\"\n },\n {\n \"path\": \"2016-02-02---A-Brief-History-of-Typography.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"0eea554365f002d0f1572af9a58522d335a794d5\",\n \"size\": 2786,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\"\n },\n {\n \"path\": \"2017-18-08---The-Birth-of-Movable-Type.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"44f78c474d04273185a95821426f75affc9b0044\",\n \"size\": 16071,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\"\n },\n {\n \"path\": \"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"size\": 7465,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"base_tree\":\"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\"tree\":[{\"path\":\"posts\",\"mode\":\"040000\",\"type\":\"tree\",\"sha\":\"7db8b5bca921590c7c398d029d9172111750f5fc\",\"parentSha\":\"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\"}]}", + "method": "POST", + "url": "/repos/owner/repo/git/trees?ts=600", + "headers": { + "Date": "Tue, 10 Sep 2019 13:54:57 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "831", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4523", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"da30aaa456f4811b19903bb9eec2937d\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/trees/4663bc351c2b79f066f9434722d865f8a0fc88cd", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B18:3ED82:1887182:1DD6FB7:5D77AB31", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"4663bc351c2b79f066f9434722d865f8a0fc88cd\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4663bc351c2b79f066f9434722d865f8a0fc88cd\",\n \"tree\": [\n {\n \"path\": \"pages\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\"\n },\n {\n \"path\": \"posts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"7db8b5bca921590c7c398d029d9172111750f5fc\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/7db8b5bca921590c7c398d029d9172111750f5fc\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"base_tree\":\"2851d76ee62b2e875e3eae94a6329f112c7e1be9\",\"tree\":[{\"path\":\"content\",\"mode\":\"040000\",\"type\":\"tree\",\"sha\":\"4663bc351c2b79f066f9434722d865f8a0fc88cd\",\"parentSha\":\"93da0f3541510f5f9ec829a3cdc6e8147f611639\"}]}", + "method": "POST", + "url": "/repos/owner/repo/git/trees?ts=600", + "headers": { + "Date": "Tue, 10 Sep 2019 13:54:58 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "11769", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4522", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"79f84687b6c980f834f04e4a1a94c7db\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/trees/9011d70a132ecce386da7098e3ca594bbb772623", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B1A:B4CD:85A8:D083:5D77AB31", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"9011d70a132ecce386da7098e3ca594bbb772623\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/9011d70a132ecce386da7098e3ca594bbb772623\",\n \"tree\": [\n {\n \"path\": \".circleci\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"e5e9af3301cac61f120b8e4d40b1733c7a45685a\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/e5e9af3301cac61f120b8e4d40b1733c7a45685a\"\n },\n {\n \"path\": \".eslintignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"80b4531b026d19f8fa589efd122e76199d23f967\",\n \"size\": 39,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/80b4531b026d19f8fa589efd122e76199d23f967\"\n },\n {\n \"path\": \".eslintrc.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"370684994aaed5b858da3a006f48cfa57e88fd27\",\n \"size\": 414,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/370684994aaed5b858da3a006f48cfa57e88fd27\"\n },\n {\n \"path\": \".flowconfig\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14aa2ac4cc0e15223ad98630a6f1325fc81f8043\",\n \"size\": 283,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14aa2ac4cc0e15223ad98630a6f1325fc81f8043\"\n },\n {\n \"path\": \".gitattributes\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"10a369ddf4f603337cabc6f21646508323941ce1\",\n \"size\": 135,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/10a369ddf4f603337cabc6f21646508323941ce1\"\n },\n {\n \"path\": \".github\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4ebeece548b52b20af59622354530a6d33b50b43\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4ebeece548b52b20af59622354530a6d33b50b43\"\n },\n {\n \"path\": \".gitignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"c071ba35b0e49899bab6d610a68eef667dbbf157\",\n \"size\": 169,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/c071ba35b0e49899bab6d610a68eef667dbbf157\"\n },\n {\n \"path\": \".prettierignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"393f050e123d998cf8c8b362ff95cc8ac4d250e5\",\n \"size\": 45,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/393f050e123d998cf8c8b362ff95cc8ac4d250e5\"\n },\n {\n \"path\": \".prettierrc\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e52ad05bb13b084d7949dd76e1b2517455162150\",\n \"size\": 223,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/e52ad05bb13b084d7949dd76e1b2517455162150\"\n },\n {\n \"path\": \".stylelintrc.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"4b4c9698d10d756f5faa025659b86375428ed0a7\",\n \"size\": 718,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/4b4c9698d10d756f5faa025659b86375428ed0a7\"\n },\n {\n \"path\": \".vscode\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"286e97ec0113ea8242b41ac222e2c3e8077e6f1e\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/286e97ec0113ea8242b41ac222e2c3e8077e6f1e\"\n },\n {\n \"path\": \"CHANGELOG.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"070a5d4f0eacd2dc0be81ae8996f8982de43046e\",\n \"size\": 2113,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/070a5d4f0eacd2dc0be81ae8996f8982de43046e\"\n },\n {\n \"path\": \"CODE_OF_CONDUCT.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"92bc7565ff0ee145a0041b5179a820f14f39ab22\",\n \"size\": 3355,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/92bc7565ff0ee145a0041b5179a820f14f39ab22\"\n },\n {\n \"path\": \"CONTRIBUTING.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"8552aa241254a61258e1ff9666ab36f32fb1e3b9\",\n \"size\": 3548,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/8552aa241254a61258e1ff9666ab36f32fb1e3b9\"\n },\n {\n \"path\": \"LICENSE\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"42d85938357b49977c126ca03b199129082d4fb8\",\n \"size\": 1091,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/42d85938357b49977c126ca03b199129082d4fb8\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"19df50a78654c8d757ca7f38447aa3d09c7abcce\",\n \"size\": 3698,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/19df50a78654c8d757ca7f38447aa3d09c7abcce\"\n },\n {\n \"path\": \"backend\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\"\n },\n {\n \"path\": \"config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"58afd573bbb69fcca000efd0f5d90b93c93a98dd\",\n \"size\": 853,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/58afd573bbb69fcca000efd0f5d90b93c93a98dd\"\n },\n {\n \"path\": \"content\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4663bc351c2b79f066f9434722d865f8a0fc88cd\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4663bc351c2b79f066f9434722d865f8a0fc88cd\"\n },\n {\n \"path\": \"flow-typed\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"86c32fd6c3118be5e0dbbb231a834447357236c6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/86c32fd6c3118be5e0dbbb231a834447357236c6\"\n },\n {\n \"path\": \"flow\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"0af45ad00d155c8d8c7407d913ff85278244c9ce\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/0af45ad00d155c8d8c7407d913ff85278244c9ce\"\n },\n {\n \"path\": \"gatsby-browser.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9bd2c9dce175f04980e91cd9dc295a299e3cdb80\",\n \"size\": 90,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9bd2c9dce175f04980e91cd9dc295a299e3cdb80\"\n },\n {\n \"path\": \"gatsby-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"353a109dad62e3f25bf9f5e6a2167f21a6c8b459\",\n \"size\": 7228,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/353a109dad62e3f25bf9f5e6a2167f21a6c8b459\"\n },\n {\n \"path\": \"gatsby-node.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14a207883c2093d2cc071bc5a464e165bcc1fead\",\n \"size\": 409,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14a207883c2093d2cc071bc5a464e165bcc1fead\"\n },\n {\n \"path\": \"gatsby\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4f23c06cd1740bf78304d2c0b29bf6bfdf427981\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4f23c06cd1740bf78304d2c0b29bf6bfdf427981\"\n },\n {\n \"path\": \"jest\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\"\n },\n {\n \"path\": \"netlify.toml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"599b99cc5700404fde316a7ede829776f23e7d45\",\n \"size\": 137,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/599b99cc5700404fde316a7ede829776f23e7d45\"\n },\n {\n \"path\": \"package.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9d777616438b90a18f1a4ebfd5f114b4c06c6f17\",\n \"size\": 6855,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9d777616438b90a18f1a4ebfd5f114b4c06c6f17\"\n },\n {\n \"path\": \"postcss-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d216501e9b351a72e00ba0b7459a6500e27e7da2\",\n \"size\": 703,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d216501e9b351a72e00ba0b7459a6500e27e7da2\"\n },\n {\n \"path\": \"renovate.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"dcc309398785698b8870545c32051a3d72dd8271\",\n \"size\": 460,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/dcc309398785698b8870545c32051a3d72dd8271\"\n },\n {\n \"path\": \"serverless-scripts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ee3701f2fbfc7196ba340f6481d1387d20527898\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ee3701f2fbfc7196ba340f6481d1387d20527898\"\n },\n {\n \"path\": \"serverless-single-page-app-plugin\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"08763fcfba643a06a452398517019bea4a5850ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/08763fcfba643a06a452398517019bea4a5850ba\"\n },\n {\n \"path\": \"serverless.yml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"20b22c5fad229f35d029bf6614d333d82fe8a987\",\n \"size\": 7803,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/20b22c5fad229f35d029bf6614d333d82fe8a987\"\n },\n {\n \"path\": \"src\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"8cdb35a88232c0f32f12f130c92c7cc55f97f471\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/8cdb35a88232c0f32f12f130c92c7cc55f97f471\"\n },\n {\n \"path\": \"static\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"53c6380a600a030d3722bff7ecde36f749fb6964\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/53c6380a600a030d3722bff7ecde36f749fb6964\"\n },\n {\n \"path\": \"utils\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"a592549c9f74db40b51efefcda2fd76810405f27\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/a592549c9f74db40b51efefcda2fd76810405f27\"\n },\n {\n \"path\": \"yarn.lock\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"475c9c1924ca752a0686303e2fdeb7b13ad75f57\",\n \"size\": 793903,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/475c9c1924ca752a0686303e2fdeb7b13ad75f57\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "method": "GET", + "url": "/repos/owner/repo/commits/2851d76ee62b2e875e3eae94a6329f112c7e1be9/status?ts=600", + "headers": { + "Date": "Tue, 10 Sep 2019 13:54:59 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4521", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"8e526a154e677bd948a26f42732e5907\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo, repo:status", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B1E:2B19:A98668:CE58E3:5D77AB32", + "content-length": "6574", + "connection": "keep-alive" + }, + "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"2851d76ee62b2e875e3eae94a6329f112c7e1be9\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 207573159,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NzMxNTk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/2851d76ee62b2e875e3eae94a6329f112c7e1be9\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/2851d76ee62b2e875e3eae94a6329f112c7e1be9/status\"\n}\n", + "status": 200 + }, + { + "body": "{\"message\":\"Update Post “1970-01-01-first-title”\",\"tree\":\"9011d70a132ecce386da7098e3ca594bbb772623\",\"parents\":[\"2851d76ee62b2e875e3eae94a6329f112c7e1be9\"]}", + "method": "POST", + "url": "/repos/owner/repo/git/commits?ts=600", + "headers": { + "Date": "Tue, 10 Sep 2019 13:54:59 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "1504", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4520", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"d43daf46423097c9aa966f26ae541559\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/commits/8c8903cdd71381d845159e600a2181a9afa33558", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B1D:244E7:11AAF34:158F97F:5D77AB32", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"8c8903cdd71381d845159e600a2181a9afa33558\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NTczMTU5OjhjODkwM2NkZDcxMzgxZDg0NTE1OWU2MDBhMjE4MWE5YWZhMzM1NTg=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/8c8903cdd71381d845159e600a2181a9afa33558\",\n \"html_url\": \"https://github.com/owner/repo/commit/8c8903cdd71381d845159e600a2181a9afa33558\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T13:54:59Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T13:54:59Z\"\n },\n \"tree\": {\n \"sha\": \"9011d70a132ecce386da7098e3ca594bbb772623\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/9011d70a132ecce386da7098e3ca594bbb772623\"\n },\n \"message\": \"Update Post “1970-01-01-first-title”\",\n \"parents\": [\n {\n \"sha\": \"2851d76ee62b2e875e3eae94a6329f112c7e1be9\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/2851d76ee62b2e875e3eae94a6329f112c7e1be9\",\n \"html_url\": \"https://github.com/owner/repo/commit/2851d76ee62b2e875e3eae94a6329f112c7e1be9\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "status": 201 + }, + { + "method": "GET", + "url": "/repos/owner/repo/commits/2851d76ee62b2e875e3eae94a6329f112c7e1be9/status?ts=600", + "headers": { + "Date": "Tue, 10 Sep 2019 13:54:59 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4519", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"8e526a154e677bd948a26f42732e5907\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo, repo:status", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B20:244EB:1813A97:1D3EBE6:5D77AB33", + "content-length": "6574", + "connection": "keep-alive" + }, + "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"2851d76ee62b2e875e3eae94a6329f112c7e1be9\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 207573159,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NzMxNTk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/2851d76ee62b2e875e3eae94a6329f112c7e1be9\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/2851d76ee62b2e875e3eae94a6329f112c7e1be9/status\"\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/branches/master?ts=600", + "headers": { + "Date": "Tue, 10 Sep 2019 13:54:59 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4518", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"f47adc6d20eeac555786fbffd72595af\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B22:244E4:AF3ABF:D4564E:5D77AB33", + "content-length": "5961", + "connection": "keep-alive" + }, + "response": "{\n \"name\": \"master\",\n \"commit\": {\n \"sha\": \"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NTczMTU5OjcyNjE3MmRlYWU5OWM4YTJjZWE0YzcxZTczNGEwMmE3OTNkNGQ5ZTU=\",\n \"commit\": {\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-08T09:08:14Z\"\n },\n \"committer\": {\n \"name\": \"GitHub\",\n \"email\": \"noreply@github.com\",\n \"date\": \"2019-09-08T09:08:14Z\"\n },\n \"message\": \"Merge pull request #10 from owner/chore/update_dependencies\\n\\nChore: update dependencies\",\n \"tree\": {\n \"sha\": \"c5b7f6d674ba193bb7b4a5fcf4933034e1b7f2b7\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/c5b7f6d674ba193bb7b4a5fcf4933034e1b7f2b7\"\n },\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"comment_count\": 0,\n \"verification\": {\n \"verified\": true,\n \"reason\": \"valid\",\n \"signature\": \"-----BEGIN PGP SIGNATURE-----\\n\\nwsBcBAABCAAQBQJddMT+CRBK7hj4Ov3rIwAAdHIIABWcobVYZFMuqSPezceRaKDr\\npXGqxvB3WLiIrvsQiBz2si9SvufXxLUdq72iaYTbXMCqIAAIBDNwHLltOKcbUF9J\\nKa8pD6cq7jpNyZfhI8xlapMwEZPu53as0tSvwdOnl/0iL+WYjUZUFQR+vrWEmllu\\nhIES9QxU2nk5zcS7t8sFRA+sJdll8GzzhoWYkpw3wgqpxCzJdf5HJS0tWyVCZM5U\\nCgSpSgTvz9bALnQxu7YVrfLGEvi8S7LaOEz5HQc+TV1hNR2dfl5hhiHhWQ1Rsx5w\\nUECV01vItNWhx2dyMn77hIu/G+bTH89WZDU+CmifsNkmvkq90fk4eNt8Hg1mxn4=\\n=6ayM\\n-----END PGP SIGNATURE-----\\n\",\n \"payload\": \"tree c5b7f6d674ba193bb7b4a5fcf4933034e1b7f2b7\\nparent 8ade583d7c02e7769dd685ca64c10851c09f51cf\\nparent 4940957ff42b034d8c47d64b383c34548a34fbb5\\nauthor owner 1567933694 +0300\\ncommitter GitHub 1567933694 +0300\\n\\nMerge pull request #10 from owner/chore/update_dependencies\\n\\nChore: update dependencies\"\n }\n },\n \"url\": \"https://api.github.com/repos/owner/repo/commits/726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"html_url\": \"https://github.com/owner/repo/commit/726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/commits/726172deae99c8a2cea4c71e734a02a793d4d9e5/comments\",\n \"author\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"committer\": {\n \"login\": \"web-flow\",\n \"id\": 19864447,\n \"node_id\": \"MDQ6VXNlcjE5ODY0NDQ3\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/web-flow\",\n \"html_url\": \"https://github.com/web-flow\",\n \"followers_url\": \"https://api.github.com/users/web-flow/followers\",\n \"following_url\": \"https://api.github.com/users/web-flow/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/web-flow/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/web-flow/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/web-flow/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/web-flow/orgs\",\n \"repos_url\": \"https://api.github.com/users/web-flow/repos\",\n \"events_url\": \"https://api.github.com/users/web-flow/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/web-flow/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"parents\": [\n {\n \"sha\": \"8ade583d7c02e7769dd685ca64c10851c09f51cf\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/8ade583d7c02e7769dd685ca64c10851c09f51cf\",\n \"html_url\": \"https://github.com/owner/repo/commit/8ade583d7c02e7769dd685ca64c10851c09f51cf\"\n },\n {\n \"sha\": \"4940957ff42b034d8c47d64b383c34548a34fbb5\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/4940957ff42b034d8c47d64b383c34548a34fbb5\",\n \"html_url\": \"https://github.com/owner/repo/commit/4940957ff42b034d8c47d64b383c34548a34fbb5\"\n }\n ]\n },\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/branches/master\",\n \"html\": \"https://github.com/owner/repo/tree/master\"\n },\n \"protected\": false,\n \"protection\": {\n \"enabled\": false,\n \"required_status_checks\": {\n \"enforcement_level\": \"off\",\n \"contexts\": [\n\n ]\n }\n },\n \"protection_url\": \"https://api.github.com/repos/owner/repo/branches/master/protection\"\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/pulls/2/commits?ts=600", + "headers": { + "Date": "Tue, 10 Sep 2019 13:55:00 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4517", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"325c238669d355310ed675547daa9b5f\"", + "Last-Modified": "Tue, 10 Sep 2019 13:54:38 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B24:3ED77:ABC35B:D035F4:5D77AB33", + "content-length": "4157", + "connection": "keep-alive" + }, + "response": "[\n {\n \"sha\": \"2851d76ee62b2e875e3eae94a6329f112c7e1be9\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NTczMTU5OjI4NTFkNzZlZTYyYjJlODc1ZTNlYWU5NGE2MzI5ZjExMmM3ZTFiZTk=\",\n \"commit\": {\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T13:54:35Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T13:54:35Z\"\n },\n \"message\": \"Create Post “1970-01-01-first-title”\",\n \"tree\": {\n \"sha\": \"daee8d5d15d144e8779955166a2afeccde2770e1\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/daee8d5d15d144e8779955166a2afeccde2770e1\"\n },\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/2851d76ee62b2e875e3eae94a6329f112c7e1be9\",\n \"comment_count\": 0,\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n },\n \"url\": \"https://api.github.com/repos/owner/repo/commits/2851d76ee62b2e875e3eae94a6329f112c7e1be9\",\n \"html_url\": \"https://github.com/owner/repo/commit/2851d76ee62b2e875e3eae94a6329f112c7e1be9\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/commits/2851d76ee62b2e875e3eae94a6329f112c7e1be9/comments\",\n \"author\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"committer\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"parents\": [\n {\n \"sha\": \"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"html_url\": \"https://github.com/owner/repo/commit/726172deae99c8a2cea4c71e734a02a793d4d9e5\"\n }\n ]\n }\n]\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=600", + "headers": { + "Date": "Tue, 10 Sep 2019 13:55:00 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4516", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"43e2cfa40e03d450e0a485224b040964\"", + "Last-Modified": "Tue, 10 Sep 2019 13:53:22 GMT", + "X-Poll-Interval": "300", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B26:15110:188ACE8:1DD17C9:5D77AB34", + "content-length": "484", + "connection": "keep-alive" + }, + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NTczMTU5OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"3c928d9cec9fa4718b5a38c11891e4ca6f130873\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/3c928d9cec9fa4718b5a38c11891e4ca6f130873\"\n }\n}\n", + "status": 200 + }, + { + "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjIsImhlYWQiOiI4Yzg5MDNjZGQ3MTM4MWQ4NDUxNTllNjAwYTIxODFhOWFmYTMzNTU4In0sInVzZXIiOiJvd25lciIsInN0YXR1cyI6ImRyYWZ0IiwiYnJhbmNoIjoiY21zLzE5NzAtMDEtMDEtZmlyc3QtdGl0bGUiLCJjb2xsZWN0aW9uIjoicG9zdHMiLCJjb21taXRNZXNzYWdlIjoiQ3JlYXRlIFBvc3Qg4oCcMTk3MC0wMS0wMS1maXJzdC10aXRsZeKAnSIsInRpdGxlIjoiZmlyc3QgdGl0bGUiLCJkZXNjcmlwdGlvbiI6ImZpcnN0IGRlc2NyaXB0aW9uIiwib2JqZWN0cyI6eyJlbnRyeSI6eyJwYXRoIjoiY29udGVudC9wb3N0cy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxlLm1kIiwic2hhIjoiYTA0MTI0NTgxNDg5MmUzZjczZjYzY2E1NDMzM2ZkYTY0OWI3ZmMwYiJ9LCJmaWxlcyI6W119LCJ0aW1lU3RhbXAiOiIxOTcwLTAxLTAxVDAwOjAwOjAwLjYwMFoifQ==\",\"encoding\":\"base64\"}", + "method": "POST", + "url": "/repos/owner/repo/git/blobs?ts=600", + "headers": { + "Date": "Tue, 10 Sep 2019 13:55:01 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "207", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4515", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"c631a44e3593c99e6403dd82a47fd514\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/blobs/be405ba2940293898aa4fb54ceb8c94f7b40e232", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B28:2B19:A9885C:CE5B73:5D77AB35", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"be405ba2940293898aa4fb54ceb8c94f7b40e232\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/be405ba2940293898aa4fb54ceb8c94f7b40e232\"\n}\n", + "status": 201 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/trees/3c928d9cec9fa4718b5a38c11891e4ca6f130873?ts=600", + "headers": { + "Date": "Tue, 10 Sep 2019 13:55:02 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4514", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"f09c19ee21d2167018f03666f1eb7ff1\"", + "Last-Modified": "Tue, 10 Sep 2019 13:53:22 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B2B:3ED82:18878CF:1DD7923:5D77AB35", + "content-length": "895", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"3c928d9cec9fa4718b5a38c11891e4ca6f130873\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/3c928d9cec9fa4718b5a38c11891e4ca6f130873\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"00e2c6d485b053ca962b09355ca38354e4783f7b\",\n \"size\": 462,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/00e2c6d485b053ca962b09355ca38354e4783f7b\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 200 + }, + { + "body": "{\"base_tree\":\"3c928d9cec9fa4718b5a38c11891e4ca6f130873\",\"tree\":[{\"path\":\"1970-01-01-first-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"be405ba2940293898aa4fb54ceb8c94f7b40e232\"}]}", + "method": "POST", + "url": "/repos/owner/repo/git/trees?ts=600", + "headers": { + "Date": "Tue, 10 Sep 2019 13:55:03 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "895", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4513", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"85c8674ac72e9f0f1f334afbb069e83c\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/trees/f5855cf67297712e84772a3a8ac6623bb60d963c", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B2D:B4DE:11F9C1F:15E1FFF:5D77AB36", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"f5855cf67297712e84772a3a8ac6623bb60d963c\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/f5855cf67297712e84772a3a8ac6623bb60d963c\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"be405ba2940293898aa4fb54ceb8c94f7b40e232\",\n \"size\": 462,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/be405ba2940293898aa4fb54ceb8c94f7b40e232\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"message\":\"Updating “1970-01-01-first-title” metadata\",\"tree\":\"f5855cf67297712e84772a3a8ac6623bb60d963c\",\"parents\":[\"3c928d9cec9fa4718b5a38c11891e4ca6f130873\"]}", + "method": "POST", + "url": "/repos/owner/repo/git/commits?ts=600", + "headers": { + "Date": "Tue, 10 Sep 2019 13:55:05 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "1510", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4512", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"d5a9b95ec39d674859763651270e112f\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/commits/beb8dc98fe555f22d7c350ec0afbb9ce9fed098a", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B2E:15110:188B3BF:1DD206A:5D77AB37", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"beb8dc98fe555f22d7c350ec0afbb9ce9fed098a\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NTczMTU5OmJlYjhkYzk4ZmU1NTVmMjJkN2MzNTBlYzBhZmJiOWNlOWZlZDA5OGE=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/beb8dc98fe555f22d7c350ec0afbb9ce9fed098a\",\n \"html_url\": \"https://github.com/owner/repo/commit/beb8dc98fe555f22d7c350ec0afbb9ce9fed098a\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T13:55:05Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T13:55:05Z\"\n },\n \"tree\": {\n \"sha\": \"f5855cf67297712e84772a3a8ac6623bb60d963c\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/f5855cf67297712e84772a3a8ac6623bb60d963c\"\n },\n \"message\": \"Updating “1970-01-01-first-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"3c928d9cec9fa4718b5a38c11891e4ca6f130873\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/3c928d9cec9fa4718b5a38c11891e4ca6f130873\",\n \"html_url\": \"https://github.com/owner/repo/commit/3c928d9cec9fa4718b5a38c11891e4ca6f130873\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "status": 201 + }, + { + "body": "{\"sha\":\"beb8dc98fe555f22d7c350ec0afbb9ce9fed098a\",\"force\":false}", + "method": "PATCH", + "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=600", + "headers": { + "Date": "Tue, 10 Sep 2019 13:55:06 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4511", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"ce7d2bb64318ceee8e7faf3cba3f201f\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B30:9D21:1744CCE:1C59679:5D77AB39", + "content-length": "484", + "connection": "keep-alive" + }, + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NTczMTU5OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"beb8dc98fe555f22d7c350ec0afbb9ce9fed098a\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/beb8dc98fe555f22d7c350ec0afbb9ce9fed098a\"\n }\n}\n", + "status": 200 + }, + { + "body": "{\"sha\":\"8c8903cdd71381d845159e600a2181a9afa33558\",\"force\":true}", + "method": "PATCH", + "url": "/repos/owner/repo/git/refs/heads/cms%2F1970-01-01-first-title?ts=600", + "headers": { + "Date": "Tue, 10 Sep 2019 13:55:08 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4510", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"7359dc45a4ec25d0bb5ccc20d73e18e2\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B32:2B15:4E478D:5F0136:5D77AB3A", + "content-length": "518", + "connection": "keep-alive" + }, + "response": "{\n \"ref\": \"refs/heads/cms/1970-01-01-first-title\",\n \"node_id\": \"MDM6UmVmMjA3NTczMTU5OmNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxl\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/heads/cms/1970-01-01-first-title\",\n \"object\": {\n \"sha\": \"8c8903cdd71381d845159e600a2181a9afa33558\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/8c8903cdd71381d845159e600a2181a9afa33558\"\n }\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/commits/8c8903cdd71381d845159e600a2181a9afa33558/status?ts=600", + "headers": { + "Date": "Tue, 10 Sep 2019 13:55:09 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4509", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"4d38ec806dc10160ce57fab1ebd2941f\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo, repo:status", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B34:9D21:174531C:1C59E44:5D77AB3D", + "content-length": "6574", + "connection": "keep-alive" + }, + "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"8c8903cdd71381d845159e600a2181a9afa33558\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 207573159,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NzMxNTk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/8c8903cdd71381d845159e600a2181a9afa33558\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/8c8903cdd71381d845159e600a2181a9afa33558/status\"\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/refs/heads/cms?ts=600", + "headers": { + "Date": "Tue, 10 Sep 2019 13:55:09 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4508", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"b4cec2c51b30ba406c62d74ed627c379\"", + "Last-Modified": "Tue, 10 Sep 2019 13:53:22 GMT", + "X-Poll-Interval": "300", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B36:1510F:1239A67:161E89D:5D77AB3D", + "content-length": "542", + "connection": "keep-alive" + }, + "response": "[\n {\n \"ref\": \"refs/heads/cms/1970-01-01-first-title\",\n \"node_id\": \"MDM6UmVmMjA3NTczMTU5OmNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxl\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/heads/cms/1970-01-01-first-title\",\n \"object\": {\n \"sha\": \"8c8903cdd71381d845159e600a2181a9afa33558\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/8c8903cdd71381d845159e600a2181a9afa33558\"\n }\n }\n]\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/pulls?ts=600&head=cms/1970-01-01-first-title&state=open&base=master", + "headers": { + "Date": "Tue, 10 Sep 2019 13:55:12 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4507", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"6d3df972a8ee1881a84a0afb37455f57\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B38:244E1:51C6DB:62B221:5D77AB3E", + "content-length": "22154", + "connection": "keep-alive" + }, + "response": "[\n {\n \"url\": \"https://api.github.com/repos/owner/repo/pulls/2\",\n \"id\": 316007203,\n \"node_id\": \"MDExOlB1bGxSZXF1ZXN0MzE2MDA3MjAz\",\n \"html_url\": \"https://github.com/owner/repo/pull/2\",\n \"diff_url\": \"https://github.com/owner/repo/pull/2.diff\",\n \"patch_url\": \"https://github.com/owner/repo/pull/2.patch\",\n \"issue_url\": \"https://api.github.com/repos/owner/repo/issues/2\",\n \"number\": 2,\n \"state\": \"open\",\n \"locked\": false,\n \"title\": \"Create Post “1970-01-01-first-title”\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Automatically generated by Netlify CMS\",\n \"created_at\": \"2019-09-10T13:54:38Z\",\n \"updated_at\": \"2019-09-10T13:55:09Z\",\n \"closed_at\": null,\n \"merged_at\": null,\n \"merge_commit_sha\": \"ffee8e32d23f9c8936efac96cc0e8c1484ccf008\",\n \"assignee\": null,\n \"assignees\": [\n\n ],\n \"requested_reviewers\": [\n\n ],\n \"requested_teams\": [\n\n ],\n \"labels\": [\n\n ],\n \"milestone\": null,\n \"commits_url\": \"https://api.github.com/repos/owner/repo/pulls/2/commits\",\n \"review_comments_url\": \"https://api.github.com/repos/owner/repo/pulls/2/comments\",\n \"review_comment_url\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/issues/2/comments\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/8c8903cdd71381d845159e600a2181a9afa33558\",\n \"head\": {\n \"label\": \"owner:cms/1970-01-01-first-title\",\n \"ref\": \"cms/1970-01-01-first-title\",\n \"sha\": \"8c8903cdd71381d845159e600a2181a9afa33558\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 207573159,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NzMxNTk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-10T13:52:54Z\",\n \"updated_at\": \"2019-09-10T13:53:22Z\",\n \"pushed_at\": \"2019-09-10T13:55:09Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 1,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 1,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"base\": {\n \"label\": \"owner:master\",\n \"ref\": \"master\",\n \"sha\": \"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 207573159,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NzMxNTk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-10T13:52:54Z\",\n \"updated_at\": \"2019-09-10T13:53:22Z\",\n \"pushed_at\": \"2019-09-10T13:55:09Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 1,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 1,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/2\"\n },\n \"html\": {\n \"href\": \"https://github.com/owner/repo/pull/2\"\n },\n \"issue\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/2\"\n },\n \"comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/2/comments\"\n },\n \"review_comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/2/comments\"\n },\n \"review_comment\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\"\n },\n \"commits\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/2/commits\"\n },\n \"statuses\": {\n \"href\": \"https://api.github.com/repos/owner/repo/statuses/8c8903cdd71381d845159e600a2181a9afa33558\"\n }\n },\n \"author_association\": \"OWNER\"\n }\n]\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=600&ref=master", + "headers": { + "Date": "Tue, 10 Sep 2019 13:55:12 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "404 Not Found", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4506", + "X-RateLimit-Reset": "1568126651", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B3C:244EB:1814FC0:1D4062E:5D77AB40", + "content-length": "116", + "connection": "keep-alive" + }, + "response": "{\n \"message\": \"Not Found\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/#get-contents\"\n}\n", + "status": 404 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=600&ref=cms/1970-01-01-first-title", + "headers": { + "Date": "Tue, 10 Sep 2019 13:55:13 GMT", + "Content-Type": "application/vnd.github.VERSION.raw; charset=utf-8", + "Content-Length": "171", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4505", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"3e5676c8285a456a6604603042b5428883f50417\"", + "Last-Modified": "Tue, 10 Sep 2019 13:54:59 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B3A:244E4:AF4660:D464B0:5D77AB40", + "connection": "keep-alive" + }, + "response": "---\ntemplate: post\ntitle: second title\ndraft: true\ndate: 1970-01-01T00:00:00.000Z\ndescription: second description\ncategory: second category\ntags:\n - tag2\n---\nsecond body\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/commits/8c8903cdd71381d845159e600a2181a9afa33558/status?ts=600", + "headers": { + "Date": "Tue, 10 Sep 2019 13:55:15 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4502", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"4d38ec806dc10160ce57fab1ebd2941f\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo, repo:status", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B44:1510F:123A13A:161F113:5D77AB42", + "content-length": "6574", + "connection": "keep-alive" + }, + "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"8c8903cdd71381d845159e600a2181a9afa33558\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 207573159,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NzMxNTk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/8c8903cdd71381d845159e600a2181a9afa33558\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/8c8903cdd71381d845159e600a2181a9afa33558/status\"\n}\n", + "status": 200 + } +] \ No newline at end of file diff --git a/cypress/fixtures/Github Backend Editorial Workflow - REST API - Open Authoring__successfully forks repository and loads.json b/cypress/fixtures/Github Backend Editorial Workflow - REST API - Open Authoring__successfully forks repository and loads.json new file mode 100644 index 00000000..c0de27e6 --- /dev/null +++ b/cypress/fixtures/Github Backend Editorial Workflow - REST API - Open Authoring__successfully forks repository and loads.json @@ -0,0 +1,418 @@ +[ + { + "method": "GET", + "url": "/user", + "headers": { + "Date": "Tue, 10 Sep 2019 13:56:27 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4810", + "X-RateLimit-Reset": "1568127381", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"9f179b9cd93543dd93e6a5636e9e17a6\"", + "Last-Modified": "Sun, 01 Sep 2019 18:04:11 GMT", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A30:B4E0:16C8AA4:1BBB618:5D77AB8B", + "content-length": "1333", + "connection": "keep-alive" + }, + "response": "{\"login\":\"forkOwner\",\"id\":2,\"avatar_url\":\"https://avatars1.githubusercontent.com/u/7892489?v=4\",\"name\":\"forkOwner\"}", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/collaborators/forkOwner/permission", + "headers": { + "Date": "Tue, 10 Sep 2019 13:56:28 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "403 Forbidden", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4809", + "X-RateLimit-Reset": "1568127381", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A32:9D20:115F7BC:153EB78:5D77AB8B", + "content-length": "185", + "connection": "keep-alive" + }, + "response": "{\n \"message\": \"Must have push access to view collaborator permission.\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/collaborators/#review-a-users-permission-level\"\n}\n", + "status": 403 + }, + { + "method": "POST", + "url": "/repos/owner/repo/forks", + "headers": { + "Date": "Tue, 10 Sep 2019 13:56:29 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "22055", + "Server": "GitHub.com", + "Status": "202 Accepted", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4808", + "X-RateLimit-Reset": "1568127381", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A34:B4DA:52DB70:651277:5D77AB8C", + "connection": "keep-alive" + }, + "response": "{\n \"id\": 207574049,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NzQwNDk=\",\n \"name\": \"repo\",\n \"full_name\": \"forkOwner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"forkOwner\",\n \"id\": 53494188,\n \"node_id\": \"MDQ6VXNlcjUzNDk0MTg4\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/forkOwner\",\n \"html_url\": \"https://github.com/forkOwner\",\n \"followers_url\": \"https://api.github.com/users/forkOwner/followers\",\n \"following_url\": \"https://api.github.com/users/forkOwner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/forkOwner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/forkOwner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/forkOwner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/forkOwner/orgs\",\n \"repos_url\": \"https://api.github.com/users/forkOwner/repos\",\n \"events_url\": \"https://api.github.com/users/forkOwner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/forkOwner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/forkOwner/repo\",\n \"description\": null,\n \"fork\": true,\n \"url\": \"https://api.github.com/repos/forkOwner/repo\",\n \"forks_url\": \"https://api.github.com/repos/forkOwner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/forkOwner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/forkOwner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/forkOwner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/forkOwner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/forkOwner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/forkOwner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/forkOwner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/forkOwner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/forkOwner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/forkOwner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/forkOwner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/forkOwner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/forkOwner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/forkOwner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/forkOwner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/forkOwner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/forkOwner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/forkOwner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/forkOwner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/forkOwner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/forkOwner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/forkOwner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/forkOwner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/forkOwner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/forkOwner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/forkOwner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/forkOwner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/forkOwner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/forkOwner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/forkOwner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/forkOwner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/forkOwner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/forkOwner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/forkOwner/repo/deployments\",\n \"created_at\": \"2019-09-10T13:56:28Z\",\n \"updated_at\": \"2019-09-10T13:56:22Z\",\n \"pushed_at\": \"2019-09-10T13:56:20Z\",\n \"git_url\": \"git://github.com/forkOwner/repo.git\",\n \"ssh_url\": \"git@github.com:forkOwner/repo.git\",\n \"clone_url\": \"https://github.com/forkOwner/repo.git\",\n \"svn_url\": \"https://github.com/forkOwner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": null,\n \"has_issues\": false,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\",\n \"permissions\": {\n \"admin\": true,\n \"push\": true,\n \"pull\": true\n },\n \"parent\": {\n \"id\": 207573159,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NzMxNTk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-10T13:52:54Z\",\n \"updated_at\": \"2019-09-10T13:56:22Z\",\n \"pushed_at\": \"2019-09-10T13:56:20Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n },\n \"source\": {\n \"id\": 207573159,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NzMxNTk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-10T13:52:54Z\",\n \"updated_at\": \"2019-09-10T13:56:22Z\",\n \"pushed_at\": \"2019-09-10T13:56:20Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n },\n \"network_count\": 1,\n \"subscribers_count\": 0\n}\n", + "status": 202 + }, + { + "method": "GET", + "url": "/repos/forkOwner/repo", + "headers": { + "Date": "Tue, 10 Sep 2019 13:56:30 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4807", + "X-RateLimit-Reset": "1568127381", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"a97ae2cac840ff018a3fc36a3da82025\"", + "Last-Modified": "Tue, 10 Sep 2019 13:56:22 GMT", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A36:244E4:AF83DD:D4B0D5:5D77AB8D", + "content-length": "22145", + "connection": "keep-alive" + }, + "response": "{\n \"id\": 207574049,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NzQwNDk=\",\n \"name\": \"repo\",\n \"full_name\": \"forkOwner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"forkOwner\",\n \"id\": 53494188,\n \"node_id\": \"MDQ6VXNlcjUzNDk0MTg4\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/forkOwner\",\n \"html_url\": \"https://github.com/forkOwner\",\n \"followers_url\": \"https://api.github.com/users/forkOwner/followers\",\n \"following_url\": \"https://api.github.com/users/forkOwner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/forkOwner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/forkOwner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/forkOwner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/forkOwner/orgs\",\n \"repos_url\": \"https://api.github.com/users/forkOwner/repos\",\n \"events_url\": \"https://api.github.com/users/forkOwner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/forkOwner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/forkOwner/repo\",\n \"description\": null,\n \"fork\": true,\n \"url\": \"https://api.github.com/repos/forkOwner/repo\",\n \"forks_url\": \"https://api.github.com/repos/forkOwner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/forkOwner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/forkOwner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/forkOwner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/forkOwner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/forkOwner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/forkOwner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/forkOwner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/forkOwner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/forkOwner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/forkOwner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/forkOwner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/forkOwner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/forkOwner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/forkOwner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/forkOwner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/forkOwner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/forkOwner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/forkOwner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/forkOwner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/forkOwner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/forkOwner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/forkOwner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/forkOwner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/forkOwner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/forkOwner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/forkOwner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/forkOwner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/forkOwner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/forkOwner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/forkOwner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/forkOwner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/forkOwner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/forkOwner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/forkOwner/repo/deployments\",\n \"created_at\": \"2019-09-10T13:56:28Z\",\n \"updated_at\": \"2019-09-10T13:56:22Z\",\n \"pushed_at\": \"2019-09-10T13:56:20Z\",\n \"git_url\": \"git://github.com/forkOwner/repo.git\",\n \"ssh_url\": \"git@github.com:forkOwner/repo.git\",\n \"clone_url\": \"https://github.com/forkOwner/repo.git\",\n \"svn_url\": \"https://github.com/forkOwner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": null,\n \"has_issues\": false,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\",\n \"permissions\": {\n \"admin\": true,\n \"push\": true,\n \"pull\": true\n },\n \"allow_squash_merge\": true,\n \"allow_merge_commit\": true,\n \"allow_rebase_merge\": true,\n \"parent\": {\n \"id\": 207573159,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NzMxNTk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-10T13:52:54Z\",\n \"updated_at\": \"2019-09-10T13:56:22Z\",\n \"pushed_at\": \"2019-09-10T13:56:20Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n },\n \"source\": {\n \"id\": 207573159,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NzMxNTk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-10T13:52:54Z\",\n \"updated_at\": \"2019-09-10T13:56:22Z\",\n \"pushed_at\": \"2019-09-10T13:56:20Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n },\n \"network_count\": 1,\n \"subscribers_count\": 0\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/user?ts=0", + "headers": { + "Date": "Tue, 10 Sep 2019 13:56:30 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4806", + "X-RateLimit-Reset": "1568127381", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"306a7697fb3e2ba7e728a792014e91b8\"", + "Last-Modified": "Sun, 01 Sep 2019 18:04:11 GMT", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BA4:9D1E:4BA991:5C9725:5D77AB8E", + "content-length": "1333", + "connection": "keep-alive" + }, + "response": "{\"login\":\"forkOwner\",\"id\":2,\"avatar_url\":\"https://avatars1.githubusercontent.com/u/7892489?v=4\",\"name\":\"forkOwner\"}", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/forkOwner/repo?ts=0", + "headers": { + "Date": "Tue, 10 Sep 2019 13:56:31 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4805", + "X-RateLimit-Reset": "1568127381", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"7d98805f5327e6292352f4a83e196d5f\"", + "Last-Modified": "Tue, 10 Sep 2019 13:56:30 GMT", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BA6:B4DA:52DCB6:651410:5D77AB8F", + "content-length": "22145", + "connection": "keep-alive" + }, + "response": "{\n \"id\": 207574049,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NzQwNDk=\",\n \"name\": \"repo\",\n \"full_name\": \"forkOwner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"forkOwner\",\n \"id\": 53494188,\n \"node_id\": \"MDQ6VXNlcjUzNDk0MTg4\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/forkOwner\",\n \"html_url\": \"https://github.com/forkOwner\",\n \"followers_url\": \"https://api.github.com/users/forkOwner/followers\",\n \"following_url\": \"https://api.github.com/users/forkOwner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/forkOwner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/forkOwner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/forkOwner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/forkOwner/orgs\",\n \"repos_url\": \"https://api.github.com/users/forkOwner/repos\",\n \"events_url\": \"https://api.github.com/users/forkOwner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/forkOwner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/forkOwner/repo\",\n \"description\": null,\n \"fork\": true,\n \"url\": \"https://api.github.com/repos/forkOwner/repo\",\n \"forks_url\": \"https://api.github.com/repos/forkOwner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/forkOwner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/forkOwner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/forkOwner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/forkOwner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/forkOwner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/forkOwner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/forkOwner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/forkOwner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/forkOwner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/forkOwner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/forkOwner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/forkOwner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/forkOwner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/forkOwner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/forkOwner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/forkOwner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/forkOwner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/forkOwner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/forkOwner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/forkOwner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/forkOwner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/forkOwner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/forkOwner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/forkOwner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/forkOwner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/forkOwner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/forkOwner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/forkOwner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/forkOwner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/forkOwner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/forkOwner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/forkOwner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/forkOwner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/forkOwner/repo/deployments\",\n \"created_at\": \"2019-09-10T13:56:28Z\",\n \"updated_at\": \"2019-09-10T13:56:30Z\",\n \"pushed_at\": \"2019-09-10T13:56:20Z\",\n \"git_url\": \"git://github.com/forkOwner/repo.git\",\n \"ssh_url\": \"git@github.com:forkOwner/repo.git\",\n \"clone_url\": \"https://github.com/forkOwner/repo.git\",\n \"svn_url\": \"https://github.com/forkOwner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": null,\n \"has_issues\": false,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\",\n \"permissions\": {\n \"admin\": true,\n \"push\": true,\n \"pull\": true\n },\n \"allow_squash_merge\": true,\n \"allow_merge_commit\": true,\n \"allow_rebase_merge\": true,\n \"parent\": {\n \"id\": 207573159,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NzMxNTk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-10T13:52:54Z\",\n \"updated_at\": \"2019-09-10T13:56:22Z\",\n \"pushed_at\": \"2019-09-10T13:56:20Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n },\n \"source\": {\n \"id\": 207573159,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NzMxNTk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-10T13:52:54Z\",\n \"updated_at\": \"2019-09-10T13:56:22Z\",\n \"pushed_at\": \"2019-09-10T13:56:20Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 1,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 1,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n },\n \"network_count\": 1,\n \"subscribers_count\": 0\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/content/posts?ts=0&ref=master", + "headers": { + "Date": "Tue, 10 Sep 2019 13:56:32 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4804", + "X-RateLimit-Reset": "1568127381", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"c5b7f6d674ba193bb7b4a5fcf4933034e1b7f2b7\"", + "Last-Modified": "Tue, 10 Sep 2019 13:56:22 GMT", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BA8:2B1F:12341B9:1637879:5D77AB8F", + "content-length": "7422", + "connection": "keep-alive" + }, + "response": "[\n {\n \"name\": \"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"path\": \"content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"sha\": \"6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"size\": 1707,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"html\": \"https://github.com/owner/repo/blob/master/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md\"\n }\n },\n {\n \"name\": \"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"path\": \"content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"sha\": \"d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"size\": 2565,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"html\": \"https://github.com/owner/repo/blob/master/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\"\n }\n },\n {\n \"name\": \"2016-02-02---A-Brief-History-of-Typography.md\",\n \"path\": \"content/posts/2016-02-02---A-Brief-History-of-Typography.md\",\n \"sha\": \"0eea554365f002d0f1572af9a58522d335a794d5\",\n \"size\": 2786,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2016-02-02---A-Brief-History-of-Typography.md?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/content/posts/2016-02-02---A-Brief-History-of-Typography.md\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/content/posts/2016-02-02---A-Brief-History-of-Typography.md\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2016-02-02---A-Brief-History-of-Typography.md?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\",\n \"html\": \"https://github.com/owner/repo/blob/master/content/posts/2016-02-02---A-Brief-History-of-Typography.md\"\n }\n },\n {\n \"name\": \"2017-18-08---The-Birth-of-Movable-Type.md\",\n \"path\": \"content/posts/2017-18-08---The-Birth-of-Movable-Type.md\",\n \"sha\": \"44f78c474d04273185a95821426f75affc9b0044\",\n \"size\": 16071,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2017-18-08---The-Birth-of-Movable-Type.md?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/content/posts/2017-18-08---The-Birth-of-Movable-Type.md\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/content/posts/2017-18-08---The-Birth-of-Movable-Type.md\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2017-18-08---The-Birth-of-Movable-Type.md?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\",\n \"html\": \"https://github.com/owner/repo/blob/master/content/posts/2017-18-08---The-Birth-of-Movable-Type.md\"\n }\n },\n {\n \"name\": \"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"path\": \"content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"sha\": \"a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"size\": 7465,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"html\": \"https://github.com/owner/repo/blob/master/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md\"\n }\n }\n]\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/forkOwner/repo/contents/static/media?ts=0&ref=master", + "headers": { + "Date": "Tue, 10 Sep 2019 13:56:32 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4803", + "X-RateLimit-Reset": "1568127381", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"c5b7f6d674ba193bb7b4a5fcf4933034e1b7f2b7\"", + "Last-Modified": "Tue, 10 Sep 2019 13:56:30 GMT", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BB4:B4DE:1200A21:15EA864:5D77AB90", + "content-length": "12712", + "connection": "keep-alive" + }, + "response": "[\n {\n \"name\": \"42-line-bible.jpg\",\n \"path\": \"static/media/42-line-bible.jpg\",\n \"sha\": \"41c8d12f9ca5864beb827c381fbeff935209d5fb\",\n \"size\": 671242,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/contents/static/media/42-line-bible.jpg?ref=master\",\n \"html_url\": \"https://github.com/forkOwner/repo/blob/master/static/media/42-line-bible.jpg\",\n \"git_url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/41c8d12f9ca5864beb827c381fbeff935209d5fb\",\n \"download_url\": \"https://raw.githubusercontent.com/forkOwner/repo/master/static/media/42-line-bible.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/forkOwner/repo/contents/static/media/42-line-bible.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/41c8d12f9ca5864beb827c381fbeff935209d5fb\",\n \"html\": \"https://github.com/forkOwner/repo/blob/master/static/media/42-line-bible.jpg\"\n }\n },\n {\n \"name\": \"gutenberg.jpg\",\n \"path\": \"static/media/gutenberg.jpg\",\n \"sha\": \"04315e355873ea5d358d9c371c39a6845c1ae4ae\",\n \"size\": 155002,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/contents/static/media/gutenberg.jpg?ref=master\",\n \"html_url\": \"https://github.com/forkOwner/repo/blob/master/static/media/gutenberg.jpg\",\n \"git_url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/04315e355873ea5d358d9c371c39a6845c1ae4ae\",\n \"download_url\": \"https://raw.githubusercontent.com/forkOwner/repo/master/static/media/gutenberg.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/forkOwner/repo/contents/static/media/gutenberg.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/04315e355873ea5d358d9c371c39a6845c1ae4ae\",\n \"html\": \"https://github.com/forkOwner/repo/blob/master/static/media/gutenberg.jpg\"\n }\n },\n {\n \"name\": \"image-0.jpg\",\n \"path\": \"static/media/image-0.jpg\",\n \"sha\": \"b70a1b64fd4fa9635823231a0ba92c6dc9393f16\",\n \"size\": 660287,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/contents/static/media/image-0.jpg?ref=master\",\n \"html_url\": \"https://github.com/forkOwner/repo/blob/master/static/media/image-0.jpg\",\n \"git_url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/b70a1b64fd4fa9635823231a0ba92c6dc9393f16\",\n \"download_url\": \"https://raw.githubusercontent.com/forkOwner/repo/master/static/media/image-0.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/forkOwner/repo/contents/static/media/image-0.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/b70a1b64fd4fa9635823231a0ba92c6dc9393f16\",\n \"html\": \"https://github.com/forkOwner/repo/blob/master/static/media/image-0.jpg\"\n }\n },\n {\n \"name\": \"image-1.jpg\",\n \"path\": \"static/media/image-1.jpg\",\n \"sha\": \"05eedae372b829c62501ac751b2d42dcc432541b\",\n \"size\": 392411,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/contents/static/media/image-1.jpg?ref=master\",\n \"html_url\": \"https://github.com/forkOwner/repo/blob/master/static/media/image-1.jpg\",\n \"git_url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/05eedae372b829c62501ac751b2d42dcc432541b\",\n \"download_url\": \"https://raw.githubusercontent.com/forkOwner/repo/master/static/media/image-1.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/forkOwner/repo/contents/static/media/image-1.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/05eedae372b829c62501ac751b2d42dcc432541b\",\n \"html\": \"https://github.com/forkOwner/repo/blob/master/static/media/image-1.jpg\"\n }\n },\n {\n \"name\": \"image-2.jpg\",\n \"path\": \"static/media/image-2.jpg\",\n \"sha\": \"53845ed35faf8939bea242bb85eda7c324b1be0b\",\n \"size\": 99147,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/contents/static/media/image-2.jpg?ref=master\",\n \"html_url\": \"https://github.com/forkOwner/repo/blob/master/static/media/image-2.jpg\",\n \"git_url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/53845ed35faf8939bea242bb85eda7c324b1be0b\",\n \"download_url\": \"https://raw.githubusercontent.com/forkOwner/repo/master/static/media/image-2.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/forkOwner/repo/contents/static/media/image-2.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/53845ed35faf8939bea242bb85eda7c324b1be0b\",\n \"html\": \"https://github.com/forkOwner/repo/blob/master/static/media/image-2.jpg\"\n }\n },\n {\n \"name\": \"image-3.jpg\",\n \"path\": \"static/media/image-3.jpg\",\n \"sha\": \"8b2339d97069e826fae1f156212e40ae458454e3\",\n \"size\": 358022,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/contents/static/media/image-3.jpg?ref=master\",\n \"html_url\": \"https://github.com/forkOwner/repo/blob/master/static/media/image-3.jpg\",\n \"git_url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/8b2339d97069e826fae1f156212e40ae458454e3\",\n \"download_url\": \"https://raw.githubusercontent.com/forkOwner/repo/master/static/media/image-3.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/forkOwner/repo/contents/static/media/image-3.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/8b2339d97069e826fae1f156212e40ae458454e3\",\n \"html\": \"https://github.com/forkOwner/repo/blob/master/static/media/image-3.jpg\"\n }\n },\n {\n \"name\": \"image-4.jpg\",\n \"path\": \"static/media/image-4.jpg\",\n \"sha\": \"a8f6f21253a67a4284b5a953b2fe633d44152ecd\",\n \"size\": 114837,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/contents/static/media/image-4.jpg?ref=master\",\n \"html_url\": \"https://github.com/forkOwner/repo/blob/master/static/media/image-4.jpg\",\n \"git_url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/a8f6f21253a67a4284b5a953b2fe633d44152ecd\",\n \"download_url\": \"https://raw.githubusercontent.com/forkOwner/repo/master/static/media/image-4.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/forkOwner/repo/contents/static/media/image-4.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/a8f6f21253a67a4284b5a953b2fe633d44152ecd\",\n \"html\": \"https://github.com/forkOwner/repo/blob/master/static/media/image-4.jpg\"\n }\n },\n {\n \"name\": \"movable-type.jpg\",\n \"path\": \"static/media/movable-type.jpg\",\n \"sha\": \"57b4e925ea00bd8e195cf4418eb6eb2995ea5f10\",\n \"size\": 559028,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/contents/static/media/movable-type.jpg?ref=master\",\n \"html_url\": \"https://github.com/forkOwner/repo/blob/master/static/media/movable-type.jpg\",\n \"git_url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/57b4e925ea00bd8e195cf4418eb6eb2995ea5f10\",\n \"download_url\": \"https://raw.githubusercontent.com/forkOwner/repo/master/static/media/movable-type.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/forkOwner/repo/contents/static/media/movable-type.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/57b4e925ea00bd8e195cf4418eb6eb2995ea5f10\",\n \"html\": \"https://github.com/forkOwner/repo/blob/master/static/media/movable-type.jpg\"\n }\n },\n {\n \"name\": \"printing-press.jpg\",\n \"path\": \"static/media/printing-press.jpg\",\n \"sha\": \"d27f56c9437d9becd2f56cc627c9322c2f1f61f6\",\n \"size\": 279283,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/contents/static/media/printing-press.jpg?ref=master\",\n \"html_url\": \"https://github.com/forkOwner/repo/blob/master/static/media/printing-press.jpg\",\n \"git_url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/d27f56c9437d9becd2f56cc627c9322c2f1f61f6\",\n \"download_url\": \"https://raw.githubusercontent.com/forkOwner/repo/master/static/media/printing-press.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/forkOwner/repo/contents/static/media/printing-press.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/d27f56c9437d9becd2f56cc627c9322c2f1f61f6\",\n \"html\": \"https://github.com/forkOwner/repo/blob/master/static/media/printing-press.jpg\"\n }\n },\n {\n \"name\": \"type-through-time.jpg\",\n \"path\": \"static/media/type-through-time.jpg\",\n \"sha\": \"3f08366a805c51a60ec5056010f22de4ba08abaa\",\n \"size\": 117689,\n \"url\": \"https://api.github.com/repos/forkOwner/repo/contents/static/media/type-through-time.jpg?ref=master\",\n \"html_url\": \"https://github.com/forkOwner/repo/blob/master/static/media/type-through-time.jpg\",\n \"git_url\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/3f08366a805c51a60ec5056010f22de4ba08abaa\",\n \"download_url\": \"https://raw.githubusercontent.com/forkOwner/repo/master/static/media/type-through-time.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/forkOwner/repo/contents/static/media/type-through-time.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/forkOwner/repo/git/blobs/3f08366a805c51a60ec5056010f22de4ba08abaa\",\n \"html\": \"https://github.com/forkOwner/repo/blob/master/static/media/type-through-time.jpg\"\n }\n }\n]\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/forkOwner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043?ts=0", + "headers": { + "Date": "Tue, 10 Sep 2019 13:56:33 GMT", + "Content-Type": "text/plain; charset=iso-8859-1", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4802", + "X-RateLimit-Reset": "1568127381", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"ea72b2ba12e74f7d20ccab737e3d3698\"", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BC0:1510D:473DC9:575E3A:5D77AB90", + "content-length": "1707", + "connection": "keep-alive" + }, + "response": "---\ntitle: Perfecting the Art of Perfection\ndate: \"2016-09-01T23:46:37.121Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Design Inspiration\"\ntags:\n - \"Handwriting\"\n - \"Learning to write\"\ndescription: \"Quisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\"\ncanonical: ''\n---\n\nQuisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\n\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-2.jpg)\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. \n\nPraesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/forkOwner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5?ts=0", + "headers": { + "Date": "Tue, 10 Sep 2019 13:56:33 GMT", + "Content-Type": "text/plain; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4801", + "X-RateLimit-Reset": "1568127381", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"fd57f3a860149dad96a596e31398a809\"", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BBE:1510E:ACDBD3:D2A2C0:5D77AB90", + "content-length": "2786", + "connection": "keep-alive" + }, + "response": "---\ntitle: \"A Brief History of Typography\"\ndate: \"2016-02-02T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Design Inspiration\"\ntags:\n - \"Linotype\"\n - \"Monotype\"\n - \"History of typography\"\n - \"Helvetica\"\ndescription: \"Morbi in sem quis dui placerat ornare. Pellentesque odio nisi, euismod in, pharetra a, ultricies in, diam. Sed arcu. Cras consequat.\"\ncanonical: ''\n---\n\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\n\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-0.jpg)\n\n## Header Level 2\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \n\n
\n\t
\n\t\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\n\t\t
\n\t\t\t— Aliquam tincidunt mauris eu risus.\n\t\t
\n\t
\n
\n\n### Header Level 3\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\n\n```css\n#header h1 a {\n display: block;\n width: 300px;\n height: 80px;\n}\n```\n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/forkOwner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044?ts=0", + "headers": { + "Date": "Tue, 10 Sep 2019 13:56:33 GMT", + "Content-Type": "text/plain; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4800", + "X-RateLimit-Reset": "1568127381", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"3caef061a429c3338cb85faf62eacb0d\"", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BC2:B4D7:1A8222:2068DD:5D77AB90", + "content-length": "16071", + "connection": "keep-alive" + }, + "response": "---\ntitle: \"Johannes Gutenberg: The Birth of Movable Type\"\ndate: \"2017-08-18T22:12:03.284Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Typography\"\ntags:\n - \"Open source\"\n - \"Gatsby\"\n - \"Typography\"\ndescription: \"German inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\"\ncanonical: ''\n---\n\nGerman inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\n\n**Johannes Gensfleisch zur Laden zum Gutenberg** (c. 1398 – 1468) was a German blacksmith, goldsmith, printer, and publisher who introduced printing to Europe. His invention of mechanical movable type printing started the Printing Revolution and is widely regarded as the most important event of the modern period. It played a key role in the development of the Renaissance, Reformation, the Age of Enlightenment, and the Scientific revolution and laid the material basis for the modern knowledge-based economy and the spread of learning to the masses.\n\n
\n\t\"Gutenberg\"\n\t
Johannes Gutenberg
\n
\n\nWith his invention of the printing press, Gutenberg was the first European to use movable type printing, in around 1439. Among his many contributions to printing are: the invention of a process for mass-producing movable type; the use of oil-based ink; and the use of a wooden printing press similar to the agricultural screw presses of the period. His truly epochal invention was the combination of these elements into a practical system that allowed the mass production of printed books and was economically viable for printers and readers alike. Gutenberg's method for making type is traditionally considered to have included a type metal alloy and a hand mould for casting type. The alloy was a mixture of lead, tin, and antimony that melted at a relatively low temperature for faster and more economical casting, cast well, and created a durable type.\n\nIn Renaissance Europe, the arrival of mechanical movable type printing introduced the era of mass communication which permanently altered the structure of society. The relatively unrestricted circulation of information — including revolutionary ideas — transcended borders, captured the masses in the Reformation and threatened the power of political and religious authorities; the sharp increase in literacy broke the monopoly of the literate elite on education and learning and bolstered the emerging middle class. Across Europe, the increasing cultural self-awareness of its people led to the rise of proto-nationalism, accelerated by the flowering of the European vernacular languages to the detriment of Latin's status as lingua franca. In the 19th century, the replacement of the hand-operated Gutenberg-style press by steam-powered rotary presses allowed printing on an industrial scale, while Western-style printing was adopted all over the world, becoming practically the sole medium for modern bulk printing.\n\nThe use of movable type was a marked improvement on the handwritten manuscript, which was the existing method of book production in Europe, and upon woodblock printing, and revolutionized European book-making. Gutenberg's printing technology spread rapidly throughout Europe and later the world.\n\nHis major work, the Gutenberg Bible (also known as the 42-line Bible), has been acclaimed for its high aesthetic and technical quality.\n\n## Printing Press\n\nAround 1439, Gutenberg was involved in a financial misadventure making polished metal mirrors (which were believed to capture holy light from religious relics) for sale to pilgrims to Aachen: in 1439 the city was planning to exhibit its collection of relics from Emperor Charlemagne but the event was delayed by one year due to a severe flood and the capital already spent could not be repaid. When the question of satisfying the investors came up, Gutenberg is said to have promised to share a “secret”. It has been widely speculated that this secret may have been the idea of printing with movable type. Also around 1439–1440, the Dutch Laurens Janszoon Coster came up with the idea of printing. Legend has it that the idea came to him “like a ray of light”.\n\n
\n\t\"Early\n\t
Early wooden printing press as depicted in 1568.
\n
\n\nUntil at least 1444 he lived in Strasbourg, most likely in the St. Arbogast parish. It was in Strasbourg in 1440 that Gutenberg is said to have perfected and unveiled the secret of printing based on his research, mysteriously entitled Kunst und Aventur (art and enterprise). It is not clear what work he was engaged in, or whether some early trials with printing from movable type may have been conducted there. After this, there is a gap of four years in the record. In 1448, he was back in Mainz, where he took out a loan from his brother-in-law Arnold Gelthus, quite possibly for a printing press or related paraphernalia. By this date, Gutenberg may have been familiar with intaglio printing; it is claimed that he had worked on copper engravings with an artist known as the Master of Playing Cards.\n\nBy 1450, the press was in operation, and a German poem had been printed, possibly the first item to be printed there. Gutenberg was able to convince the wealthy moneylender Johann Fust for a loan of 800 guilders. Peter Schöffer, who became Fust’s son-in-law, also joined the enterprise. Schöffer had worked as a scribe in Paris and is believed to have designed some of the first typefaces.\n\n
\n\t
\n\t\t

All that has been written to me about that marvelous man seen at Frankfurt is true. I have not seen complete Bibles but only a number of quires of various books of the Bible. The script was very neat and legible, not at all difficult to follow—your grace would be able to read it without effort, and indeed without glasses.

\n\t\t
\n\t\t\t—Future pope Pius II in a letter to Cardinal Carvajal, March 1455\n\t\t
\n\t
\n
\n\nGutenberg's workshop was set up at Hof Humbrecht, a property belonging to a distant relative. It is not clear when Gutenberg conceived the Bible project, but for this he borrowed another 800 guilders from Fust, and work commenced in 1452. At the same time, the press was also printing other, more lucrative texts (possibly Latin grammars). There is also some speculation that there may have been two presses, one for the pedestrian texts, and one for the Bible. One of the profit-making enterprises of the new press was the printing of thousands of indulgences for the church, documented from 1454–55.\n\nIn 1455 Gutenberg completed his 42-line Bible, known as the Gutenberg Bible. About 180 copies were printed, most on paper and some on vellum.\n\n## Court Case\n\nSome time in 1456, there was a dispute between Gutenberg and Fust, and Fust demanded his money back, accusing Gutenberg of misusing the funds. Meanwhile the expenses of the Bible project had proliferated, and Gutenberg's debt now exceeded 20,000 guilders. Fust sued at the archbishop's court. A November 1455 legal document records that there was a partnership for a \"project of the books,\" the funds for which Gutenberg had used for other purposes, according to Fust. The court decided in favor of Fust, giving him control over the Bible printing workshop and half of all printed Bibles.\n\nThus Gutenberg was effectively bankrupt, but it appears he retained (or re-started) a small printing shop, and participated in the printing of a Bible in the town of Bamberg around 1459, for which he seems at least to have supplied the type. But since his printed books never carry his name or a date, it is difficult to be certain, and there is consequently a considerable scholarly debate on this subject. It is also possible that the large Catholicon dictionary, 300 copies of 754 pages, printed in Mainz in 1460, may have been executed in his workshop.\n\nMeanwhile, the Fust–Schöffer shop was the first in Europe to bring out a book with the printer's name and date, the Mainz Psalter of August 1457, and while proudly proclaiming the mechanical process by which it had been produced, it made no mention of Gutenberg.\n\n## Later Life\n\nIn 1462, during a conflict between two archbishops, Mainz was sacked by archbishop Adolph von Nassau, and Gutenberg was exiled. An old man by now, he moved to Eltville where he may have initiated and supervised a new printing press belonging to the brothers Bechtermünze.\n\nIn January 1465, Gutenberg's achievements were recognized and he was given the title Hofmann (gentleman of the court) by von Nassau. This honor included a stipend, an annual court outfit, as well as 2,180 litres of grain and 2,000 litres of wine tax-free. It is believed he may have moved back to Mainz around this time, but this is not certain.\n\n***\n\nGutenberg died in 1468 and was buried in the Franciscan church at Mainz, his contributions largely unknown. This church and the cemetery were later destroyed, and Gutenberg's grave is now lost.\n\nIn 1504, he was mentioned as the inventor of typography in a book by Professor Ivo Wittig. It was not until 1567 that the first portrait of Gutenberg, almost certainly an imaginary reconstruction, appeared in Heinrich Pantaleon's biography of famous Germans.\n\n## Printing Method With Movable Type\n\nGutenberg's early printing process, and what tests he may have made with movable type, are not known in great detail. His later Bibles were printed in such a way as to have required large quantities of type, some estimates suggesting as many as 100,000 individual sorts. Setting each page would take, perhaps, half a day, and considering all the work in loading the press, inking the type, pulling the impressions, hanging up the sheets, distributing the type, etc., it is thought that the Gutenberg–Fust shop might have employed as many as 25 craftsmen.\n\n![Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5](/media/movable-type.jpg)\n\n*Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5*\n\nGutenberg's technique of making movable type remains unclear. In the following decades, punches and copper matrices became standardized in the rapidly disseminating printing presses across Europe. Whether Gutenberg used this sophisticated technique or a somewhat primitive version has been the subject of considerable debate.\n\nIn the standard process of making type, a hard metal punch (made by punchcutting, with the letter carved back to front) is hammered into a softer copper bar, creating a matrix. This is then placed into a hand-held mould and a piece of type, or \"sort\", is cast by filling the mould with molten type-metal; this cools almost at once, and the resulting piece of type can be removed from the mould. The matrix can be reused to create hundreds, or thousands, of identical sorts so that the same character appearing anywhere within the book will appear very uniform, giving rise, over time, to the development of distinct styles of typefaces or fonts. After casting, the sorts are arranged into type-cases, and used to make up pages which are inked and printed, a procedure which can be repeated hundreds, or thousands, of times. The sorts can be reused in any combination, earning the process the name of “movable type”.\n\nThe invention of the making of types with punch, matrix and mold has been widely attributed to Gutenberg. However, recent evidence suggests that Gutenberg's process was somewhat different. If he used the punch and matrix approach, all his letters should have been nearly identical, with some variations due to miscasting and inking. However, the type used in Gutenberg's earliest work shows other variations.\n\n
\n\t
\n\t\t

It is a press, certainly, but a press from which shall flow in inexhaustible streams… Through it, god will spread his word.

\n\t\t
\n\t\t\t—Johannes Gutenberg\n\t\t
\n\t
\n
\n\nIn 2001, the physicist Blaise Agüera y Arcas and Princeton librarian Paul Needham, used digital scans of a Papal bull in the Scheide Library, Princeton, to carefully compare the same letters (types) appearing in different parts of the printed text. The irregularities in Gutenberg's type, particularly in simple characters such as the hyphen, suggested that the variations could not have come from either ink smear or from wear and damage on the pieces of metal on the types themselves. While some identical types are clearly used on other pages, other variations, subjected to detailed image analysis, suggested that they could not have been produced from the same matrix. Transmitted light pictures of the page also appeared to reveal substructures in the type that could not arise from traditional punchcutting techniques. They hypothesized that the method may have involved impressing simple shapes to create alphabets in “cuneiform” style in a matrix made of some soft material, perhaps sand. Casting the type would destroy the mould, and the matrix would need to be recreated to make each additional sort. This could explain the variations in the type, as well as the substructures observed in the printed images.\n\nThus, they feel that “the decisive factor for the birth of typography”, the use of reusable moulds for casting type, might have been a more progressive process than was previously thought. They suggest that the additional step of using the punch to create a mould that could be reused many times was not taken until twenty years later, in the 1470s. Others have not accepted some or all of their suggestions, and have interpreted the evidence in other ways, and the truth of the matter remains very uncertain.\n\nA 1568 history by Hadrianus Junius of Holland claims that the basic idea of the movable type came to Gutenberg from Laurens Janszoon Coster via Fust, who was apprenticed to Coster in the 1430s and may have brought some of his equipment from Haarlem to Mainz. While Coster appears to have experimented with moulds and castable metal type, there is no evidence that he had actually printed anything with this technology. He was an inventor and a goldsmith. However, there is one indirect supporter of the claim that Coster might be the inventor. The author of the Cologne Chronicle of 1499 quotes Ulrich Zell, the first printer of Cologne, that printing was performed in Mainz in 1450, but that some type of printing of lower quality had previously occurred in the Netherlands. However, the chronicle does not mention the name of Coster, while it actually credits Gutenberg as the \"first inventor of printing\" in the very same passage (fol. 312). The first securely dated book by Dutch printers is from 1471, and the Coster connection is today regarded as a mere legend.\n\nThe 19th century printer and typefounder Fournier Le Jeune suggested that Gutenberg might not have been using type cast with a reusable matrix, but possibly wooden types that were carved individually. A similar suggestion was made by Nash in 2004. This remains possible, albeit entirely unproven.\n\nIt has also been questioned whether Gutenberg used movable types at all. In 2004, Italian professor Bruno Fabbiani claimed that examination of the 42-line Bible revealed an overlapping of letters, suggesting that Gutenberg did not in fact use movable type (individual cast characters) but rather used whole plates made from a system somewhat like a modern typewriter, whereby the letters were stamped successively into the plate and then printed. However, most specialists regard the occasional overlapping of type as caused by paper movement over pieces of type of slightly unequal height.", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/forkOwner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9?ts=0", + "headers": { + "Date": "Tue, 10 Sep 2019 13:56:33 GMT", + "Content-Type": "text/plain; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4799", + "X-RateLimit-Reset": "1568127381", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"88b7f6d3ffbd2b089766cabe7b8bad3b\"", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BC4:9D1F:A35DC9:C75BA3:5D77AB90", + "content-length": "2565", + "connection": "keep-alive" + }, + "response": "---\ntitle: The Origins of Social Stationery Lettering\ndate: \"2016-12-01T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Design Culture\"\ndescription: \"Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante.\"\ncanonical: ''\n---\n\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\n\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-3.jpg)\n\n## Header Level 2\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \n\n
\n\t
\n\t\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\n\t\t
\n\t\t\t— Aliquam tincidunt mauris eu risus.\n\t\t
\n\t
\n
\n\n### Header Level 3\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\n\n```css\n#header h1 a {\n display: block;\n width: 300px;\n height: 80px;\n}\n```\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/forkOwner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774?ts=0", + "headers": { + "Date": "Tue, 10 Sep 2019 13:56:33 GMT", + "Content-Type": "text/plain; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4798", + "X-RateLimit-Reset": "1568127381", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"3cd1cb72a7e61c4921ca6a2031ad36a4\"", + "X-OAuth-Scopes": "delete_repo, public_repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BC9:B4DC:AC3CD5:D187D4:5D77AB91", + "content-length": "7465", + "connection": "keep-alive" + }, + "response": "---\ntitle: Humane Typography in the Digital Age\ndate: \"2017-08-19T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Typography\"\ntags:\n - \"Design\"\n - \"Typography\"\n - \"Web Development\"\ndescription: \"An Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\"\ncanonical: ''\n---\n\n- [The first transition](#the-first-transition)\n- [The digital age](#the-digital-age)\n- [Loss of humanity through transitions](#loss-of-humanity-through-transitions)\n- [Chasing perfection](#chasing-perfection)\n\nAn Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\n\nThe typography of this industrial age was no longer handcrafted. Mass production and profit became more important. Quantity mattered more than the quality. The books and printed works in general lost a part of its humanity. The typefaces were not produced by craftsmen anymore. It was the machines printing and tying the books together now. The craftsmen had to let go of their craft and became a cog in the process. An extension of the industrial machine.\n\nBut the victory of the industrialism didn’t mean that the craftsmen were completely extinct. The two worlds continued to coexist independently. Each recognising the good in the other — the power of industrialism and the humanity of craftsmanship. This was the second transition that would strip typography of a part of its humanity. We have to go 500 years back in time to meet the first one.\n\n## The first transition\n\nA similar conflict emerged after the invention of the first printing press in Europe. Johannes Gutenberg invented movable type and used it to produce different compositions. His workshop could print up to 240 impressions per hour. Until then, the books were being copied by hand. All the books were handwritten and decorated with hand drawn ornaments and figures. A process of copying a book was long but each book, even a copy, was a work of art.\n\nThe first printed books were, at first, perceived as inferior to the handwritten ones. They were smaller and cheaper to produce. Movable type provided the printers with flexibility that allowed them to print books in languages other than Latin. Gill describes the transition to industrialism as something that people needed and wanted. Something similar happened after the first printed books emerged. People wanted books in a language they understood and they wanted books they could take with them. They were hungry for knowledge and printed books satisfied this hunger.\n\n![42-line-bible.jpg](/media/42-line-bible.jpg)\n\n*The 42–Line Bible, printed by Gutenberg.*\n\nBut, through this transition, the book lost a large part of its humanity. The machine took over most of the process but craftsmanship was still a part of it. The typefaces were cut manually by the first punch cutters. The paper was made by hand. The illustrations and ornaments were still being hand drawn. These were the remains of the craftsmanship that went almost extinct in the times of Eric Gill.\n\n## The digital age\n\nThe first transition took away a large part of humanity from written communication. Industrialisation, the second transition described by Eric Gill, took away most of what was left. But it’s the third transition that stripped it naked. Typefaces are faceless these days. They’re just fonts on our computers. Hardly anyone knows their stories. Hardly anyone cares. Flicking through thousands of typefaces and finding the “right one” is a matter of minutes.\n\n> In the new computer age the proliferation of typefaces and type manipulations represents a new level of visual pollution threatening our culture. Out of thousands of typefaces, all we need are a few basic ones, and trash the rest.\n>\n— Massimo Vignelli\n\nTypography is not about typefaces. It’s not about what looks best, it’s about what feels right. What communicates the message best. Typography, in its essence, is about the message. “Typographical design should perform optically what the speaker creates through voice and gesture of his thoughts.”, as El Lissitzky, a famous Russian typographer, put it.\n\n## Loss of humanity through transitions\n\nEach transition took away a part of humanity from written language. Handwritten books being the most humane form and the digital typefaces being the least. Overuse of Helvetica is a good example. Messages are being told in a typeface just because it’s a safe option. It’s always there. Everyone knows it but yet, nobody knows it. Stop someone on the street and ask him what Helvetica is? Ask a designer the same question. Ask him where it came from, when, why and who designed it. Most of them will fail to answer these questions. Most of them used it in their precious projects but they still don’t spot it in the street.\n\n
\n\t
\n\t\t

Knowledge of the quality of a typeface is of the greatest importance for the functional, aesthetic and psychological effect.

\n\t\t
\n\t\t\t— Josef Mueller-Brockmann\n\t\t
\n\t
\n
\n\nTypefaces don’t look handmade these days. And that’s all right. They don’t have to. Industrialism took that away from them and we’re fine with it. We’ve traded that part of humanity for a process that produces more books that are easier to read. That can’t be bad. And it isn’t.\n\n> Humane typography will often be comparatively rough and even uncouth; but while a certain uncouthness does not seriously matter in humane works, uncouthness has no excuse whatever in the productions of the machine.\n>\n> — Eric Gill\n\nWe’ve come close to “perfection” in the last five centuries. The letters are crisp and without rough edges. We print our compositions with high–precision printers on a high quality, machine made paper.\n\n![type-through-time.jpg](/media/type-through-time.jpg)\n\n*Type through 5 centuries.*\n\nWe lost a part of ourselves because of this chase after perfection. We forgot about the craftsmanship along the way. And the worst part is that we don’t care. The transition to the digital age made that clear. We choose typefaces like clueless zombies. There’s no meaning in our work. Type sizes, leading, margins… It’s all just a few clicks or lines of code. The message isn’t important anymore. There’s no more “why” behind the “what”.\n\n## Chasing perfection\n\nHuman beings aren’t perfect. Perfection is something that will always elude us. There will always be a small part of humanity in everything we do. No matter how small that part, we should make sure that it transcends the limits of the medium. We have to think about the message first. What typeface should we use and why? Does the typeface match the message and what we want to communicate with it? What will be the leading and why? Will there be more typefaces in our design? On what ground will they be combined? What makes our design unique and why? This is the part of humanity that is left in typography. It might be the last part. Are we really going to give it up?\n\n*Originally published by [Matej Latin](http://matejlatin.co.uk/) on [Medium](https://medium.com/design-notes/humane-typography-in-the-digital-age-9bd5c16199bd?ref=webdesignernews.com#.lygo82z0x).*", + "status": 200 + } +] \ No newline at end of file diff --git a/cypress/fixtures/Github Backend Editorial Workflow - REST API - Open Authoring__successfully loads.json b/cypress/fixtures/Github Backend Editorial Workflow - REST API - Open Authoring__successfully loads.json new file mode 100644 index 00000000..e46f69b0 --- /dev/null +++ b/cypress/fixtures/Github Backend Editorial Workflow - REST API - Open Authoring__successfully loads.json @@ -0,0 +1,359 @@ +[ + { + "method": "GET", + "url": "/user", + "headers": { + "Date": "Tue, 10 Sep 2019 13:53:25 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4635", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"fb606f875be1d23b690ea5f5e26b9fe9\"", + "Last-Modified": "Wed, 28 Aug 2019 04:48:54 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B48:2B24:17C8F08:1CE9EB5:5D77AAD5", + "content-length": "1321", + "connection": "keep-alive" + }, + "response": "{\"login\":\"owner\",\"id\":1,\"avatar_url\":\"https://avatars1.githubusercontent.com/u/7892489?v=4\",\"name\":\"owner\"}", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/collaborators/owner/permission", + "headers": { + "Date": "Tue, 10 Sep 2019 13:53:26 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4634", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"254416b9fc40a4c5acc82d271a9b493b\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B4A:244E7:11A3DCE:1586CDE:5D77AAD5", + "content-length": "1071", + "connection": "keep-alive" + }, + "response": "{\n \"permission\": \"admin\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/user?ts=0", + "headers": { + "Date": "Tue, 10 Sep 2019 13:53:27 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4633", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"fb606f875be1d23b690ea5f5e26b9fe9\"", + "Last-Modified": "Wed, 28 Aug 2019 04:48:54 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B4D:2B19:A9374C:CDF806:5D77AAD6", + "content-length": "1321", + "connection": "keep-alive" + }, + "response": "{\"login\":\"owner\",\"id\":1,\"avatar_url\":\"https://avatars1.githubusercontent.com/u/7892489?v=4\",\"name\":\"owner\"}", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo?ts=0", + "headers": { + "Date": "Tue, 10 Sep 2019 13:53:27 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4632", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"80c6bf469b0558783c6c80640a44e52b\"", + "Last-Modified": "Tue, 10 Sep 2019 13:53:22 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B4E:3ED77:AB824D:CFE437:5D77AAD7", + "content-length": "7296", + "connection": "keep-alive" + }, + "response": "{\n \"id\": 207573159,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NzMxNTk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-10T13:52:54Z\",\n \"updated_at\": \"2019-09-10T13:53:22Z\",\n \"pushed_at\": \"2019-09-10T13:53:18Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\",\n \"permissions\": {\n \"admin\": true,\n \"push\": true,\n \"pull\": true\n },\n \"allow_squash_merge\": true,\n \"allow_merge_commit\": true,\n \"allow_rebase_merge\": true,\n \"network_count\": 0,\n \"subscribers_count\": 1\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/content/posts?ts=0&ref=master", + "headers": { + "Date": "Tue, 10 Sep 2019 13:53:28 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4631", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"c5b7f6d674ba193bb7b4a5fcf4933034e1b7f2b7\"", + "Last-Modified": "Tue, 10 Sep 2019 13:53:22 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B62:3ED82:187E7DD:1DCC422:5D77AAD8", + "content-length": "7422", + "connection": "keep-alive" + }, + "response": "[\n {\n \"name\": \"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"path\": \"content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"sha\": \"6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"size\": 1707,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"html\": \"https://github.com/owner/repo/blob/master/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md\"\n }\n },\n {\n \"name\": \"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"path\": \"content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"sha\": \"d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"size\": 2565,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"html\": \"https://github.com/owner/repo/blob/master/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\"\n }\n },\n {\n \"name\": \"2016-02-02---A-Brief-History-of-Typography.md\",\n \"path\": \"content/posts/2016-02-02---A-Brief-History-of-Typography.md\",\n \"sha\": \"0eea554365f002d0f1572af9a58522d335a794d5\",\n \"size\": 2786,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2016-02-02---A-Brief-History-of-Typography.md?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/content/posts/2016-02-02---A-Brief-History-of-Typography.md\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/content/posts/2016-02-02---A-Brief-History-of-Typography.md\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2016-02-02---A-Brief-History-of-Typography.md?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\",\n \"html\": \"https://github.com/owner/repo/blob/master/content/posts/2016-02-02---A-Brief-History-of-Typography.md\"\n }\n },\n {\n \"name\": \"2017-18-08---The-Birth-of-Movable-Type.md\",\n \"path\": \"content/posts/2017-18-08---The-Birth-of-Movable-Type.md\",\n \"sha\": \"44f78c474d04273185a95821426f75affc9b0044\",\n \"size\": 16071,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2017-18-08---The-Birth-of-Movable-Type.md?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/content/posts/2017-18-08---The-Birth-of-Movable-Type.md\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/content/posts/2017-18-08---The-Birth-of-Movable-Type.md\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2017-18-08---The-Birth-of-Movable-Type.md?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\",\n \"html\": \"https://github.com/owner/repo/blob/master/content/posts/2017-18-08---The-Birth-of-Movable-Type.md\"\n }\n },\n {\n \"name\": \"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"path\": \"content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"sha\": \"a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"size\": 7465,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"html\": \"https://github.com/owner/repo/blob/master/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md\"\n }\n }\n]\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043?ts=0", + "headers": { + "Date": "Tue, 10 Sep 2019 13:53:30 GMT", + "Content-Type": "text/plain; charset=iso-8859-1", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4628", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"b11610ec1fe2f13ce388952c3fdf3423\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B90:3ED7B:1264148:16568E7:5D77AAD9", + "content-length": "1707", + "connection": "keep-alive" + }, + "response": "---\ntitle: Perfecting the Art of Perfection\ndate: \"2016-09-01T23:46:37.121Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Design Inspiration\"\ntags:\n - \"Handwriting\"\n - \"Learning to write\"\ndescription: \"Quisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\"\ncanonical: ''\n---\n\nQuisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\n\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-2.jpg)\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. \n\nPraesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/static/media?ts=0&ref=master", + "headers": { + "Date": "Tue, 10 Sep 2019 13:53:30 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4627", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"c5b7f6d674ba193bb7b4a5fcf4933034e1b7f2b7\"", + "Last-Modified": "Tue, 10 Sep 2019 13:53:22 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B88:3ED82:187E95E:1DCC603:5D77AAD9", + "content-length": "12362", + "connection": "keep-alive" + }, + "response": "[\n {\n \"name\": \"42-line-bible.jpg\",\n \"path\": \"static/media/42-line-bible.jpg\",\n \"sha\": \"41c8d12f9ca5864beb827c381fbeff935209d5fb\",\n \"size\": 671242,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/static/media/42-line-bible.jpg?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/static/media/42-line-bible.jpg\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/41c8d12f9ca5864beb827c381fbeff935209d5fb\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/static/media/42-line-bible.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/static/media/42-line-bible.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/41c8d12f9ca5864beb827c381fbeff935209d5fb\",\n \"html\": \"https://github.com/owner/repo/blob/master/static/media/42-line-bible.jpg\"\n }\n },\n {\n \"name\": \"gutenberg.jpg\",\n \"path\": \"static/media/gutenberg.jpg\",\n \"sha\": \"04315e355873ea5d358d9c371c39a6845c1ae4ae\",\n \"size\": 155002,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/static/media/gutenberg.jpg?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/static/media/gutenberg.jpg\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/04315e355873ea5d358d9c371c39a6845c1ae4ae\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/static/media/gutenberg.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/static/media/gutenberg.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/04315e355873ea5d358d9c371c39a6845c1ae4ae\",\n \"html\": \"https://github.com/owner/repo/blob/master/static/media/gutenberg.jpg\"\n }\n },\n {\n \"name\": \"image-0.jpg\",\n \"path\": \"static/media/image-0.jpg\",\n \"sha\": \"b70a1b64fd4fa9635823231a0ba92c6dc9393f16\",\n \"size\": 660287,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/static/media/image-0.jpg?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/static/media/image-0.jpg\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/b70a1b64fd4fa9635823231a0ba92c6dc9393f16\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/static/media/image-0.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/static/media/image-0.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/b70a1b64fd4fa9635823231a0ba92c6dc9393f16\",\n \"html\": \"https://github.com/owner/repo/blob/master/static/media/image-0.jpg\"\n }\n },\n {\n \"name\": \"image-1.jpg\",\n \"path\": \"static/media/image-1.jpg\",\n \"sha\": \"05eedae372b829c62501ac751b2d42dcc432541b\",\n \"size\": 392411,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/static/media/image-1.jpg?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/static/media/image-1.jpg\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/05eedae372b829c62501ac751b2d42dcc432541b\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/static/media/image-1.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/static/media/image-1.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/05eedae372b829c62501ac751b2d42dcc432541b\",\n \"html\": \"https://github.com/owner/repo/blob/master/static/media/image-1.jpg\"\n }\n },\n {\n \"name\": \"image-2.jpg\",\n \"path\": \"static/media/image-2.jpg\",\n \"sha\": \"53845ed35faf8939bea242bb85eda7c324b1be0b\",\n \"size\": 99147,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/static/media/image-2.jpg?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/static/media/image-2.jpg\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/53845ed35faf8939bea242bb85eda7c324b1be0b\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/static/media/image-2.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/static/media/image-2.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/53845ed35faf8939bea242bb85eda7c324b1be0b\",\n \"html\": \"https://github.com/owner/repo/blob/master/static/media/image-2.jpg\"\n }\n },\n {\n \"name\": \"image-3.jpg\",\n \"path\": \"static/media/image-3.jpg\",\n \"sha\": \"8b2339d97069e826fae1f156212e40ae458454e3\",\n \"size\": 358022,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/static/media/image-3.jpg?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/static/media/image-3.jpg\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/8b2339d97069e826fae1f156212e40ae458454e3\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/static/media/image-3.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/static/media/image-3.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/8b2339d97069e826fae1f156212e40ae458454e3\",\n \"html\": \"https://github.com/owner/repo/blob/master/static/media/image-3.jpg\"\n }\n },\n {\n \"name\": \"image-4.jpg\",\n \"path\": \"static/media/image-4.jpg\",\n \"sha\": \"a8f6f21253a67a4284b5a953b2fe633d44152ecd\",\n \"size\": 114837,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/static/media/image-4.jpg?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/static/media/image-4.jpg\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/a8f6f21253a67a4284b5a953b2fe633d44152ecd\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/static/media/image-4.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/static/media/image-4.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/a8f6f21253a67a4284b5a953b2fe633d44152ecd\",\n \"html\": \"https://github.com/owner/repo/blob/master/static/media/image-4.jpg\"\n }\n },\n {\n \"name\": \"movable-type.jpg\",\n \"path\": \"static/media/movable-type.jpg\",\n \"sha\": \"57b4e925ea00bd8e195cf4418eb6eb2995ea5f10\",\n \"size\": 559028,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/static/media/movable-type.jpg?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/static/media/movable-type.jpg\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/57b4e925ea00bd8e195cf4418eb6eb2995ea5f10\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/static/media/movable-type.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/static/media/movable-type.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/57b4e925ea00bd8e195cf4418eb6eb2995ea5f10\",\n \"html\": \"https://github.com/owner/repo/blob/master/static/media/movable-type.jpg\"\n }\n },\n {\n \"name\": \"printing-press.jpg\",\n \"path\": \"static/media/printing-press.jpg\",\n \"sha\": \"d27f56c9437d9becd2f56cc627c9322c2f1f61f6\",\n \"size\": 279283,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/static/media/printing-press.jpg?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/static/media/printing-press.jpg\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/d27f56c9437d9becd2f56cc627c9322c2f1f61f6\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/static/media/printing-press.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/static/media/printing-press.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/d27f56c9437d9becd2f56cc627c9322c2f1f61f6\",\n \"html\": \"https://github.com/owner/repo/blob/master/static/media/printing-press.jpg\"\n }\n },\n {\n \"name\": \"type-through-time.jpg\",\n \"path\": \"static/media/type-through-time.jpg\",\n \"sha\": \"3f08366a805c51a60ec5056010f22de4ba08abaa\",\n \"size\": 117689,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/static/media/type-through-time.jpg?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/static/media/type-through-time.jpg\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/3f08366a805c51a60ec5056010f22de4ba08abaa\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/static/media/type-through-time.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/static/media/type-through-time.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/3f08366a805c51a60ec5056010f22de4ba08abaa\",\n \"html\": \"https://github.com/owner/repo/blob/master/static/media/type-through-time.jpg\"\n }\n }\n]\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774?ts=0", + "headers": { + "Date": "Tue, 10 Sep 2019 13:53:32 GMT", + "Content-Type": "text/plain; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4626", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"d2bb4e67afce9cad20457cc0c72b8a41\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B92:2B24:17C9901:1CEAB24:5D77AADC", + "content-length": "7465", + "connection": "keep-alive" + }, + "response": "---\ntitle: Humane Typography in the Digital Age\ndate: \"2017-08-19T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Typography\"\ntags:\n - \"Design\"\n - \"Typography\"\n - \"Web Development\"\ndescription: \"An Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\"\ncanonical: ''\n---\n\n- [The first transition](#the-first-transition)\n- [The digital age](#the-digital-age)\n- [Loss of humanity through transitions](#loss-of-humanity-through-transitions)\n- [Chasing perfection](#chasing-perfection)\n\nAn Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\n\nThe typography of this industrial age was no longer handcrafted. Mass production and profit became more important. Quantity mattered more than the quality. The books and printed works in general lost a part of its humanity. The typefaces were not produced by craftsmen anymore. It was the machines printing and tying the books together now. The craftsmen had to let go of their craft and became a cog in the process. An extension of the industrial machine.\n\nBut the victory of the industrialism didn’t mean that the craftsmen were completely extinct. The two worlds continued to coexist independently. Each recognising the good in the other — the power of industrialism and the humanity of craftsmanship. This was the second transition that would strip typography of a part of its humanity. We have to go 500 years back in time to meet the first one.\n\n## The first transition\n\nA similar conflict emerged after the invention of the first printing press in Europe. Johannes Gutenberg invented movable type and used it to produce different compositions. His workshop could print up to 240 impressions per hour. Until then, the books were being copied by hand. All the books were handwritten and decorated with hand drawn ornaments and figures. A process of copying a book was long but each book, even a copy, was a work of art.\n\nThe first printed books were, at first, perceived as inferior to the handwritten ones. They were smaller and cheaper to produce. Movable type provided the printers with flexibility that allowed them to print books in languages other than Latin. Gill describes the transition to industrialism as something that people needed and wanted. Something similar happened after the first printed books emerged. People wanted books in a language they understood and they wanted books they could take with them. They were hungry for knowledge and printed books satisfied this hunger.\n\n![42-line-bible.jpg](/media/42-line-bible.jpg)\n\n*The 42–Line Bible, printed by Gutenberg.*\n\nBut, through this transition, the book lost a large part of its humanity. The machine took over most of the process but craftsmanship was still a part of it. The typefaces were cut manually by the first punch cutters. The paper was made by hand. The illustrations and ornaments were still being hand drawn. These were the remains of the craftsmanship that went almost extinct in the times of Eric Gill.\n\n## The digital age\n\nThe first transition took away a large part of humanity from written communication. Industrialisation, the second transition described by Eric Gill, took away most of what was left. But it’s the third transition that stripped it naked. Typefaces are faceless these days. They’re just fonts on our computers. Hardly anyone knows their stories. Hardly anyone cares. Flicking through thousands of typefaces and finding the “right one” is a matter of minutes.\n\n> In the new computer age the proliferation of typefaces and type manipulations represents a new level of visual pollution threatening our culture. Out of thousands of typefaces, all we need are a few basic ones, and trash the rest.\n>\n— Massimo Vignelli\n\nTypography is not about typefaces. It’s not about what looks best, it’s about what feels right. What communicates the message best. Typography, in its essence, is about the message. “Typographical design should perform optically what the speaker creates through voice and gesture of his thoughts.”, as El Lissitzky, a famous Russian typographer, put it.\n\n## Loss of humanity through transitions\n\nEach transition took away a part of humanity from written language. Handwritten books being the most humane form and the digital typefaces being the least. Overuse of Helvetica is a good example. Messages are being told in a typeface just because it’s a safe option. It’s always there. Everyone knows it but yet, nobody knows it. Stop someone on the street and ask him what Helvetica is? Ask a designer the same question. Ask him where it came from, when, why and who designed it. Most of them will fail to answer these questions. Most of them used it in their precious projects but they still don’t spot it in the street.\n\n
\n\t
\n\t\t

Knowledge of the quality of a typeface is of the greatest importance for the functional, aesthetic and psychological effect.

\n\t\t
\n\t\t\t— Josef Mueller-Brockmann\n\t\t
\n\t
\n
\n\nTypefaces don’t look handmade these days. And that’s all right. They don’t have to. Industrialism took that away from them and we’re fine with it. We’ve traded that part of humanity for a process that produces more books that are easier to read. That can’t be bad. And it isn’t.\n\n> Humane typography will often be comparatively rough and even uncouth; but while a certain uncouthness does not seriously matter in humane works, uncouthness has no excuse whatever in the productions of the machine.\n>\n> — Eric Gill\n\nWe’ve come close to “perfection” in the last five centuries. The letters are crisp and without rough edges. We print our compositions with high–precision printers on a high quality, machine made paper.\n\n![type-through-time.jpg](/media/type-through-time.jpg)\n\n*Type through 5 centuries.*\n\nWe lost a part of ourselves because of this chase after perfection. We forgot about the craftsmanship along the way. And the worst part is that we don’t care. The transition to the digital age made that clear. We choose typefaces like clueless zombies. There’s no meaning in our work. Type sizes, leading, margins… It’s all just a few clicks or lines of code. The message isn’t important anymore. There’s no more “why” behind the “what”.\n\n## Chasing perfection\n\nHuman beings aren’t perfect. Perfection is something that will always elude us. There will always be a small part of humanity in everything we do. No matter how small that part, we should make sure that it transcends the limits of the medium. We have to think about the message first. What typeface should we use and why? Does the typeface match the message and what we want to communicate with it? What will be the leading and why? Will there be more typefaces in our design? On what ground will they be combined? What makes our design unique and why? This is the part of humanity that is left in typography. It might be the last part. Are we really going to give it up?\n\n*Originally published by [Matej Latin](http://matejlatin.co.uk/) on [Medium](https://medium.com/design-notes/humane-typography-in-the-digital-age-9bd5c16199bd?ref=webdesignernews.com#.lygo82z0x).*", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044?ts=0", + "headers": { + "Date": "Tue, 10 Sep 2019 13:53:32 GMT", + "Content-Type": "text/plain; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4625", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"6e2453f34250f47bb0adc4ff2f6887a8\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B94:244E7:11A4491:158754E:5D77AADC", + "content-length": "16071", + "connection": "keep-alive" + }, + "response": "---\ntitle: \"Johannes Gutenberg: The Birth of Movable Type\"\ndate: \"2017-08-18T22:12:03.284Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Typography\"\ntags:\n - \"Open source\"\n - \"Gatsby\"\n - \"Typography\"\ndescription: \"German inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\"\ncanonical: ''\n---\n\nGerman inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\n\n**Johannes Gensfleisch zur Laden zum Gutenberg** (c. 1398 – 1468) was a German blacksmith, goldsmith, printer, and publisher who introduced printing to Europe. His invention of mechanical movable type printing started the Printing Revolution and is widely regarded as the most important event of the modern period. It played a key role in the development of the Renaissance, Reformation, the Age of Enlightenment, and the Scientific revolution and laid the material basis for the modern knowledge-based economy and the spread of learning to the masses.\n\n
\n\t\"Gutenberg\"\n\t
Johannes Gutenberg
\n
\n\nWith his invention of the printing press, Gutenberg was the first European to use movable type printing, in around 1439. Among his many contributions to printing are: the invention of a process for mass-producing movable type; the use of oil-based ink; and the use of a wooden printing press similar to the agricultural screw presses of the period. His truly epochal invention was the combination of these elements into a practical system that allowed the mass production of printed books and was economically viable for printers and readers alike. Gutenberg's method for making type is traditionally considered to have included a type metal alloy and a hand mould for casting type. The alloy was a mixture of lead, tin, and antimony that melted at a relatively low temperature for faster and more economical casting, cast well, and created a durable type.\n\nIn Renaissance Europe, the arrival of mechanical movable type printing introduced the era of mass communication which permanently altered the structure of society. The relatively unrestricted circulation of information — including revolutionary ideas — transcended borders, captured the masses in the Reformation and threatened the power of political and religious authorities; the sharp increase in literacy broke the monopoly of the literate elite on education and learning and bolstered the emerging middle class. Across Europe, the increasing cultural self-awareness of its people led to the rise of proto-nationalism, accelerated by the flowering of the European vernacular languages to the detriment of Latin's status as lingua franca. In the 19th century, the replacement of the hand-operated Gutenberg-style press by steam-powered rotary presses allowed printing on an industrial scale, while Western-style printing was adopted all over the world, becoming practically the sole medium for modern bulk printing.\n\nThe use of movable type was a marked improvement on the handwritten manuscript, which was the existing method of book production in Europe, and upon woodblock printing, and revolutionized European book-making. Gutenberg's printing technology spread rapidly throughout Europe and later the world.\n\nHis major work, the Gutenberg Bible (also known as the 42-line Bible), has been acclaimed for its high aesthetic and technical quality.\n\n## Printing Press\n\nAround 1439, Gutenberg was involved in a financial misadventure making polished metal mirrors (which were believed to capture holy light from religious relics) for sale to pilgrims to Aachen: in 1439 the city was planning to exhibit its collection of relics from Emperor Charlemagne but the event was delayed by one year due to a severe flood and the capital already spent could not be repaid. When the question of satisfying the investors came up, Gutenberg is said to have promised to share a “secret”. It has been widely speculated that this secret may have been the idea of printing with movable type. Also around 1439–1440, the Dutch Laurens Janszoon Coster came up with the idea of printing. Legend has it that the idea came to him “like a ray of light”.\n\n
\n\t\"Early\n\t
Early wooden printing press as depicted in 1568.
\n
\n\nUntil at least 1444 he lived in Strasbourg, most likely in the St. Arbogast parish. It was in Strasbourg in 1440 that Gutenberg is said to have perfected and unveiled the secret of printing based on his research, mysteriously entitled Kunst und Aventur (art and enterprise). It is not clear what work he was engaged in, or whether some early trials with printing from movable type may have been conducted there. After this, there is a gap of four years in the record. In 1448, he was back in Mainz, where he took out a loan from his brother-in-law Arnold Gelthus, quite possibly for a printing press or related paraphernalia. By this date, Gutenberg may have been familiar with intaglio printing; it is claimed that he had worked on copper engravings with an artist known as the Master of Playing Cards.\n\nBy 1450, the press was in operation, and a German poem had been printed, possibly the first item to be printed there. Gutenberg was able to convince the wealthy moneylender Johann Fust for a loan of 800 guilders. Peter Schöffer, who became Fust’s son-in-law, also joined the enterprise. Schöffer had worked as a scribe in Paris and is believed to have designed some of the first typefaces.\n\n
\n\t
\n\t\t

All that has been written to me about that marvelous man seen at Frankfurt is true. I have not seen complete Bibles but only a number of quires of various books of the Bible. The script was very neat and legible, not at all difficult to follow—your grace would be able to read it without effort, and indeed without glasses.

\n\t\t
\n\t\t\t—Future pope Pius II in a letter to Cardinal Carvajal, March 1455\n\t\t
\n\t
\n
\n\nGutenberg's workshop was set up at Hof Humbrecht, a property belonging to a distant relative. It is not clear when Gutenberg conceived the Bible project, but for this he borrowed another 800 guilders from Fust, and work commenced in 1452. At the same time, the press was also printing other, more lucrative texts (possibly Latin grammars). There is also some speculation that there may have been two presses, one for the pedestrian texts, and one for the Bible. One of the profit-making enterprises of the new press was the printing of thousands of indulgences for the church, documented from 1454–55.\n\nIn 1455 Gutenberg completed his 42-line Bible, known as the Gutenberg Bible. About 180 copies were printed, most on paper and some on vellum.\n\n## Court Case\n\nSome time in 1456, there was a dispute between Gutenberg and Fust, and Fust demanded his money back, accusing Gutenberg of misusing the funds. Meanwhile the expenses of the Bible project had proliferated, and Gutenberg's debt now exceeded 20,000 guilders. Fust sued at the archbishop's court. A November 1455 legal document records that there was a partnership for a \"project of the books,\" the funds for which Gutenberg had used for other purposes, according to Fust. The court decided in favor of Fust, giving him control over the Bible printing workshop and half of all printed Bibles.\n\nThus Gutenberg was effectively bankrupt, but it appears he retained (or re-started) a small printing shop, and participated in the printing of a Bible in the town of Bamberg around 1459, for which he seems at least to have supplied the type. But since his printed books never carry his name or a date, it is difficult to be certain, and there is consequently a considerable scholarly debate on this subject. It is also possible that the large Catholicon dictionary, 300 copies of 754 pages, printed in Mainz in 1460, may have been executed in his workshop.\n\nMeanwhile, the Fust–Schöffer shop was the first in Europe to bring out a book with the printer's name and date, the Mainz Psalter of August 1457, and while proudly proclaiming the mechanical process by which it had been produced, it made no mention of Gutenberg.\n\n## Later Life\n\nIn 1462, during a conflict between two archbishops, Mainz was sacked by archbishop Adolph von Nassau, and Gutenberg was exiled. An old man by now, he moved to Eltville where he may have initiated and supervised a new printing press belonging to the brothers Bechtermünze.\n\nIn January 1465, Gutenberg's achievements were recognized and he was given the title Hofmann (gentleman of the court) by von Nassau. This honor included a stipend, an annual court outfit, as well as 2,180 litres of grain and 2,000 litres of wine tax-free. It is believed he may have moved back to Mainz around this time, but this is not certain.\n\n***\n\nGutenberg died in 1468 and was buried in the Franciscan church at Mainz, his contributions largely unknown. This church and the cemetery were later destroyed, and Gutenberg's grave is now lost.\n\nIn 1504, he was mentioned as the inventor of typography in a book by Professor Ivo Wittig. It was not until 1567 that the first portrait of Gutenberg, almost certainly an imaginary reconstruction, appeared in Heinrich Pantaleon's biography of famous Germans.\n\n## Printing Method With Movable Type\n\nGutenberg's early printing process, and what tests he may have made with movable type, are not known in great detail. His later Bibles were printed in such a way as to have required large quantities of type, some estimates suggesting as many as 100,000 individual sorts. Setting each page would take, perhaps, half a day, and considering all the work in loading the press, inking the type, pulling the impressions, hanging up the sheets, distributing the type, etc., it is thought that the Gutenberg–Fust shop might have employed as many as 25 craftsmen.\n\n![Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5](/media/movable-type.jpg)\n\n*Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5*\n\nGutenberg's technique of making movable type remains unclear. In the following decades, punches and copper matrices became standardized in the rapidly disseminating printing presses across Europe. Whether Gutenberg used this sophisticated technique or a somewhat primitive version has been the subject of considerable debate.\n\nIn the standard process of making type, a hard metal punch (made by punchcutting, with the letter carved back to front) is hammered into a softer copper bar, creating a matrix. This is then placed into a hand-held mould and a piece of type, or \"sort\", is cast by filling the mould with molten type-metal; this cools almost at once, and the resulting piece of type can be removed from the mould. The matrix can be reused to create hundreds, or thousands, of identical sorts so that the same character appearing anywhere within the book will appear very uniform, giving rise, over time, to the development of distinct styles of typefaces or fonts. After casting, the sorts are arranged into type-cases, and used to make up pages which are inked and printed, a procedure which can be repeated hundreds, or thousands, of times. The sorts can be reused in any combination, earning the process the name of “movable type”.\n\nThe invention of the making of types with punch, matrix and mold has been widely attributed to Gutenberg. However, recent evidence suggests that Gutenberg's process was somewhat different. If he used the punch and matrix approach, all his letters should have been nearly identical, with some variations due to miscasting and inking. However, the type used in Gutenberg's earliest work shows other variations.\n\n
\n\t
\n\t\t

It is a press, certainly, but a press from which shall flow in inexhaustible streams… Through it, god will spread his word.

\n\t\t
\n\t\t\t—Johannes Gutenberg\n\t\t
\n\t
\n
\n\nIn 2001, the physicist Blaise Agüera y Arcas and Princeton librarian Paul Needham, used digital scans of a Papal bull in the Scheide Library, Princeton, to carefully compare the same letters (types) appearing in different parts of the printed text. The irregularities in Gutenberg's type, particularly in simple characters such as the hyphen, suggested that the variations could not have come from either ink smear or from wear and damage on the pieces of metal on the types themselves. While some identical types are clearly used on other pages, other variations, subjected to detailed image analysis, suggested that they could not have been produced from the same matrix. Transmitted light pictures of the page also appeared to reveal substructures in the type that could not arise from traditional punchcutting techniques. They hypothesized that the method may have involved impressing simple shapes to create alphabets in “cuneiform” style in a matrix made of some soft material, perhaps sand. Casting the type would destroy the mould, and the matrix would need to be recreated to make each additional sort. This could explain the variations in the type, as well as the substructures observed in the printed images.\n\nThus, they feel that “the decisive factor for the birth of typography”, the use of reusable moulds for casting type, might have been a more progressive process than was previously thought. They suggest that the additional step of using the punch to create a mould that could be reused many times was not taken until twenty years later, in the 1470s. Others have not accepted some or all of their suggestions, and have interpreted the evidence in other ways, and the truth of the matter remains very uncertain.\n\nA 1568 history by Hadrianus Junius of Holland claims that the basic idea of the movable type came to Gutenberg from Laurens Janszoon Coster via Fust, who was apprenticed to Coster in the 1430s and may have brought some of his equipment from Haarlem to Mainz. While Coster appears to have experimented with moulds and castable metal type, there is no evidence that he had actually printed anything with this technology. He was an inventor and a goldsmith. However, there is one indirect supporter of the claim that Coster might be the inventor. The author of the Cologne Chronicle of 1499 quotes Ulrich Zell, the first printer of Cologne, that printing was performed in Mainz in 1450, but that some type of printing of lower quality had previously occurred in the Netherlands. However, the chronicle does not mention the name of Coster, while it actually credits Gutenberg as the \"first inventor of printing\" in the very same passage (fol. 312). The first securely dated book by Dutch printers is from 1471, and the Coster connection is today regarded as a mere legend.\n\nThe 19th century printer and typefounder Fournier Le Jeune suggested that Gutenberg might not have been using type cast with a reusable matrix, but possibly wooden types that were carved individually. A similar suggestion was made by Nash in 2004. This remains possible, albeit entirely unproven.\n\nIt has also been questioned whether Gutenberg used movable types at all. In 2004, Italian professor Bruno Fabbiani claimed that examination of the 42-line Bible revealed an overlapping of letters, suggesting that Gutenberg did not in fact use movable type (individual cast characters) but rather used whole plates made from a system somewhat like a modern typewriter, whereby the letters were stamped successively into the plate and then printed. However, most specialists regard the occasional overlapping of type as caused by paper movement over pieces of type of slightly unequal height.", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5?ts=0", + "headers": { + "Date": "Tue, 10 Sep 2019 13:53:32 GMT", + "Content-Type": "text/plain; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4624", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"733ab4cffe213d8db3be254e7fee8f69\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B98:1510F:12324D9:1615576:5D77AADC", + "content-length": "2786", + "connection": "keep-alive" + }, + "response": "---\ntitle: \"A Brief History of Typography\"\ndate: \"2016-02-02T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Design Inspiration\"\ntags:\n - \"Linotype\"\n - \"Monotype\"\n - \"History of typography\"\n - \"Helvetica\"\ndescription: \"Morbi in sem quis dui placerat ornare. Pellentesque odio nisi, euismod in, pharetra a, ultricies in, diam. Sed arcu. Cras consequat.\"\ncanonical: ''\n---\n\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\n\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-0.jpg)\n\n## Header Level 2\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \n\n
\n\t
\n\t\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\n\t\t
\n\t\t\t— Aliquam tincidunt mauris eu risus.\n\t\t
\n\t
\n
\n\n### Header Level 3\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\n\n```css\n#header h1 a {\n display: block;\n width: 300px;\n height: 80px;\n}\n```\n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9?ts=0", + "headers": { + "Date": "Tue, 10 Sep 2019 13:53:32 GMT", + "Content-Type": "text/plain; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4623", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"f9b97e27090d24f9b7c773ede73acd0c\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B96:15110:188221B:1DC6B44:5D77AADC", + "content-length": "2565", + "connection": "keep-alive" + }, + "response": "---\ntitle: The Origins of Social Stationery Lettering\ndate: \"2016-12-01T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Design Culture\"\ndescription: \"Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante.\"\ncanonical: ''\n---\n\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\n\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-3.jpg)\n\n## Header Level 2\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \n\n
\n\t
\n\t\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\n\t\t
\n\t\t\t— Aliquam tincidunt mauris eu risus.\n\t\t
\n\t
\n
\n\n### Header Level 3\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\n\n```css\n#header h1 a {\n display: block;\n width: 300px;\n height: 80px;\n}\n```\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.", + "status": 200 + } +] \ No newline at end of file diff --git a/cypress/fixtures/Github Backend Editorial Workflow - REST API__can change status on and publish multiple entries.json b/cypress/fixtures/Github Backend Editorial Workflow - REST API__can change status on and publish multiple entries.json new file mode 100644 index 00000000..6735986c --- /dev/null +++ b/cypress/fixtures/Github Backend Editorial Workflow - REST API__can change status on and publish multiple entries.json @@ -0,0 +1,3997 @@ +[ + { + "method": "GET", + "url": "/user?ts=0", + "headers": { + "Date": "Tue, 10 Sep 2019 14:17:44 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3861", + "X-RateLimit-Reset": "1568128657", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"fb606f875be1d23b690ea5f5e26b9fe9\"", + "Last-Modified": "Wed, 28 Aug 2019 04:48:54 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7AC3:9D21:17CD43B:1D02869:5D77B088", + "content-length": "1321", + "connection": "keep-alive" + }, + "response": "{\"login\":\"owner\",\"id\":1,\"avatar_url\":\"https://avatars1.githubusercontent.com/u/7892489?v=4\",\"name\":\"owner\"}", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo?ts=0", + "headers": { + "Date": "Tue, 10 Sep 2019 14:17:45 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3860", + "X-RateLimit-Reset": "1568128657", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"2d51f1015bcbf52e2eaac1147f0ea132\"", + "Last-Modified": "Tue, 10 Sep 2019 14:17:39 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7AC5:2B24:1865F86:1DAA8F6:5D77B088", + "content-length": "7296", + "connection": "keep-alive" + }, + "response": "{\n \"id\": 207578989,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1Nzg5ODk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-10T14:17:10Z\",\n \"updated_at\": \"2019-09-10T14:17:39Z\",\n \"pushed_at\": \"2019-09-10T14:17:36Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\",\n \"permissions\": {\n \"admin\": true,\n \"push\": true,\n \"pull\": true\n },\n \"allow_squash_merge\": true,\n \"allow_merge_commit\": true,\n \"allow_rebase_merge\": true,\n \"network_count\": 0,\n \"subscribers_count\": 1\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/content/posts?ts=0&ref=master", + "headers": { + "Date": "Tue, 10 Sep 2019 14:17:46 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3859", + "X-RateLimit-Reset": "1568128657", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"c5b7f6d674ba193bb7b4a5fcf4933034e1b7f2b7\"", + "Last-Modified": "Tue, 10 Sep 2019 14:17:39 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7ACE:244DF:1B65D3:21611E:5D77B089", + "content-length": "7422", + "connection": "keep-alive" + }, + "response": "[\n {\n \"name\": \"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"path\": \"content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"sha\": \"6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"size\": 1707,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"html\": \"https://github.com/owner/repo/blob/master/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md\"\n }\n },\n {\n \"name\": \"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"path\": \"content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"sha\": \"d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"size\": 2565,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"html\": \"https://github.com/owner/repo/blob/master/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\"\n }\n },\n {\n \"name\": \"2016-02-02---A-Brief-History-of-Typography.md\",\n \"path\": \"content/posts/2016-02-02---A-Brief-History-of-Typography.md\",\n \"sha\": \"0eea554365f002d0f1572af9a58522d335a794d5\",\n \"size\": 2786,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2016-02-02---A-Brief-History-of-Typography.md?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/content/posts/2016-02-02---A-Brief-History-of-Typography.md\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/content/posts/2016-02-02---A-Brief-History-of-Typography.md\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2016-02-02---A-Brief-History-of-Typography.md?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\",\n \"html\": \"https://github.com/owner/repo/blob/master/content/posts/2016-02-02---A-Brief-History-of-Typography.md\"\n }\n },\n {\n \"name\": \"2017-18-08---The-Birth-of-Movable-Type.md\",\n \"path\": \"content/posts/2017-18-08---The-Birth-of-Movable-Type.md\",\n \"sha\": \"44f78c474d04273185a95821426f75affc9b0044\",\n \"size\": 16071,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2017-18-08---The-Birth-of-Movable-Type.md?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/content/posts/2017-18-08---The-Birth-of-Movable-Type.md\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/content/posts/2017-18-08---The-Birth-of-Movable-Type.md\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2017-18-08---The-Birth-of-Movable-Type.md?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\",\n \"html\": \"https://github.com/owner/repo/blob/master/content/posts/2017-18-08---The-Birth-of-Movable-Type.md\"\n }\n },\n {\n \"name\": \"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"path\": \"content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"sha\": \"a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"size\": 7465,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"html\": \"https://github.com/owner/repo/blob/master/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md\"\n }\n }\n]\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/static/media?ts=0&ref=master", + "headers": { + "Date": "Tue, 10 Sep 2019 14:17:47 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3858", + "X-RateLimit-Reset": "1568128657", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"c5b7f6d674ba193bb7b4a5fcf4933034e1b7f2b7\"", + "Last-Modified": "Tue, 10 Sep 2019 14:17:39 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7AFF:3ED82:1911CEA:1E83D4A:5D77B08A", + "content-length": "12362", + "connection": "keep-alive" + }, + "response": "[\n {\n \"name\": \"42-line-bible.jpg\",\n \"path\": \"static/media/42-line-bible.jpg\",\n \"sha\": \"41c8d12f9ca5864beb827c381fbeff935209d5fb\",\n \"size\": 671242,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/static/media/42-line-bible.jpg?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/static/media/42-line-bible.jpg\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/41c8d12f9ca5864beb827c381fbeff935209d5fb\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/static/media/42-line-bible.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/static/media/42-line-bible.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/41c8d12f9ca5864beb827c381fbeff935209d5fb\",\n \"html\": \"https://github.com/owner/repo/blob/master/static/media/42-line-bible.jpg\"\n }\n },\n {\n \"name\": \"gutenberg.jpg\",\n \"path\": \"static/media/gutenberg.jpg\",\n \"sha\": \"04315e355873ea5d358d9c371c39a6845c1ae4ae\",\n \"size\": 155002,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/static/media/gutenberg.jpg?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/static/media/gutenberg.jpg\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/04315e355873ea5d358d9c371c39a6845c1ae4ae\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/static/media/gutenberg.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/static/media/gutenberg.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/04315e355873ea5d358d9c371c39a6845c1ae4ae\",\n \"html\": \"https://github.com/owner/repo/blob/master/static/media/gutenberg.jpg\"\n }\n },\n {\n \"name\": \"image-0.jpg\",\n \"path\": \"static/media/image-0.jpg\",\n \"sha\": \"b70a1b64fd4fa9635823231a0ba92c6dc9393f16\",\n \"size\": 660287,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/static/media/image-0.jpg?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/static/media/image-0.jpg\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/b70a1b64fd4fa9635823231a0ba92c6dc9393f16\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/static/media/image-0.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/static/media/image-0.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/b70a1b64fd4fa9635823231a0ba92c6dc9393f16\",\n \"html\": \"https://github.com/owner/repo/blob/master/static/media/image-0.jpg\"\n }\n },\n {\n \"name\": \"image-1.jpg\",\n \"path\": \"static/media/image-1.jpg\",\n \"sha\": \"05eedae372b829c62501ac751b2d42dcc432541b\",\n \"size\": 392411,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/static/media/image-1.jpg?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/static/media/image-1.jpg\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/05eedae372b829c62501ac751b2d42dcc432541b\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/static/media/image-1.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/static/media/image-1.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/05eedae372b829c62501ac751b2d42dcc432541b\",\n \"html\": \"https://github.com/owner/repo/blob/master/static/media/image-1.jpg\"\n }\n },\n {\n \"name\": \"image-2.jpg\",\n \"path\": \"static/media/image-2.jpg\",\n \"sha\": \"53845ed35faf8939bea242bb85eda7c324b1be0b\",\n \"size\": 99147,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/static/media/image-2.jpg?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/static/media/image-2.jpg\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/53845ed35faf8939bea242bb85eda7c324b1be0b\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/static/media/image-2.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/static/media/image-2.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/53845ed35faf8939bea242bb85eda7c324b1be0b\",\n \"html\": \"https://github.com/owner/repo/blob/master/static/media/image-2.jpg\"\n }\n },\n {\n \"name\": \"image-3.jpg\",\n \"path\": \"static/media/image-3.jpg\",\n \"sha\": \"8b2339d97069e826fae1f156212e40ae458454e3\",\n \"size\": 358022,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/static/media/image-3.jpg?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/static/media/image-3.jpg\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/8b2339d97069e826fae1f156212e40ae458454e3\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/static/media/image-3.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/static/media/image-3.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/8b2339d97069e826fae1f156212e40ae458454e3\",\n \"html\": \"https://github.com/owner/repo/blob/master/static/media/image-3.jpg\"\n }\n },\n {\n \"name\": \"image-4.jpg\",\n \"path\": \"static/media/image-4.jpg\",\n \"sha\": \"a8f6f21253a67a4284b5a953b2fe633d44152ecd\",\n \"size\": 114837,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/static/media/image-4.jpg?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/static/media/image-4.jpg\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/a8f6f21253a67a4284b5a953b2fe633d44152ecd\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/static/media/image-4.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/static/media/image-4.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/a8f6f21253a67a4284b5a953b2fe633d44152ecd\",\n \"html\": \"https://github.com/owner/repo/blob/master/static/media/image-4.jpg\"\n }\n },\n {\n \"name\": \"movable-type.jpg\",\n \"path\": \"static/media/movable-type.jpg\",\n \"sha\": \"57b4e925ea00bd8e195cf4418eb6eb2995ea5f10\",\n \"size\": 559028,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/static/media/movable-type.jpg?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/static/media/movable-type.jpg\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/57b4e925ea00bd8e195cf4418eb6eb2995ea5f10\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/static/media/movable-type.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/static/media/movable-type.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/57b4e925ea00bd8e195cf4418eb6eb2995ea5f10\",\n \"html\": \"https://github.com/owner/repo/blob/master/static/media/movable-type.jpg\"\n }\n },\n {\n \"name\": \"printing-press.jpg\",\n \"path\": \"static/media/printing-press.jpg\",\n \"sha\": \"d27f56c9437d9becd2f56cc627c9322c2f1f61f6\",\n \"size\": 279283,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/static/media/printing-press.jpg?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/static/media/printing-press.jpg\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/d27f56c9437d9becd2f56cc627c9322c2f1f61f6\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/static/media/printing-press.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/static/media/printing-press.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/d27f56c9437d9becd2f56cc627c9322c2f1f61f6\",\n \"html\": \"https://github.com/owner/repo/blob/master/static/media/printing-press.jpg\"\n }\n },\n {\n \"name\": \"type-through-time.jpg\",\n \"path\": \"static/media/type-through-time.jpg\",\n \"sha\": \"3f08366a805c51a60ec5056010f22de4ba08abaa\",\n \"size\": 117689,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/static/media/type-through-time.jpg?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/static/media/type-through-time.jpg\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/3f08366a805c51a60ec5056010f22de4ba08abaa\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/static/media/type-through-time.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/static/media/type-through-time.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/3f08366a805c51a60ec5056010f22de4ba08abaa\",\n \"html\": \"https://github.com/owner/repo/blob/master/static/media/type-through-time.jpg\"\n }\n }\n]\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043?ts=0", + "headers": { + "Date": "Tue, 10 Sep 2019 14:17:47 GMT", + "Content-Type": "text/plain; charset=iso-8859-1", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3857", + "X-RateLimit-Reset": "1568128657", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"b11610ec1fe2f13ce388952c3fdf3423\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B00:15110:191DC79:1E864E9:5D77B08A", + "content-length": "1707", + "connection": "keep-alive" + }, + "response": "---\ntitle: Perfecting the Art of Perfection\ndate: \"2016-09-01T23:46:37.121Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Design Inspiration\"\ntags:\n - \"Handwriting\"\n - \"Learning to write\"\ndescription: \"Quisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\"\ncanonical: ''\n---\n\nQuisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\n\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-2.jpg)\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. \n\nPraesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5?ts=0", + "headers": { + "Date": "Tue, 10 Sep 2019 14:17:49 GMT", + "Content-Type": "text/plain; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3856", + "X-RateLimit-Reset": "1568128657", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"733ab4cffe213d8db3be254e7fee8f69\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B12:9D1F:A7740B:CC6958:5D77B08D", + "content-length": "2786", + "connection": "keep-alive" + }, + "response": "---\ntitle: \"A Brief History of Typography\"\ndate: \"2016-02-02T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Design Inspiration\"\ntags:\n - \"Linotype\"\n - \"Monotype\"\n - \"History of typography\"\n - \"Helvetica\"\ndescription: \"Morbi in sem quis dui placerat ornare. Pellentesque odio nisi, euismod in, pharetra a, ultricies in, diam. Sed arcu. Cras consequat.\"\ncanonical: ''\n---\n\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\n\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-0.jpg)\n\n## Header Level 2\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \n\n
\n\t
\n\t\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\n\t\t
\n\t\t\t— Aliquam tincidunt mauris eu risus.\n\t\t
\n\t
\n
\n\n### Header Level 3\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\n\n```css\n#header h1 a {\n display: block;\n width: 300px;\n height: 80px;\n}\n```\n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9?ts=0", + "headers": { + "Date": "Tue, 10 Sep 2019 14:17:49 GMT", + "Content-Type": "text/plain; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3855", + "X-RateLimit-Reset": "1568128657", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"f9b97e27090d24f9b7c773ede73acd0c\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B10:9D1E:4DF698:5F6DF9:5D77B08D", + "content-length": "2565", + "connection": "keep-alive" + }, + "response": "---\ntitle: The Origins of Social Stationery Lettering\ndate: \"2016-12-01T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Design Culture\"\ndescription: \"Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante.\"\ncanonical: ''\n---\n\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\n\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-3.jpg)\n\n## Header Level 2\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \n\n
\n\t
\n\t\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\n\t\t
\n\t\t\t— Aliquam tincidunt mauris eu risus.\n\t\t
\n\t
\n
\n\n### Header Level 3\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\n\n```css\n#header h1 a {\n display: block;\n width: 300px;\n height: 80px;\n}\n```\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044?ts=0", + "headers": { + "Date": "Tue, 10 Sep 2019 14:17:49 GMT", + "Content-Type": "text/plain; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3854", + "X-RateLimit-Reset": "1568128657", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"6e2453f34250f47bb0adc4ff2f6887a8\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B0E:2B1F:1299E0E:16B61B7:5D77B08D", + "content-length": "16071", + "connection": "keep-alive" + }, + "response": "---\ntitle: \"Johannes Gutenberg: The Birth of Movable Type\"\ndate: \"2017-08-18T22:12:03.284Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Typography\"\ntags:\n - \"Open source\"\n - \"Gatsby\"\n - \"Typography\"\ndescription: \"German inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\"\ncanonical: ''\n---\n\nGerman inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\n\n**Johannes Gensfleisch zur Laden zum Gutenberg** (c. 1398 – 1468) was a German blacksmith, goldsmith, printer, and publisher who introduced printing to Europe. His invention of mechanical movable type printing started the Printing Revolution and is widely regarded as the most important event of the modern period. It played a key role in the development of the Renaissance, Reformation, the Age of Enlightenment, and the Scientific revolution and laid the material basis for the modern knowledge-based economy and the spread of learning to the masses.\n\n
\n\t\"Gutenberg\"\n\t
Johannes Gutenberg
\n
\n\nWith his invention of the printing press, Gutenberg was the first European to use movable type printing, in around 1439. Among his many contributions to printing are: the invention of a process for mass-producing movable type; the use of oil-based ink; and the use of a wooden printing press similar to the agricultural screw presses of the period. His truly epochal invention was the combination of these elements into a practical system that allowed the mass production of printed books and was economically viable for printers and readers alike. Gutenberg's method for making type is traditionally considered to have included a type metal alloy and a hand mould for casting type. The alloy was a mixture of lead, tin, and antimony that melted at a relatively low temperature for faster and more economical casting, cast well, and created a durable type.\n\nIn Renaissance Europe, the arrival of mechanical movable type printing introduced the era of mass communication which permanently altered the structure of society. The relatively unrestricted circulation of information — including revolutionary ideas — transcended borders, captured the masses in the Reformation and threatened the power of political and religious authorities; the sharp increase in literacy broke the monopoly of the literate elite on education and learning and bolstered the emerging middle class. Across Europe, the increasing cultural self-awareness of its people led to the rise of proto-nationalism, accelerated by the flowering of the European vernacular languages to the detriment of Latin's status as lingua franca. In the 19th century, the replacement of the hand-operated Gutenberg-style press by steam-powered rotary presses allowed printing on an industrial scale, while Western-style printing was adopted all over the world, becoming practically the sole medium for modern bulk printing.\n\nThe use of movable type was a marked improvement on the handwritten manuscript, which was the existing method of book production in Europe, and upon woodblock printing, and revolutionized European book-making. Gutenberg's printing technology spread rapidly throughout Europe and later the world.\n\nHis major work, the Gutenberg Bible (also known as the 42-line Bible), has been acclaimed for its high aesthetic and technical quality.\n\n## Printing Press\n\nAround 1439, Gutenberg was involved in a financial misadventure making polished metal mirrors (which were believed to capture holy light from religious relics) for sale to pilgrims to Aachen: in 1439 the city was planning to exhibit its collection of relics from Emperor Charlemagne but the event was delayed by one year due to a severe flood and the capital already spent could not be repaid. When the question of satisfying the investors came up, Gutenberg is said to have promised to share a “secret”. It has been widely speculated that this secret may have been the idea of printing with movable type. Also around 1439–1440, the Dutch Laurens Janszoon Coster came up with the idea of printing. Legend has it that the idea came to him “like a ray of light”.\n\n
\n\t\"Early\n\t
Early wooden printing press as depicted in 1568.
\n
\n\nUntil at least 1444 he lived in Strasbourg, most likely in the St. Arbogast parish. It was in Strasbourg in 1440 that Gutenberg is said to have perfected and unveiled the secret of printing based on his research, mysteriously entitled Kunst und Aventur (art and enterprise). It is not clear what work he was engaged in, or whether some early trials with printing from movable type may have been conducted there. After this, there is a gap of four years in the record. In 1448, he was back in Mainz, where he took out a loan from his brother-in-law Arnold Gelthus, quite possibly for a printing press or related paraphernalia. By this date, Gutenberg may have been familiar with intaglio printing; it is claimed that he had worked on copper engravings with an artist known as the Master of Playing Cards.\n\nBy 1450, the press was in operation, and a German poem had been printed, possibly the first item to be printed there. Gutenberg was able to convince the wealthy moneylender Johann Fust for a loan of 800 guilders. Peter Schöffer, who became Fust’s son-in-law, also joined the enterprise. Schöffer had worked as a scribe in Paris and is believed to have designed some of the first typefaces.\n\n
\n\t
\n\t\t

All that has been written to me about that marvelous man seen at Frankfurt is true. I have not seen complete Bibles but only a number of quires of various books of the Bible. The script was very neat and legible, not at all difficult to follow—your grace would be able to read it without effort, and indeed without glasses.

\n\t\t
\n\t\t\t—Future pope Pius II in a letter to Cardinal Carvajal, March 1455\n\t\t
\n\t
\n
\n\nGutenberg's workshop was set up at Hof Humbrecht, a property belonging to a distant relative. It is not clear when Gutenberg conceived the Bible project, but for this he borrowed another 800 guilders from Fust, and work commenced in 1452. At the same time, the press was also printing other, more lucrative texts (possibly Latin grammars). There is also some speculation that there may have been two presses, one for the pedestrian texts, and one for the Bible. One of the profit-making enterprises of the new press was the printing of thousands of indulgences for the church, documented from 1454–55.\n\nIn 1455 Gutenberg completed his 42-line Bible, known as the Gutenberg Bible. About 180 copies were printed, most on paper and some on vellum.\n\n## Court Case\n\nSome time in 1456, there was a dispute between Gutenberg and Fust, and Fust demanded his money back, accusing Gutenberg of misusing the funds. Meanwhile the expenses of the Bible project had proliferated, and Gutenberg's debt now exceeded 20,000 guilders. Fust sued at the archbishop's court. A November 1455 legal document records that there was a partnership for a \"project of the books,\" the funds for which Gutenberg had used for other purposes, according to Fust. The court decided in favor of Fust, giving him control over the Bible printing workshop and half of all printed Bibles.\n\nThus Gutenberg was effectively bankrupt, but it appears he retained (or re-started) a small printing shop, and participated in the printing of a Bible in the town of Bamberg around 1459, for which he seems at least to have supplied the type. But since his printed books never carry his name or a date, it is difficult to be certain, and there is consequently a considerable scholarly debate on this subject. It is also possible that the large Catholicon dictionary, 300 copies of 754 pages, printed in Mainz in 1460, may have been executed in his workshop.\n\nMeanwhile, the Fust–Schöffer shop was the first in Europe to bring out a book with the printer's name and date, the Mainz Psalter of August 1457, and while proudly proclaiming the mechanical process by which it had been produced, it made no mention of Gutenberg.\n\n## Later Life\n\nIn 1462, during a conflict between two archbishops, Mainz was sacked by archbishop Adolph von Nassau, and Gutenberg was exiled. An old man by now, he moved to Eltville where he may have initiated and supervised a new printing press belonging to the brothers Bechtermünze.\n\nIn January 1465, Gutenberg's achievements were recognized and he was given the title Hofmann (gentleman of the court) by von Nassau. This honor included a stipend, an annual court outfit, as well as 2,180 litres of grain and 2,000 litres of wine tax-free. It is believed he may have moved back to Mainz around this time, but this is not certain.\n\n***\n\nGutenberg died in 1468 and was buried in the Franciscan church at Mainz, his contributions largely unknown. This church and the cemetery were later destroyed, and Gutenberg's grave is now lost.\n\nIn 1504, he was mentioned as the inventor of typography in a book by Professor Ivo Wittig. It was not until 1567 that the first portrait of Gutenberg, almost certainly an imaginary reconstruction, appeared in Heinrich Pantaleon's biography of famous Germans.\n\n## Printing Method With Movable Type\n\nGutenberg's early printing process, and what tests he may have made with movable type, are not known in great detail. His later Bibles were printed in such a way as to have required large quantities of type, some estimates suggesting as many as 100,000 individual sorts. Setting each page would take, perhaps, half a day, and considering all the work in loading the press, inking the type, pulling the impressions, hanging up the sheets, distributing the type, etc., it is thought that the Gutenberg–Fust shop might have employed as many as 25 craftsmen.\n\n![Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5](/media/movable-type.jpg)\n\n*Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5*\n\nGutenberg's technique of making movable type remains unclear. In the following decades, punches and copper matrices became standardized in the rapidly disseminating printing presses across Europe. Whether Gutenberg used this sophisticated technique or a somewhat primitive version has been the subject of considerable debate.\n\nIn the standard process of making type, a hard metal punch (made by punchcutting, with the letter carved back to front) is hammered into a softer copper bar, creating a matrix. This is then placed into a hand-held mould and a piece of type, or \"sort\", is cast by filling the mould with molten type-metal; this cools almost at once, and the resulting piece of type can be removed from the mould. The matrix can be reused to create hundreds, or thousands, of identical sorts so that the same character appearing anywhere within the book will appear very uniform, giving rise, over time, to the development of distinct styles of typefaces or fonts. After casting, the sorts are arranged into type-cases, and used to make up pages which are inked and printed, a procedure which can be repeated hundreds, or thousands, of times. The sorts can be reused in any combination, earning the process the name of “movable type”.\n\nThe invention of the making of types with punch, matrix and mold has been widely attributed to Gutenberg. However, recent evidence suggests that Gutenberg's process was somewhat different. If he used the punch and matrix approach, all his letters should have been nearly identical, with some variations due to miscasting and inking. However, the type used in Gutenberg's earliest work shows other variations.\n\n
\n\t
\n\t\t

It is a press, certainly, but a press from which shall flow in inexhaustible streams… Through it, god will spread his word.

\n\t\t
\n\t\t\t—Johannes Gutenberg\n\t\t
\n\t
\n
\n\nIn 2001, the physicist Blaise Agüera y Arcas and Princeton librarian Paul Needham, used digital scans of a Papal bull in the Scheide Library, Princeton, to carefully compare the same letters (types) appearing in different parts of the printed text. The irregularities in Gutenberg's type, particularly in simple characters such as the hyphen, suggested that the variations could not have come from either ink smear or from wear and damage on the pieces of metal on the types themselves. While some identical types are clearly used on other pages, other variations, subjected to detailed image analysis, suggested that they could not have been produced from the same matrix. Transmitted light pictures of the page also appeared to reveal substructures in the type that could not arise from traditional punchcutting techniques. They hypothesized that the method may have involved impressing simple shapes to create alphabets in “cuneiform” style in a matrix made of some soft material, perhaps sand. Casting the type would destroy the mould, and the matrix would need to be recreated to make each additional sort. This could explain the variations in the type, as well as the substructures observed in the printed images.\n\nThus, they feel that “the decisive factor for the birth of typography”, the use of reusable moulds for casting type, might have been a more progressive process than was previously thought. They suggest that the additional step of using the punch to create a mould that could be reused many times was not taken until twenty years later, in the 1470s. Others have not accepted some or all of their suggestions, and have interpreted the evidence in other ways, and the truth of the matter remains very uncertain.\n\nA 1568 history by Hadrianus Junius of Holland claims that the basic idea of the movable type came to Gutenberg from Laurens Janszoon Coster via Fust, who was apprenticed to Coster in the 1430s and may have brought some of his equipment from Haarlem to Mainz. While Coster appears to have experimented with moulds and castable metal type, there is no evidence that he had actually printed anything with this technology. He was an inventor and a goldsmith. However, there is one indirect supporter of the claim that Coster might be the inventor. The author of the Cologne Chronicle of 1499 quotes Ulrich Zell, the first printer of Cologne, that printing was performed in Mainz in 1450, but that some type of printing of lower quality had previously occurred in the Netherlands. However, the chronicle does not mention the name of Coster, while it actually credits Gutenberg as the \"first inventor of printing\" in the very same passage (fol. 312). The first securely dated book by Dutch printers is from 1471, and the Coster connection is today regarded as a mere legend.\n\nThe 19th century printer and typefounder Fournier Le Jeune suggested that Gutenberg might not have been using type cast with a reusable matrix, but possibly wooden types that were carved individually. A similar suggestion was made by Nash in 2004. This remains possible, albeit entirely unproven.\n\nIt has also been questioned whether Gutenberg used movable types at all. In 2004, Italian professor Bruno Fabbiani claimed that examination of the 42-line Bible revealed an overlapping of letters, suggesting that Gutenberg did not in fact use movable type (individual cast characters) but rather used whole plates made from a system somewhat like a modern typewriter, whereby the letters were stamped successively into the plate and then printed. However, most specialists regard the occasional overlapping of type as caused by paper movement over pieces of type of slightly unequal height.", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774?ts=0", + "headers": { + "Date": "Tue, 10 Sep 2019 14:17:49 GMT", + "Content-Type": "text/plain; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3853", + "X-RateLimit-Reset": "1568128657", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"d2bb4e67afce9cad20457cc0c72b8a41\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B0A:3ED77:B06047:D5E509:5D77B08D", + "content-length": "7465", + "connection": "keep-alive" + }, + "response": "---\ntitle: Humane Typography in the Digital Age\ndate: \"2017-08-19T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Typography\"\ntags:\n - \"Design\"\n - \"Typography\"\n - \"Web Development\"\ndescription: \"An Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\"\ncanonical: ''\n---\n\n- [The first transition](#the-first-transition)\n- [The digital age](#the-digital-age)\n- [Loss of humanity through transitions](#loss-of-humanity-through-transitions)\n- [Chasing perfection](#chasing-perfection)\n\nAn Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\n\nThe typography of this industrial age was no longer handcrafted. Mass production and profit became more important. Quantity mattered more than the quality. The books and printed works in general lost a part of its humanity. The typefaces were not produced by craftsmen anymore. It was the machines printing and tying the books together now. The craftsmen had to let go of their craft and became a cog in the process. An extension of the industrial machine.\n\nBut the victory of the industrialism didn’t mean that the craftsmen were completely extinct. The two worlds continued to coexist independently. Each recognising the good in the other — the power of industrialism and the humanity of craftsmanship. This was the second transition that would strip typography of a part of its humanity. We have to go 500 years back in time to meet the first one.\n\n## The first transition\n\nA similar conflict emerged after the invention of the first printing press in Europe. Johannes Gutenberg invented movable type and used it to produce different compositions. His workshop could print up to 240 impressions per hour. Until then, the books were being copied by hand. All the books were handwritten and decorated with hand drawn ornaments and figures. A process of copying a book was long but each book, even a copy, was a work of art.\n\nThe first printed books were, at first, perceived as inferior to the handwritten ones. They were smaller and cheaper to produce. Movable type provided the printers with flexibility that allowed them to print books in languages other than Latin. Gill describes the transition to industrialism as something that people needed and wanted. Something similar happened after the first printed books emerged. People wanted books in a language they understood and they wanted books they could take with them. They were hungry for knowledge and printed books satisfied this hunger.\n\n![42-line-bible.jpg](/media/42-line-bible.jpg)\n\n*The 42–Line Bible, printed by Gutenberg.*\n\nBut, through this transition, the book lost a large part of its humanity. The machine took over most of the process but craftsmanship was still a part of it. The typefaces were cut manually by the first punch cutters. The paper was made by hand. The illustrations and ornaments were still being hand drawn. These were the remains of the craftsmanship that went almost extinct in the times of Eric Gill.\n\n## The digital age\n\nThe first transition took away a large part of humanity from written communication. Industrialisation, the second transition described by Eric Gill, took away most of what was left. But it’s the third transition that stripped it naked. Typefaces are faceless these days. They’re just fonts on our computers. Hardly anyone knows their stories. Hardly anyone cares. Flicking through thousands of typefaces and finding the “right one” is a matter of minutes.\n\n> In the new computer age the proliferation of typefaces and type manipulations represents a new level of visual pollution threatening our culture. Out of thousands of typefaces, all we need are a few basic ones, and trash the rest.\n>\n— Massimo Vignelli\n\nTypography is not about typefaces. It’s not about what looks best, it’s about what feels right. What communicates the message best. Typography, in its essence, is about the message. “Typographical design should perform optically what the speaker creates through voice and gesture of his thoughts.”, as El Lissitzky, a famous Russian typographer, put it.\n\n## Loss of humanity through transitions\n\nEach transition took away a part of humanity from written language. Handwritten books being the most humane form and the digital typefaces being the least. Overuse of Helvetica is a good example. Messages are being told in a typeface just because it’s a safe option. It’s always there. Everyone knows it but yet, nobody knows it. Stop someone on the street and ask him what Helvetica is? Ask a designer the same question. Ask him where it came from, when, why and who designed it. Most of them will fail to answer these questions. Most of them used it in their precious projects but they still don’t spot it in the street.\n\n
\n\t
\n\t\t

Knowledge of the quality of a typeface is of the greatest importance for the functional, aesthetic and psychological effect.

\n\t\t
\n\t\t\t— Josef Mueller-Brockmann\n\t\t
\n\t
\n
\n\nTypefaces don’t look handmade these days. And that’s all right. They don’t have to. Industrialism took that away from them and we’re fine with it. We’ve traded that part of humanity for a process that produces more books that are easier to read. That can’t be bad. And it isn’t.\n\n> Humane typography will often be comparatively rough and even uncouth; but while a certain uncouthness does not seriously matter in humane works, uncouthness has no excuse whatever in the productions of the machine.\n>\n> — Eric Gill\n\nWe’ve come close to “perfection” in the last five centuries. The letters are crisp and without rough edges. We print our compositions with high–precision printers on a high quality, machine made paper.\n\n![type-through-time.jpg](/media/type-through-time.jpg)\n\n*Type through 5 centuries.*\n\nWe lost a part of ourselves because of this chase after perfection. We forgot about the craftsmanship along the way. And the worst part is that we don’t care. The transition to the digital age made that clear. We choose typefaces like clueless zombies. There’s no meaning in our work. Type sizes, leading, margins… It’s all just a few clicks or lines of code. The message isn’t important anymore. There’s no more “why” behind the “what”.\n\n## Chasing perfection\n\nHuman beings aren’t perfect. Perfection is something that will always elude us. There will always be a small part of humanity in everything we do. No matter how small that part, we should make sure that it transcends the limits of the medium. We have to think about the message first. What typeface should we use and why? Does the typeface match the message and what we want to communicate with it? What will be the leading and why? Will there be more typefaces in our design? On what ground will they be combined? What makes our design unique and why? This is the part of humanity that is left in typography. It might be the last part. Are we really going to give it up?\n\n*Originally published by [Matej Latin](http://matejlatin.co.uk/) on [Medium](https://medium.com/design-notes/humane-typography-in-the-digital-age-9bd5c16199bd?ref=webdesignernews.com#.lygo82z0x).*", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/1970-01-01-first-title.json?ts=300&ref=refs/meta/_netlify_cms", + "headers": { + "Date": "Tue, 10 Sep 2019 14:17:50 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "404 Not Found", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3852", + "X-RateLimit-Reset": "1568128657", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B1E:2B1F:1299F8D:16B63A4:5D77B08E", + "content-length": "144", + "connection": "keep-alive" + }, + "response": "{\n \"message\": \"No commit found for the ref refs/meta/_netlify_cms\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/\"\n}\n", + "status": 404 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=master", + "headers": { + "Date": "Tue, 10 Sep 2019 14:17:51 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "404 Not Found", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3851", + "X-RateLimit-Reset": "1568128657", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B20:244E7:121852A:1617096:5D77B08E", + "content-length": "116", + "connection": "keep-alive" + }, + "response": "{\n \"message\": \"Not Found\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/#get-contents\"\n}\n", + "status": 404 + }, + { + "body": "{\"content\":\"LS0tCnRlbXBsYXRlOiBwb3N0CnRpdGxlOiBmaXJzdCB0aXRsZQpkcmFmdDogdHJ1ZQpkYXRlOiAxOTcwLTAxLTAxVDAwOjAwOjAwLjAwMFoKZGVzY3JpcHRpb246IGZpcnN0IGRlc2NyaXB0aW9uCmNhdGVnb3J5OiBmaXJzdCBjYXRlZ29yeQp0YWdzOgogIC0gdGFnMQotLS0KZmlyc3QgYm9keQo=\",\"encoding\":\"base64\"}", + "method": "POST", + "url": "/repos/owner/repo/git/blobs?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:17:52 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "207", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3850", + "X-RateLimit-Reset": "1568128657", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"56278cbfc941dbec3b319d0166c9cc7b\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B22:244EB:18A014C:1DECA45:5D77B08F", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"a041245814892e3f73f63ca54333fda649b7fc0b\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b\"\n}\n", + "status": 201 + }, + { + "method": "GET", + "url": "/repos/owner/repo/branches/master?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:17:52 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3849", + "X-RateLimit-Reset": "1568128657", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"b36bf014a576fd0fa75ba3e664ad30f7\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B25:1510F:12A5AFA:16A48BE:5D77B090", + "content-length": "5961", + "connection": "keep-alive" + }, + "response": "{\n \"name\": \"master\",\n \"commit\": {\n \"sha\": \"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NTc4OTg5OjcyNjE3MmRlYWU5OWM4YTJjZWE0YzcxZTczNGEwMmE3OTNkNGQ5ZTU=\",\n \"commit\": {\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-08T09:08:14Z\"\n },\n \"committer\": {\n \"name\": \"GitHub\",\n \"email\": \"noreply@github.com\",\n \"date\": \"2019-09-08T09:08:14Z\"\n },\n \"message\": \"Merge pull request #10 from owner/chore/update_dependencies\\n\\nChore: update dependencies\",\n \"tree\": {\n \"sha\": \"c5b7f6d674ba193bb7b4a5fcf4933034e1b7f2b7\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/c5b7f6d674ba193bb7b4a5fcf4933034e1b7f2b7\"\n },\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"comment_count\": 0,\n \"verification\": {\n \"verified\": true,\n \"reason\": \"valid\",\n \"signature\": \"-----BEGIN PGP SIGNATURE-----\\n\\nwsBcBAABCAAQBQJddMT+CRBK7hj4Ov3rIwAAdHIIABWcobVYZFMuqSPezceRaKDr\\npXGqxvB3WLiIrvsQiBz2si9SvufXxLUdq72iaYTbXMCqIAAIBDNwHLltOKcbUF9J\\nKa8pD6cq7jpNyZfhI8xlapMwEZPu53as0tSvwdOnl/0iL+WYjUZUFQR+vrWEmllu\\nhIES9QxU2nk5zcS7t8sFRA+sJdll8GzzhoWYkpw3wgqpxCzJdf5HJS0tWyVCZM5U\\nCgSpSgTvz9bALnQxu7YVrfLGEvi8S7LaOEz5HQc+TV1hNR2dfl5hhiHhWQ1Rsx5w\\nUECV01vItNWhx2dyMn77hIu/G+bTH89WZDU+CmifsNkmvkq90fk4eNt8Hg1mxn4=\\n=6ayM\\n-----END PGP SIGNATURE-----\\n\",\n \"payload\": \"tree c5b7f6d674ba193bb7b4a5fcf4933034e1b7f2b7\\nparent 8ade583d7c02e7769dd685ca64c10851c09f51cf\\nparent 4940957ff42b034d8c47d64b383c34548a34fbb5\\nauthor owner 1567933694 +0300\\ncommitter GitHub 1567933694 +0300\\n\\nMerge pull request #10 from owner/chore/update_dependencies\\n\\nChore: update dependencies\"\n }\n },\n \"url\": \"https://api.github.com/repos/owner/repo/commits/726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"html_url\": \"https://github.com/owner/repo/commit/726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/commits/726172deae99c8a2cea4c71e734a02a793d4d9e5/comments\",\n \"author\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"committer\": {\n \"login\": \"web-flow\",\n \"id\": 19864447,\n \"node_id\": \"MDQ6VXNlcjE5ODY0NDQ3\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/web-flow\",\n \"html_url\": \"https://github.com/web-flow\",\n \"followers_url\": \"https://api.github.com/users/web-flow/followers\",\n \"following_url\": \"https://api.github.com/users/web-flow/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/web-flow/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/web-flow/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/web-flow/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/web-flow/orgs\",\n \"repos_url\": \"https://api.github.com/users/web-flow/repos\",\n \"events_url\": \"https://api.github.com/users/web-flow/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/web-flow/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"parents\": [\n {\n \"sha\": \"8ade583d7c02e7769dd685ca64c10851c09f51cf\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/8ade583d7c02e7769dd685ca64c10851c09f51cf\",\n \"html_url\": \"https://github.com/owner/repo/commit/8ade583d7c02e7769dd685ca64c10851c09f51cf\"\n },\n {\n \"sha\": \"4940957ff42b034d8c47d64b383c34548a34fbb5\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/4940957ff42b034d8c47d64b383c34548a34fbb5\",\n \"html_url\": \"https://github.com/owner/repo/commit/4940957ff42b034d8c47d64b383c34548a34fbb5\"\n }\n ]\n },\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/branches/master\",\n \"html\": \"https://github.com/owner/repo/tree/master\"\n },\n \"protected\": false,\n \"protection\": {\n \"enabled\": false,\n \"required_status_checks\": {\n \"enforcement_level\": \"off\",\n \"contexts\": [\n\n ]\n }\n },\n \"protection_url\": \"https://api.github.com/repos/owner/repo/branches/master/protection\"\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/trees/726172deae99c8a2cea4c71e734a02a793d4d9e5?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:17:53 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3848", + "X-RateLimit-Reset": "1568128657", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"10651d1e846412e55963e13992cd09dd\"", + "Last-Modified": "Tue, 10 Sep 2019 14:17:39 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B26:15110:191E5DC:1E8709B:5D77B090", + "content-length": "11769", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"tree\": [\n {\n \"path\": \".circleci\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"e5e9af3301cac61f120b8e4d40b1733c7a45685a\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/e5e9af3301cac61f120b8e4d40b1733c7a45685a\"\n },\n {\n \"path\": \".eslintignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"80b4531b026d19f8fa589efd122e76199d23f967\",\n \"size\": 39,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/80b4531b026d19f8fa589efd122e76199d23f967\"\n },\n {\n \"path\": \".eslintrc.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"370684994aaed5b858da3a006f48cfa57e88fd27\",\n \"size\": 414,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/370684994aaed5b858da3a006f48cfa57e88fd27\"\n },\n {\n \"path\": \".flowconfig\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14aa2ac4cc0e15223ad98630a6f1325fc81f8043\",\n \"size\": 283,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14aa2ac4cc0e15223ad98630a6f1325fc81f8043\"\n },\n {\n \"path\": \".gitattributes\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"10a369ddf4f603337cabc6f21646508323941ce1\",\n \"size\": 135,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/10a369ddf4f603337cabc6f21646508323941ce1\"\n },\n {\n \"path\": \".github\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4ebeece548b52b20af59622354530a6d33b50b43\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4ebeece548b52b20af59622354530a6d33b50b43\"\n },\n {\n \"path\": \".gitignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"c071ba35b0e49899bab6d610a68eef667dbbf157\",\n \"size\": 169,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/c071ba35b0e49899bab6d610a68eef667dbbf157\"\n },\n {\n \"path\": \".prettierignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"393f050e123d998cf8c8b362ff95cc8ac4d250e5\",\n \"size\": 45,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/393f050e123d998cf8c8b362ff95cc8ac4d250e5\"\n },\n {\n \"path\": \".prettierrc\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e52ad05bb13b084d7949dd76e1b2517455162150\",\n \"size\": 223,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/e52ad05bb13b084d7949dd76e1b2517455162150\"\n },\n {\n \"path\": \".stylelintrc.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"4b4c9698d10d756f5faa025659b86375428ed0a7\",\n \"size\": 718,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/4b4c9698d10d756f5faa025659b86375428ed0a7\"\n },\n {\n \"path\": \".vscode\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"286e97ec0113ea8242b41ac222e2c3e8077e6f1e\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/286e97ec0113ea8242b41ac222e2c3e8077e6f1e\"\n },\n {\n \"path\": \"CHANGELOG.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"070a5d4f0eacd2dc0be81ae8996f8982de43046e\",\n \"size\": 2113,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/070a5d4f0eacd2dc0be81ae8996f8982de43046e\"\n },\n {\n \"path\": \"CODE_OF_CONDUCT.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"92bc7565ff0ee145a0041b5179a820f14f39ab22\",\n \"size\": 3355,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/92bc7565ff0ee145a0041b5179a820f14f39ab22\"\n },\n {\n \"path\": \"CONTRIBUTING.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"8552aa241254a61258e1ff9666ab36f32fb1e3b9\",\n \"size\": 3548,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/8552aa241254a61258e1ff9666ab36f32fb1e3b9\"\n },\n {\n \"path\": \"LICENSE\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"42d85938357b49977c126ca03b199129082d4fb8\",\n \"size\": 1091,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/42d85938357b49977c126ca03b199129082d4fb8\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"19df50a78654c8d757ca7f38447aa3d09c7abcce\",\n \"size\": 3698,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/19df50a78654c8d757ca7f38447aa3d09c7abcce\"\n },\n {\n \"path\": \"backend\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\"\n },\n {\n \"path\": \"config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"58afd573bbb69fcca000efd0f5d90b93c93a98dd\",\n \"size\": 853,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/58afd573bbb69fcca000efd0f5d90b93c93a98dd\"\n },\n {\n \"path\": \"content\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/0294ef106c58743907a5c855da1eb0f87b0b6dfc\"\n },\n {\n \"path\": \"flow-typed\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"86c32fd6c3118be5e0dbbb231a834447357236c6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/86c32fd6c3118be5e0dbbb231a834447357236c6\"\n },\n {\n \"path\": \"flow\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"0af45ad00d155c8d8c7407d913ff85278244c9ce\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/0af45ad00d155c8d8c7407d913ff85278244c9ce\"\n },\n {\n \"path\": \"gatsby-browser.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9bd2c9dce175f04980e91cd9dc295a299e3cdb80\",\n \"size\": 90,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9bd2c9dce175f04980e91cd9dc295a299e3cdb80\"\n },\n {\n \"path\": \"gatsby-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"353a109dad62e3f25bf9f5e6a2167f21a6c8b459\",\n \"size\": 7228,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/353a109dad62e3f25bf9f5e6a2167f21a6c8b459\"\n },\n {\n \"path\": \"gatsby-node.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14a207883c2093d2cc071bc5a464e165bcc1fead\",\n \"size\": 409,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14a207883c2093d2cc071bc5a464e165bcc1fead\"\n },\n {\n \"path\": \"gatsby\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4f23c06cd1740bf78304d2c0b29bf6bfdf427981\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4f23c06cd1740bf78304d2c0b29bf6bfdf427981\"\n },\n {\n \"path\": \"jest\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\"\n },\n {\n \"path\": \"netlify.toml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"599b99cc5700404fde316a7ede829776f23e7d45\",\n \"size\": 137,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/599b99cc5700404fde316a7ede829776f23e7d45\"\n },\n {\n \"path\": \"package.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9d777616438b90a18f1a4ebfd5f114b4c06c6f17\",\n \"size\": 6855,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9d777616438b90a18f1a4ebfd5f114b4c06c6f17\"\n },\n {\n \"path\": \"postcss-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d216501e9b351a72e00ba0b7459a6500e27e7da2\",\n \"size\": 703,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d216501e9b351a72e00ba0b7459a6500e27e7da2\"\n },\n {\n \"path\": \"renovate.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"dcc309398785698b8870545c32051a3d72dd8271\",\n \"size\": 460,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/dcc309398785698b8870545c32051a3d72dd8271\"\n },\n {\n \"path\": \"serverless-scripts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ee3701f2fbfc7196ba340f6481d1387d20527898\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ee3701f2fbfc7196ba340f6481d1387d20527898\"\n },\n {\n \"path\": \"serverless-single-page-app-plugin\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"08763fcfba643a06a452398517019bea4a5850ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/08763fcfba643a06a452398517019bea4a5850ba\"\n },\n {\n \"path\": \"serverless.yml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"20b22c5fad229f35d029bf6614d333d82fe8a987\",\n \"size\": 7803,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/20b22c5fad229f35d029bf6614d333d82fe8a987\"\n },\n {\n \"path\": \"src\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"8cdb35a88232c0f32f12f130c92c7cc55f97f471\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/8cdb35a88232c0f32f12f130c92c7cc55f97f471\"\n },\n {\n \"path\": \"static\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"53c6380a600a030d3722bff7ecde36f749fb6964\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/53c6380a600a030d3722bff7ecde36f749fb6964\"\n },\n {\n \"path\": \"utils\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"a592549c9f74db40b51efefcda2fd76810405f27\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/a592549c9f74db40b51efefcda2fd76810405f27\"\n },\n {\n \"path\": \"yarn.lock\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"475c9c1924ca752a0686303e2fdeb7b13ad75f57\",\n \"size\": 793903,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/475c9c1924ca752a0686303e2fdeb7b13ad75f57\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/trees/0294ef106c58743907a5c855da1eb0f87b0b6dfc?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:17:54 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3847", + "X-RateLimit-Reset": "1568128657", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"3cdfe069b9462910314956ac4c294de6\"", + "Last-Modified": "Tue, 10 Sep 2019 14:17:39 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B29:2B24:1866F20:1DABBF0:5D77B091", + "content-length": "831", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\n \"tree\": [\n {\n \"path\": \"pages\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\"\n },\n {\n \"path\": \"posts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"34892575e216c06e757093f036bd8e057c78a52f\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/34892575e216c06e757093f036bd8e057c78a52f\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/trees/34892575e216c06e757093f036bd8e057c78a52f?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:17:54 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3846", + "X-RateLimit-Reset": "1568128657", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"6a67d77b7abccaef2438a90f30ac0305\"", + "Last-Modified": "Tue, 10 Sep 2019 14:17:39 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B2B:3ED82:191293E:1E84C9E:5D77B092", + "content-length": "2030", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"34892575e216c06e757093f036bd8e057c78a52f\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/34892575e216c06e757093f036bd8e057c78a52f\",\n \"tree\": [\n {\n \"path\": \"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"size\": 1707,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\"\n },\n {\n \"path\": \"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"size\": 2565,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\"\n },\n {\n \"path\": \"2016-02-02---A-Brief-History-of-Typography.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"0eea554365f002d0f1572af9a58522d335a794d5\",\n \"size\": 2786,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\"\n },\n {\n \"path\": \"2017-18-08---The-Birth-of-Movable-Type.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"44f78c474d04273185a95821426f75affc9b0044\",\n \"size\": 16071,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\"\n },\n {\n \"path\": \"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"size\": 7465,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 200 + }, + { + "body": "{\"base_tree\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"tree\":[{\"path\":\"1970-01-01-first-title.md\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"a041245814892e3f73f63ca54333fda649b7fc0b\"}]}", + "method": "POST", + "url": "/repos/owner/repo/git/trees?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:17:55 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "2362", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3845", + "X-RateLimit-Reset": "1568128657", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"b28180134119c0b683e80c479dff53ba\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B2E:1510E:B12195:D7EDE3:5D77B092", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a041245814892e3f73f63ca54333fda649b7fc0b\",\n \"size\": 167,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b\"\n },\n {\n \"path\": \"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"size\": 1707,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\"\n },\n {\n \"path\": \"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"size\": 2565,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\"\n },\n {\n \"path\": \"2016-02-02---A-Brief-History-of-Typography.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"0eea554365f002d0f1572af9a58522d335a794d5\",\n \"size\": 2786,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\"\n },\n {\n \"path\": \"2017-18-08---The-Birth-of-Movable-Type.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"44f78c474d04273185a95821426f75affc9b0044\",\n \"size\": 16071,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\"\n },\n {\n \"path\": \"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"size\": 7465,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"base_tree\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\"tree\":[{\"path\":\"posts\",\"mode\":\"040000\",\"type\":\"tree\",\"sha\":\"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\"parentSha\":\"34892575e216c06e757093f036bd8e057c78a52f\"}]}", + "method": "POST", + "url": "/repos/owner/repo/git/trees?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:17:56 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "831", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3844", + "X-RateLimit-Reset": "1568128657", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"ac2ee1d6ea4a29f123de5385b2d9bc3f\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B2F:244E1:54313B:65ADD6:5D77B093", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"tree\": [\n {\n \"path\": \"pages\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\"\n },\n {\n \"path\": \"posts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"base_tree\":\"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\"tree\":[{\"path\":\"content\",\"mode\":\"040000\",\"type\":\"tree\",\"sha\":\"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\"parentSha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\"}]}", + "method": "POST", + "url": "/repos/owner/repo/git/trees?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:17:56 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "11769", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3843", + "X-RateLimit-Reset": "1568128657", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"314155516246819260b67a40bcc0f1d6\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/trees/daee8d5d15d144e8779955166a2afeccde2770e1", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B30:9D1E:4DF8FF:5F70F7:5D77B094", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"daee8d5d15d144e8779955166a2afeccde2770e1\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/daee8d5d15d144e8779955166a2afeccde2770e1\",\n \"tree\": [\n {\n \"path\": \".circleci\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"e5e9af3301cac61f120b8e4d40b1733c7a45685a\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/e5e9af3301cac61f120b8e4d40b1733c7a45685a\"\n },\n {\n \"path\": \".eslintignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"80b4531b026d19f8fa589efd122e76199d23f967\",\n \"size\": 39,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/80b4531b026d19f8fa589efd122e76199d23f967\"\n },\n {\n \"path\": \".eslintrc.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"370684994aaed5b858da3a006f48cfa57e88fd27\",\n \"size\": 414,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/370684994aaed5b858da3a006f48cfa57e88fd27\"\n },\n {\n \"path\": \".flowconfig\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14aa2ac4cc0e15223ad98630a6f1325fc81f8043\",\n \"size\": 283,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14aa2ac4cc0e15223ad98630a6f1325fc81f8043\"\n },\n {\n \"path\": \".gitattributes\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"10a369ddf4f603337cabc6f21646508323941ce1\",\n \"size\": 135,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/10a369ddf4f603337cabc6f21646508323941ce1\"\n },\n {\n \"path\": \".github\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4ebeece548b52b20af59622354530a6d33b50b43\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4ebeece548b52b20af59622354530a6d33b50b43\"\n },\n {\n \"path\": \".gitignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"c071ba35b0e49899bab6d610a68eef667dbbf157\",\n \"size\": 169,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/c071ba35b0e49899bab6d610a68eef667dbbf157\"\n },\n {\n \"path\": \".prettierignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"393f050e123d998cf8c8b362ff95cc8ac4d250e5\",\n \"size\": 45,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/393f050e123d998cf8c8b362ff95cc8ac4d250e5\"\n },\n {\n \"path\": \".prettierrc\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e52ad05bb13b084d7949dd76e1b2517455162150\",\n \"size\": 223,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/e52ad05bb13b084d7949dd76e1b2517455162150\"\n },\n {\n \"path\": \".stylelintrc.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"4b4c9698d10d756f5faa025659b86375428ed0a7\",\n \"size\": 718,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/4b4c9698d10d756f5faa025659b86375428ed0a7\"\n },\n {\n \"path\": \".vscode\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"286e97ec0113ea8242b41ac222e2c3e8077e6f1e\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/286e97ec0113ea8242b41ac222e2c3e8077e6f1e\"\n },\n {\n \"path\": \"CHANGELOG.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"070a5d4f0eacd2dc0be81ae8996f8982de43046e\",\n \"size\": 2113,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/070a5d4f0eacd2dc0be81ae8996f8982de43046e\"\n },\n {\n \"path\": \"CODE_OF_CONDUCT.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"92bc7565ff0ee145a0041b5179a820f14f39ab22\",\n \"size\": 3355,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/92bc7565ff0ee145a0041b5179a820f14f39ab22\"\n },\n {\n \"path\": \"CONTRIBUTING.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"8552aa241254a61258e1ff9666ab36f32fb1e3b9\",\n \"size\": 3548,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/8552aa241254a61258e1ff9666ab36f32fb1e3b9\"\n },\n {\n \"path\": \"LICENSE\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"42d85938357b49977c126ca03b199129082d4fb8\",\n \"size\": 1091,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/42d85938357b49977c126ca03b199129082d4fb8\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"19df50a78654c8d757ca7f38447aa3d09c7abcce\",\n \"size\": 3698,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/19df50a78654c8d757ca7f38447aa3d09c7abcce\"\n },\n {\n \"path\": \"backend\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\"\n },\n {\n \"path\": \"config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"58afd573bbb69fcca000efd0f5d90b93c93a98dd\",\n \"size\": 853,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/58afd573bbb69fcca000efd0f5d90b93c93a98dd\"\n },\n {\n \"path\": \"content\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639\"\n },\n {\n \"path\": \"flow-typed\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"86c32fd6c3118be5e0dbbb231a834447357236c6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/86c32fd6c3118be5e0dbbb231a834447357236c6\"\n },\n {\n \"path\": \"flow\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"0af45ad00d155c8d8c7407d913ff85278244c9ce\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/0af45ad00d155c8d8c7407d913ff85278244c9ce\"\n },\n {\n \"path\": \"gatsby-browser.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9bd2c9dce175f04980e91cd9dc295a299e3cdb80\",\n \"size\": 90,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9bd2c9dce175f04980e91cd9dc295a299e3cdb80\"\n },\n {\n \"path\": \"gatsby-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"353a109dad62e3f25bf9f5e6a2167f21a6c8b459\",\n \"size\": 7228,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/353a109dad62e3f25bf9f5e6a2167f21a6c8b459\"\n },\n {\n \"path\": \"gatsby-node.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14a207883c2093d2cc071bc5a464e165bcc1fead\",\n \"size\": 409,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14a207883c2093d2cc071bc5a464e165bcc1fead\"\n },\n {\n \"path\": \"gatsby\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4f23c06cd1740bf78304d2c0b29bf6bfdf427981\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4f23c06cd1740bf78304d2c0b29bf6bfdf427981\"\n },\n {\n \"path\": \"jest\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\"\n },\n {\n \"path\": \"netlify.toml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"599b99cc5700404fde316a7ede829776f23e7d45\",\n \"size\": 137,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/599b99cc5700404fde316a7ede829776f23e7d45\"\n },\n {\n \"path\": \"package.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9d777616438b90a18f1a4ebfd5f114b4c06c6f17\",\n \"size\": 6855,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9d777616438b90a18f1a4ebfd5f114b4c06c6f17\"\n },\n {\n \"path\": \"postcss-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d216501e9b351a72e00ba0b7459a6500e27e7da2\",\n \"size\": 703,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d216501e9b351a72e00ba0b7459a6500e27e7da2\"\n },\n {\n \"path\": \"renovate.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"dcc309398785698b8870545c32051a3d72dd8271\",\n \"size\": 460,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/dcc309398785698b8870545c32051a3d72dd8271\"\n },\n {\n \"path\": \"serverless-scripts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ee3701f2fbfc7196ba340f6481d1387d20527898\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ee3701f2fbfc7196ba340f6481d1387d20527898\"\n },\n {\n \"path\": \"serverless-single-page-app-plugin\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"08763fcfba643a06a452398517019bea4a5850ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/08763fcfba643a06a452398517019bea4a5850ba\"\n },\n {\n \"path\": \"serverless.yml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"20b22c5fad229f35d029bf6614d333d82fe8a987\",\n \"size\": 7803,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/20b22c5fad229f35d029bf6614d333d82fe8a987\"\n },\n {\n \"path\": \"src\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"8cdb35a88232c0f32f12f130c92c7cc55f97f471\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/8cdb35a88232c0f32f12f130c92c7cc55f97f471\"\n },\n {\n \"path\": \"static\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"53c6380a600a030d3722bff7ecde36f749fb6964\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/53c6380a600a030d3722bff7ecde36f749fb6964\"\n },\n {\n \"path\": \"utils\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"a592549c9f74db40b51efefcda2fd76810405f27\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/a592549c9f74db40b51efefcda2fd76810405f27\"\n },\n {\n \"path\": \"yarn.lock\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"475c9c1924ca752a0686303e2fdeb7b13ad75f57\",\n \"size\": 793903,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/475c9c1924ca752a0686303e2fdeb7b13ad75f57\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"message\":\"Create Post “1970-01-01-first-title”\",\"tree\":\"daee8d5d15d144e8779955166a2afeccde2770e1\",\"parents\":[\"726172deae99c8a2cea4c71e734a02a793d4d9e5\"]}", + "method": "POST", + "url": "/repos/owner/repo/git/commits?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:17:57 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "1504", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3842", + "X-RateLimit-Reset": "1568128657", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"410cc6552ecd1135d7fb49644d537993\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/commits/ebc456f03247359344a722d2644b801960bc9e91", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B33:9D1F:A77A59:CC7116:5D77B095", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"ebc456f03247359344a722d2644b801960bc9e91\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NTc4OTg5OmViYzQ1NmYwMzI0NzM1OTM0NGE3MjJkMjY0NGI4MDE5NjBiYzllOTE=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/ebc456f03247359344a722d2644b801960bc9e91\",\n \"html_url\": \"https://github.com/owner/repo/commit/ebc456f03247359344a722d2644b801960bc9e91\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T14:17:57Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T14:17:57Z\"\n },\n \"tree\": {\n \"sha\": \"daee8d5d15d144e8779955166a2afeccde2770e1\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/daee8d5d15d144e8779955166a2afeccde2770e1\"\n },\n \"message\": \"Create Post “1970-01-01-first-title”\",\n \"parents\": [\n {\n \"sha\": \"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"html_url\": \"https://github.com/owner/repo/commit/726172deae99c8a2cea4c71e734a02a793d4d9e5\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "status": 201 + }, + { + "body": "{\"ref\":\"refs/heads/cms/1970-01-01-first-title\",\"sha\":\"ebc456f03247359344a722d2644b801960bc9e91\"}", + "method": "POST", + "url": "/repos/owner/repo/git/refs?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:17:58 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "518", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3841", + "X-RateLimit-Reset": "1568128657", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"2b8771049f92b725a5aa919ea2278122\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "Location": "https://api.github.com/repos/owner/repo/git/refs/heads/cms/1970-01-01-first-title", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B35:3ED77:B06663:D5ECB5:5D77B095", + "connection": "keep-alive" + }, + "response": "{\n \"ref\": \"refs/heads/cms/1970-01-01-first-title\",\n \"node_id\": \"MDM6UmVmMjA3NTc4OTg5OmNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxl\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/heads/cms/1970-01-01-first-title\",\n \"object\": {\n \"sha\": \"ebc456f03247359344a722d2644b801960bc9e91\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/ebc456f03247359344a722d2644b801960bc9e91\"\n }\n}\n", + "status": 201 + }, + { + "body": "{\"title\":\"Create Post “1970-01-01-first-title”\",\"body\":\"Automatically generated by Netlify CMS\",\"head\":\"cms/1970-01-01-first-title\",\"base\":\"master\"}", + "method": "POST", + "url": "/repos/owner/repo/pulls?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:18:00 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "21715", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3840", + "X-RateLimit-Reset": "1568128657", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"95c58e76db243092c46b31e666a35c05\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/pulls/1", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B36:1510F:12A6309:16A529A:5D77B096", + "connection": "keep-alive" + }, + "response": "{\n \"url\": \"https://api.github.com/repos/owner/repo/pulls/1\",\n \"id\": 316018597,\n \"node_id\": \"MDExOlB1bGxSZXF1ZXN0MzE2MDE4NTk3\",\n \"html_url\": \"https://github.com/owner/repo/pull/1\",\n \"diff_url\": \"https://github.com/owner/repo/pull/1.diff\",\n \"patch_url\": \"https://github.com/owner/repo/pull/1.patch\",\n \"issue_url\": \"https://api.github.com/repos/owner/repo/issues/1\",\n \"number\": 1,\n \"state\": \"open\",\n \"locked\": false,\n \"title\": \"Create Post “1970-01-01-first-title”\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Automatically generated by Netlify CMS\",\n \"created_at\": \"2019-09-10T14:17:59Z\",\n \"updated_at\": \"2019-09-10T14:17:59Z\",\n \"closed_at\": null,\n \"merged_at\": null,\n \"merge_commit_sha\": null,\n \"assignee\": null,\n \"assignees\": [\n\n ],\n \"requested_reviewers\": [\n\n ],\n \"requested_teams\": [\n\n ],\n \"labels\": [\n\n ],\n \"milestone\": null,\n \"commits_url\": \"https://api.github.com/repos/owner/repo/pulls/1/commits\",\n \"review_comments_url\": \"https://api.github.com/repos/owner/repo/pulls/1/comments\",\n \"review_comment_url\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/issues/1/comments\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/ebc456f03247359344a722d2644b801960bc9e91\",\n \"head\": {\n \"label\": \"owner:cms/1970-01-01-first-title\",\n \"ref\": \"cms/1970-01-01-first-title\",\n \"sha\": \"ebc456f03247359344a722d2644b801960bc9e91\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 207578989,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1Nzg5ODk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-10T14:17:10Z\",\n \"updated_at\": \"2019-09-10T14:17:39Z\",\n \"pushed_at\": \"2019-09-10T14:17:58Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 1,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 1,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"base\": {\n \"label\": \"owner:master\",\n \"ref\": \"master\",\n \"sha\": \"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 207578989,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1Nzg5ODk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-10T14:17:10Z\",\n \"updated_at\": \"2019-09-10T14:17:39Z\",\n \"pushed_at\": \"2019-09-10T14:17:58Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 1,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 1,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/1\"\n },\n \"html\": {\n \"href\": \"https://github.com/owner/repo/pull/1\"\n },\n \"issue\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/1\"\n },\n \"comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/1/comments\"\n },\n \"review_comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/1/comments\"\n },\n \"review_comment\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\"\n },\n \"commits\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/1/commits\"\n },\n \"statuses\": {\n \"href\": \"https://api.github.com/repos/owner/repo/statuses/ebc456f03247359344a722d2644b801960bc9e91\"\n }\n },\n \"author_association\": \"OWNER\",\n \"merged\": false,\n \"mergeable\": null,\n \"rebaseable\": null,\n \"mergeable_state\": \"unknown\",\n \"merged_by\": null,\n \"comments\": 0,\n \"review_comments\": 0,\n \"maintainer_can_modify\": false,\n \"commits\": 1,\n \"additions\": 11,\n \"deletions\": 0,\n \"changed_files\": 1\n}\n", + "status": 201 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:18:00 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "404 Not Found", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3839", + "X-RateLimit-Reset": "1568128657", + "X-Poll-Interval": "300", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B3E:2B1F:129AD24:16B7464:5D77B098", + "content-length": "113", + "connection": "keep-alive" + }, + "response": "{\n \"message\": \"Not Found\",\n \"documentation_url\": \"https://developer.github.com/v3/git/refs/#get-a-reference\"\n}\n", + "status": 404 + }, + { + "body": "{\"content\":\"IyBOZXRsaWZ5IENNUwoKVGhpcyB0cmVlIGlzIHVzZWQgYnkgdGhlIE5ldGxpZnkgQ01TIHRvIHN0b3JlIG1ldGFkYXRhIGluZm9ybWF0aW9uIGZvciBzcGVjaWZpYyBmaWxlcyBhbmQgYnJhbmNoZXMu\",\"encoding\":\"base64\"}", + "method": "POST", + "url": "/repos/owner/repo/git/blobs?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:18:01 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "207", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3838", + "X-RateLimit-Reset": "1568128657", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"947a7cc56c2d56bcb652e4051ff67fc1\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B3F:244EB:18A11D6:1DEDE76:5D77B099", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n}\n", + "status": 201 + }, + { + "body": "{\"tree\":[{\"path\":\"README.md\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"98787d1bd948850444433e91a43091a76c4eb455\"}]}", + "method": "POST", + "url": "/repos/owner/repo/git/trees?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:18:02 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "561", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3837", + "X-RateLimit-Reset": "1568128657", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"86bb7e28d0b7e58e123b7e11ea82f562\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/trees/77d01c8bf1e79f9fb17c60fe405ce741bb4eb0a6", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B40:9D20:11C1AA1:15B9188:5D77B099", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"77d01c8bf1e79f9fb17c60fe405ce741bb4eb0a6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/77d01c8bf1e79f9fb17c60fe405ce741bb4eb0a6\",\n \"tree\": [\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"message\":\"First Commit\",\"tree\":\"77d01c8bf1e79f9fb17c60fe405ce741bb4eb0a6\",\"parents\":[]}", + "method": "POST", + "url": "/repos/owner/repo/git/commits?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:18:03 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "1105", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3836", + "X-RateLimit-Reset": "1568128657", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"7318619e43f002e86284ccd24e490bd4\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/commits/fdf8c66e05e4b865f0680f5e70eae4c084e8b94c", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B42:2B1F:129B099:16B789B:5D77B09A", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"fdf8c66e05e4b865f0680f5e70eae4c084e8b94c\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NTc4OTg5OmZkZjhjNjZlMDVlNGI4NjVmMDY4MGY1ZTcwZWFlNGMwODRlOGI5NGM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/fdf8c66e05e4b865f0680f5e70eae4c084e8b94c\",\n \"html_url\": \"https://github.com/owner/repo/commit/fdf8c66e05e4b865f0680f5e70eae4c084e8b94c\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T14:18:03Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T14:18:03Z\"\n },\n \"tree\": {\n \"sha\": \"77d01c8bf1e79f9fb17c60fe405ce741bb4eb0a6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/77d01c8bf1e79f9fb17c60fe405ce741bb4eb0a6\"\n },\n \"message\": \"First Commit\",\n \"parents\": [\n\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "status": 201 + }, + { + "body": "{\"ref\":\"refs/meta/_netlify_cms\",\"sha\":\"fdf8c66e05e4b865f0680f5e70eae4c084e8b94c\"}", + "method": "POST", + "url": "/repos/owner/repo/git/refs?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:18:04 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "484", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3835", + "X-RateLimit-Reset": "1568128657", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"dd9e8f28da4864e30bfde0e660977dba\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "Location": "https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B44:15110:191F8A0:1E887C1:5D77B09B", + "connection": "keep-alive" + }, + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NTc4OTg5OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"fdf8c66e05e4b865f0680f5e70eae4c084e8b94c\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/fdf8c66e05e4b865f0680f5e70eae4c084e8b94c\"\n }\n}\n", + "status": 201 + }, + { + "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjEsImhlYWQiOiJlYmM0NTZmMDMyNDczNTkzNDRhNzIyZDI2NDRiODAxOTYwYmM5ZTkxIn0sInVzZXIiOiJvd25lciIsInN0YXR1cyI6ImRyYWZ0IiwiYnJhbmNoIjoiY21zLzE5NzAtMDEtMDEtZmlyc3QtdGl0bGUiLCJjb2xsZWN0aW9uIjoicG9zdHMiLCJjb21taXRNZXNzYWdlIjoiQ3JlYXRlIFBvc3Qg4oCcMTk3MC0wMS0wMS1maXJzdC10aXRsZeKAnSIsInRpdGxlIjoiZmlyc3QgdGl0bGUiLCJkZXNjcmlwdGlvbiI6ImZpcnN0IGRlc2NyaXB0aW9uIiwib2JqZWN0cyI6eyJlbnRyeSI6eyJwYXRoIjoiY29udGVudC9wb3N0cy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxlLm1kIiwic2hhIjoiYTA0MTI0NTgxNDg5MmUzZjczZjYzY2E1NDMzM2ZkYTY0OWI3ZmMwYiJ9LCJmaWxlcyI6W119LCJ0aW1lU3RhbXAiOiIxOTcwLTAxLTAxVDAwOjAwOjAwLjMwMFoifQ==\",\"encoding\":\"base64\"}", + "method": "POST", + "url": "/repos/owner/repo/git/blobs?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:18:05 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "207", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3834", + "X-RateLimit-Reset": "1568128657", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"e0a3000af7ad02bfc6d9df45291d162d\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/blobs/11fcdfb32c7f713ad750051185f7cf96432d9e9e", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B46:B4D7:1B5A1B:21772D:5D77B09C", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"11fcdfb32c7f713ad750051185f7cf96432d9e9e\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/11fcdfb32c7f713ad750051185f7cf96432d9e9e\"\n}\n", + "status": 201 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/trees/fdf8c66e05e4b865f0680f5e70eae4c084e8b94c?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:18:06 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3833", + "X-RateLimit-Reset": "1568128657", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"509b180898a37638365f1e767362b3ca\"", + "Last-Modified": "Tue, 10 Sep 2019 14:17:39 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B48:2B15:50A29D:61ED25:5D77B09D", + "content-length": "561", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"fdf8c66e05e4b865f0680f5e70eae4c084e8b94c\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/fdf8c66e05e4b865f0680f5e70eae4c084e8b94c\",\n \"tree\": [\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 200 + }, + { + "body": "{\"base_tree\":\"fdf8c66e05e4b865f0680f5e70eae4c084e8b94c\",\"tree\":[{\"path\":\"1970-01-01-first-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"11fcdfb32c7f713ad750051185f7cf96432d9e9e\"}]}", + "method": "POST", + "url": "/repos/owner/repo/git/trees?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:18:06 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "895", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3832", + "X-RateLimit-Reset": "1568128657", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"91d05e3a9430402fb55c78474301025f\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/trees/0436d8c96af42b7f545fade7cee919d607ce161d", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B4A:244E4:B3BC29:D9EAAA:5D77B09E", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"0436d8c96af42b7f545fade7cee919d607ce161d\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/0436d8c96af42b7f545fade7cee919d607ce161d\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"11fcdfb32c7f713ad750051185f7cf96432d9e9e\",\n \"size\": 462,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/11fcdfb32c7f713ad750051185f7cf96432d9e9e\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"message\":\"Updating “1970-01-01-first-title” metadata\",\"tree\":\"0436d8c96af42b7f545fade7cee919d607ce161d\",\"parents\":[\"fdf8c66e05e4b865f0680f5e70eae4c084e8b94c\"]}", + "method": "POST", + "url": "/repos/owner/repo/git/commits?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:18:07 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "1510", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3831", + "X-RateLimit-Reset": "1568128657", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"7b679bb013f6bec4d7df259694332dcd\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/commits/38e81b86ccf019d7a0d1111be47af62622235edb", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B4C:3ED82:1913F8D:1E86836:5D77B09F", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"38e81b86ccf019d7a0d1111be47af62622235edb\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NTc4OTg5OjM4ZTgxYjg2Y2NmMDE5ZDdhMGQxMTExYmU0N2FmNjI2MjIyMzVlZGI=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/38e81b86ccf019d7a0d1111be47af62622235edb\",\n \"html_url\": \"https://github.com/owner/repo/commit/38e81b86ccf019d7a0d1111be47af62622235edb\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T14:18:07Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T14:18:07Z\"\n },\n \"tree\": {\n \"sha\": \"0436d8c96af42b7f545fade7cee919d607ce161d\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/0436d8c96af42b7f545fade7cee919d607ce161d\"\n },\n \"message\": \"Updating “1970-01-01-first-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"fdf8c66e05e4b865f0680f5e70eae4c084e8b94c\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/fdf8c66e05e4b865f0680f5e70eae4c084e8b94c\",\n \"html_url\": \"https://github.com/owner/repo/commit/fdf8c66e05e4b865f0680f5e70eae4c084e8b94c\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "status": 201 + }, + { + "body": "{\"sha\":\"38e81b86ccf019d7a0d1111be47af62622235edb\",\"force\":false}", + "method": "PATCH", + "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:18:10 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3830", + "X-RateLimit-Reset": "1568128657", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"cae09ac0f1593384e689fe006940565a\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B4E:3ED82:1914139:1E86A3A:5D77B09F", + "content-length": "484", + "connection": "keep-alive" + }, + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NTc4OTg5OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"38e81b86ccf019d7a0d1111be47af62622235edb\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/38e81b86ccf019d7a0d1111be47af62622235edb\"\n }\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=master", + "headers": { + "Date": "Tue, 10 Sep 2019 14:18:10 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "404 Not Found", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3829", + "X-RateLimit-Reset": "1568128657", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B50:3ED82:19145C5:1E86FE5:5D77B0A2", + "content-length": "116", + "connection": "keep-alive" + }, + "response": "{\n \"message\": \"Not Found\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/#get-contents\"\n}\n", + "status": 404 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=cms/1970-01-01-first-title", + "headers": { + "Date": "Tue, 10 Sep 2019 14:18:10 GMT", + "Content-Type": "application/vnd.github.VERSION.raw; charset=utf-8", + "Content-Length": "167", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3828", + "X-RateLimit-Reset": "1568128657", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"a041245814892e3f73f63ca54333fda649b7fc0b\"", + "Last-Modified": "Tue, 10 Sep 2019 14:17:57 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B52:1510D:49812C:5A2944:5D77B0A2", + "connection": "keep-alive" + }, + "response": "---\ntemplate: post\ntitle: first title\ndraft: true\ndate: 1970-01-01T00:00:00.000Z\ndescription: first description\ncategory: first category\ntags:\n - tag1\n---\nfirst body\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/commits/ebc456f03247359344a722d2644b801960bc9e91/status?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:18:12 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3827", + "X-RateLimit-Reset": "1568128657", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"61dcd0dfb2e39b36ee58499fa2631d9a\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo, repo:status", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B56:15110:19206D6:1E898EF:5D77B0A3", + "content-length": "6574", + "connection": "keep-alive" + }, + "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"ebc456f03247359344a722d2644b801960bc9e91\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 207578989,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1Nzg5ODk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/ebc456f03247359344a722d2644b801960bc9e91\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/ebc456f03247359344a722d2644b801960bc9e91/status\"\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/1970-01-01-second-title.json?ts=600&ref=refs/meta/_netlify_cms", + "headers": { + "Date": "Tue, 10 Sep 2019 14:18:16 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "404 Not Found", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3826", + "X-RateLimit-Reset": "1568128657", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B5D:9D1D:1A7197:204B60:5D77B0A8", + "content-length": "116", + "connection": "keep-alive" + }, + "response": "{\n \"message\": \"Not Found\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/#get-contents\"\n}\n", + "status": 404 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/content/posts/1970-01-01-second-title.md?ts=600&ref=master", + "headers": { + "Date": "Tue, 10 Sep 2019 14:18:17 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "404 Not Found", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3825", + "X-RateLimit-Reset": "1568128657", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B5E:244EB:18A2CDD:1DEFFA9:5D77B0A8", + "content-length": "116", + "connection": "keep-alive" + }, + "response": "{\n \"message\": \"Not Found\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/#get-contents\"\n}\n", + "status": 404 + }, + { + "body": "{\"content\":\"LS0tCnRlbXBsYXRlOiBwb3N0CnRpdGxlOiBzZWNvbmQgdGl0bGUKZHJhZnQ6IHRydWUKZGF0ZTogMTk3MC0wMS0wMVQwMDowMDowMC4zMDBaCmRlc2NyaXB0aW9uOiBzZWNvbmQgZGVzY3JpcHRpb24KY2F0ZWdvcnk6IHNlY29uZCBjYXRlZ29yeQp0YWdzOgogIC0gdGFnMgotLS0Kc2Vjb25kIGJvZHkK\",\"encoding\":\"base64\"}", + "method": "POST", + "url": "/repos/owner/repo/git/blobs?ts=600", + "headers": { + "Date": "Tue, 10 Sep 2019 14:18:17 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "207", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3824", + "X-RateLimit-Reset": "1568128657", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"663451839f31aa79c14209dd5b7223aa\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/blobs/21929dc2b35a71411987a5e966452de21a5005ab", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B60:1510E:B13366:D803F2:5D77B0A9", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"21929dc2b35a71411987a5e966452de21a5005ab\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/21929dc2b35a71411987a5e966452de21a5005ab\"\n}\n", + "status": 201 + }, + { + "method": "GET", + "url": "/repos/owner/repo/commits/ebc456f03247359344a722d2644b801960bc9e91/status?ts=600", + "headers": { + "Date": "Tue, 10 Sep 2019 14:18:18 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3823", + "X-RateLimit-Reset": "1568128657", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"61dcd0dfb2e39b36ee58499fa2631d9a\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo, repo:status", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B64:244E7:121A4F3:1619853:5D77B0AA", + "content-length": "6574", + "connection": "keep-alive" + }, + "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"ebc456f03247359344a722d2644b801960bc9e91\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 207578989,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1Nzg5ODk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/ebc456f03247359344a722d2644b801960bc9e91\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/ebc456f03247359344a722d2644b801960bc9e91/status\"\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/branches/master?ts=600", + "headers": { + "Date": "Tue, 10 Sep 2019 14:18:18 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3822", + "X-RateLimit-Reset": "1568128657", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"b36bf014a576fd0fa75ba3e664ad30f7\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B62:3ED7B:12DC52F:16EB7A8:5D77B0AA", + "content-length": "5961", + "connection": "keep-alive" + }, + "response": "{\n \"name\": \"master\",\n \"commit\": {\n \"sha\": \"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NTc4OTg5OjcyNjE3MmRlYWU5OWM4YTJjZWE0YzcxZTczNGEwMmE3OTNkNGQ5ZTU=\",\n \"commit\": {\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-08T09:08:14Z\"\n },\n \"committer\": {\n \"name\": \"GitHub\",\n \"email\": \"noreply@github.com\",\n \"date\": \"2019-09-08T09:08:14Z\"\n },\n \"message\": \"Merge pull request #10 from owner/chore/update_dependencies\\n\\nChore: update dependencies\",\n \"tree\": {\n \"sha\": \"c5b7f6d674ba193bb7b4a5fcf4933034e1b7f2b7\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/c5b7f6d674ba193bb7b4a5fcf4933034e1b7f2b7\"\n },\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"comment_count\": 0,\n \"verification\": {\n \"verified\": true,\n \"reason\": \"valid\",\n \"signature\": \"-----BEGIN PGP SIGNATURE-----\\n\\nwsBcBAABCAAQBQJddMT+CRBK7hj4Ov3rIwAAdHIIABWcobVYZFMuqSPezceRaKDr\\npXGqxvB3WLiIrvsQiBz2si9SvufXxLUdq72iaYTbXMCqIAAIBDNwHLltOKcbUF9J\\nKa8pD6cq7jpNyZfhI8xlapMwEZPu53as0tSvwdOnl/0iL+WYjUZUFQR+vrWEmllu\\nhIES9QxU2nk5zcS7t8sFRA+sJdll8GzzhoWYkpw3wgqpxCzJdf5HJS0tWyVCZM5U\\nCgSpSgTvz9bALnQxu7YVrfLGEvi8S7LaOEz5HQc+TV1hNR2dfl5hhiHhWQ1Rsx5w\\nUECV01vItNWhx2dyMn77hIu/G+bTH89WZDU+CmifsNkmvkq90fk4eNt8Hg1mxn4=\\n=6ayM\\n-----END PGP SIGNATURE-----\\n\",\n \"payload\": \"tree c5b7f6d674ba193bb7b4a5fcf4933034e1b7f2b7\\nparent 8ade583d7c02e7769dd685ca64c10851c09f51cf\\nparent 4940957ff42b034d8c47d64b383c34548a34fbb5\\nauthor owner 1567933694 +0300\\ncommitter GitHub 1567933694 +0300\\n\\nMerge pull request #10 from owner/chore/update_dependencies\\n\\nChore: update dependencies\"\n }\n },\n \"url\": \"https://api.github.com/repos/owner/repo/commits/726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"html_url\": \"https://github.com/owner/repo/commit/726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/commits/726172deae99c8a2cea4c71e734a02a793d4d9e5/comments\",\n \"author\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"committer\": {\n \"login\": \"web-flow\",\n \"id\": 19864447,\n \"node_id\": \"MDQ6VXNlcjE5ODY0NDQ3\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/web-flow\",\n \"html_url\": \"https://github.com/web-flow\",\n \"followers_url\": \"https://api.github.com/users/web-flow/followers\",\n \"following_url\": \"https://api.github.com/users/web-flow/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/web-flow/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/web-flow/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/web-flow/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/web-flow/orgs\",\n \"repos_url\": \"https://api.github.com/users/web-flow/repos\",\n \"events_url\": \"https://api.github.com/users/web-flow/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/web-flow/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"parents\": [\n {\n \"sha\": \"8ade583d7c02e7769dd685ca64c10851c09f51cf\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/8ade583d7c02e7769dd685ca64c10851c09f51cf\",\n \"html_url\": \"https://github.com/owner/repo/commit/8ade583d7c02e7769dd685ca64c10851c09f51cf\"\n },\n {\n \"sha\": \"4940957ff42b034d8c47d64b383c34548a34fbb5\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/4940957ff42b034d8c47d64b383c34548a34fbb5\",\n \"html_url\": \"https://github.com/owner/repo/commit/4940957ff42b034d8c47d64b383c34548a34fbb5\"\n }\n ]\n },\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/branches/master\",\n \"html\": \"https://github.com/owner/repo/tree/master\"\n },\n \"protected\": false,\n \"protection\": {\n \"enabled\": false,\n \"required_status_checks\": {\n \"enforcement_level\": \"off\",\n \"contexts\": [\n\n ]\n }\n },\n \"protection_url\": \"https://api.github.com/repos/owner/repo/branches/master/protection\"\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/trees/726172deae99c8a2cea4c71e734a02a793d4d9e5?ts=600", + "headers": { + "Date": "Tue, 10 Sep 2019 14:18:19 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3821", + "X-RateLimit-Reset": "1568128657", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"10651d1e846412e55963e13992cd09dd\"", + "Last-Modified": "Tue, 10 Sep 2019 14:17:39 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B67:3ED7B:12DC669:16EB92E:5D77B0AB", + "content-length": "11769", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"tree\": [\n {\n \"path\": \".circleci\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"e5e9af3301cac61f120b8e4d40b1733c7a45685a\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/e5e9af3301cac61f120b8e4d40b1733c7a45685a\"\n },\n {\n \"path\": \".eslintignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"80b4531b026d19f8fa589efd122e76199d23f967\",\n \"size\": 39,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/80b4531b026d19f8fa589efd122e76199d23f967\"\n },\n {\n \"path\": \".eslintrc.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"370684994aaed5b858da3a006f48cfa57e88fd27\",\n \"size\": 414,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/370684994aaed5b858da3a006f48cfa57e88fd27\"\n },\n {\n \"path\": \".flowconfig\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14aa2ac4cc0e15223ad98630a6f1325fc81f8043\",\n \"size\": 283,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14aa2ac4cc0e15223ad98630a6f1325fc81f8043\"\n },\n {\n \"path\": \".gitattributes\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"10a369ddf4f603337cabc6f21646508323941ce1\",\n \"size\": 135,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/10a369ddf4f603337cabc6f21646508323941ce1\"\n },\n {\n \"path\": \".github\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4ebeece548b52b20af59622354530a6d33b50b43\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4ebeece548b52b20af59622354530a6d33b50b43\"\n },\n {\n \"path\": \".gitignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"c071ba35b0e49899bab6d610a68eef667dbbf157\",\n \"size\": 169,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/c071ba35b0e49899bab6d610a68eef667dbbf157\"\n },\n {\n \"path\": \".prettierignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"393f050e123d998cf8c8b362ff95cc8ac4d250e5\",\n \"size\": 45,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/393f050e123d998cf8c8b362ff95cc8ac4d250e5\"\n },\n {\n \"path\": \".prettierrc\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e52ad05bb13b084d7949dd76e1b2517455162150\",\n \"size\": 223,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/e52ad05bb13b084d7949dd76e1b2517455162150\"\n },\n {\n \"path\": \".stylelintrc.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"4b4c9698d10d756f5faa025659b86375428ed0a7\",\n \"size\": 718,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/4b4c9698d10d756f5faa025659b86375428ed0a7\"\n },\n {\n \"path\": \".vscode\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"286e97ec0113ea8242b41ac222e2c3e8077e6f1e\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/286e97ec0113ea8242b41ac222e2c3e8077e6f1e\"\n },\n {\n \"path\": \"CHANGELOG.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"070a5d4f0eacd2dc0be81ae8996f8982de43046e\",\n \"size\": 2113,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/070a5d4f0eacd2dc0be81ae8996f8982de43046e\"\n },\n {\n \"path\": \"CODE_OF_CONDUCT.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"92bc7565ff0ee145a0041b5179a820f14f39ab22\",\n \"size\": 3355,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/92bc7565ff0ee145a0041b5179a820f14f39ab22\"\n },\n {\n \"path\": \"CONTRIBUTING.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"8552aa241254a61258e1ff9666ab36f32fb1e3b9\",\n \"size\": 3548,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/8552aa241254a61258e1ff9666ab36f32fb1e3b9\"\n },\n {\n \"path\": \"LICENSE\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"42d85938357b49977c126ca03b199129082d4fb8\",\n \"size\": 1091,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/42d85938357b49977c126ca03b199129082d4fb8\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"19df50a78654c8d757ca7f38447aa3d09c7abcce\",\n \"size\": 3698,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/19df50a78654c8d757ca7f38447aa3d09c7abcce\"\n },\n {\n \"path\": \"backend\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\"\n },\n {\n \"path\": \"config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"58afd573bbb69fcca000efd0f5d90b93c93a98dd\",\n \"size\": 853,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/58afd573bbb69fcca000efd0f5d90b93c93a98dd\"\n },\n {\n \"path\": \"content\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/0294ef106c58743907a5c855da1eb0f87b0b6dfc\"\n },\n {\n \"path\": \"flow-typed\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"86c32fd6c3118be5e0dbbb231a834447357236c6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/86c32fd6c3118be5e0dbbb231a834447357236c6\"\n },\n {\n \"path\": \"flow\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"0af45ad00d155c8d8c7407d913ff85278244c9ce\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/0af45ad00d155c8d8c7407d913ff85278244c9ce\"\n },\n {\n \"path\": \"gatsby-browser.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9bd2c9dce175f04980e91cd9dc295a299e3cdb80\",\n \"size\": 90,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9bd2c9dce175f04980e91cd9dc295a299e3cdb80\"\n },\n {\n \"path\": \"gatsby-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"353a109dad62e3f25bf9f5e6a2167f21a6c8b459\",\n \"size\": 7228,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/353a109dad62e3f25bf9f5e6a2167f21a6c8b459\"\n },\n {\n \"path\": \"gatsby-node.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14a207883c2093d2cc071bc5a464e165bcc1fead\",\n \"size\": 409,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14a207883c2093d2cc071bc5a464e165bcc1fead\"\n },\n {\n \"path\": \"gatsby\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4f23c06cd1740bf78304d2c0b29bf6bfdf427981\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4f23c06cd1740bf78304d2c0b29bf6bfdf427981\"\n },\n {\n \"path\": \"jest\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\"\n },\n {\n \"path\": \"netlify.toml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"599b99cc5700404fde316a7ede829776f23e7d45\",\n \"size\": 137,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/599b99cc5700404fde316a7ede829776f23e7d45\"\n },\n {\n \"path\": \"package.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9d777616438b90a18f1a4ebfd5f114b4c06c6f17\",\n \"size\": 6855,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9d777616438b90a18f1a4ebfd5f114b4c06c6f17\"\n },\n {\n \"path\": \"postcss-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d216501e9b351a72e00ba0b7459a6500e27e7da2\",\n \"size\": 703,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d216501e9b351a72e00ba0b7459a6500e27e7da2\"\n },\n {\n \"path\": \"renovate.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"dcc309398785698b8870545c32051a3d72dd8271\",\n \"size\": 460,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/dcc309398785698b8870545c32051a3d72dd8271\"\n },\n {\n \"path\": \"serverless-scripts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ee3701f2fbfc7196ba340f6481d1387d20527898\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ee3701f2fbfc7196ba340f6481d1387d20527898\"\n },\n {\n \"path\": \"serverless-single-page-app-plugin\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"08763fcfba643a06a452398517019bea4a5850ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/08763fcfba643a06a452398517019bea4a5850ba\"\n },\n {\n \"path\": \"serverless.yml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"20b22c5fad229f35d029bf6614d333d82fe8a987\",\n \"size\": 7803,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/20b22c5fad229f35d029bf6614d333d82fe8a987\"\n },\n {\n \"path\": \"src\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"8cdb35a88232c0f32f12f130c92c7cc55f97f471\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/8cdb35a88232c0f32f12f130c92c7cc55f97f471\"\n },\n {\n \"path\": \"static\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"53c6380a600a030d3722bff7ecde36f749fb6964\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/53c6380a600a030d3722bff7ecde36f749fb6964\"\n },\n {\n \"path\": \"utils\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"a592549c9f74db40b51efefcda2fd76810405f27\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/a592549c9f74db40b51efefcda2fd76810405f27\"\n },\n {\n \"path\": \"yarn.lock\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"475c9c1924ca752a0686303e2fdeb7b13ad75f57\",\n \"size\": 793903,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/475c9c1924ca752a0686303e2fdeb7b13ad75f57\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/trees/0294ef106c58743907a5c855da1eb0f87b0b6dfc?ts=600", + "headers": { + "Date": "Tue, 10 Sep 2019 14:18:20 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3820", + "X-RateLimit-Reset": "1568128657", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"3cdfe069b9462910314956ac4c294de6\"", + "Last-Modified": "Tue, 10 Sep 2019 14:17:39 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B68:3ED6F:1DFCE:2773F:5D77B0AB", + "content-length": "831", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\n \"tree\": [\n {\n \"path\": \"pages\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\"\n },\n {\n \"path\": \"posts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"34892575e216c06e757093f036bd8e057c78a52f\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/34892575e216c06e757093f036bd8e057c78a52f\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/trees/34892575e216c06e757093f036bd8e057c78a52f?ts=600", + "headers": { + "Date": "Tue, 10 Sep 2019 14:18:21 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3819", + "X-RateLimit-Reset": "1568128657", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"6a67d77b7abccaef2438a90f30ac0305\"", + "Last-Modified": "Tue, 10 Sep 2019 14:17:39 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B6A:1510C:18CF6C:1E6559:5D77B0AC", + "content-length": "2030", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"34892575e216c06e757093f036bd8e057c78a52f\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/34892575e216c06e757093f036bd8e057c78a52f\",\n \"tree\": [\n {\n \"path\": \"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"size\": 1707,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\"\n },\n {\n \"path\": \"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"size\": 2565,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\"\n },\n {\n \"path\": \"2016-02-02---A-Brief-History-of-Typography.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"0eea554365f002d0f1572af9a58522d335a794d5\",\n \"size\": 2786,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\"\n },\n {\n \"path\": \"2017-18-08---The-Birth-of-Movable-Type.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"44f78c474d04273185a95821426f75affc9b0044\",\n \"size\": 16071,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\"\n },\n {\n \"path\": \"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"size\": 7465,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 200 + }, + { + "body": "{\"base_tree\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"tree\":[{\"path\":\"1970-01-01-second-title.md\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"21929dc2b35a71411987a5e966452de21a5005ab\"}]}", + "method": "POST", + "url": "/repos/owner/repo/git/trees?ts=600", + "headers": { + "Date": "Tue, 10 Sep 2019 14:18:21 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "2363", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3818", + "X-RateLimit-Reset": "1568128657", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"562d219591de1f540141173d1c9dc421\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/trees/e58a266291a019859cf05afac9d176f7f55fb83d", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B6C:3ED7B:12DC942:16EBCAF:5D77B0AD", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"e58a266291a019859cf05afac9d176f7f55fb83d\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/e58a266291a019859cf05afac9d176f7f55fb83d\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-second-title.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"21929dc2b35a71411987a5e966452de21a5005ab\",\n \"size\": 171,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/21929dc2b35a71411987a5e966452de21a5005ab\"\n },\n {\n \"path\": \"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"size\": 1707,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\"\n },\n {\n \"path\": \"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"size\": 2565,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\"\n },\n {\n \"path\": \"2016-02-02---A-Brief-History-of-Typography.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"0eea554365f002d0f1572af9a58522d335a794d5\",\n \"size\": 2786,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\"\n },\n {\n \"path\": \"2017-18-08---The-Birth-of-Movable-Type.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"44f78c474d04273185a95821426f75affc9b0044\",\n \"size\": 16071,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\"\n },\n {\n \"path\": \"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"size\": 7465,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"base_tree\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\"tree\":[{\"path\":\"posts\",\"mode\":\"040000\",\"type\":\"tree\",\"sha\":\"e58a266291a019859cf05afac9d176f7f55fb83d\",\"parentSha\":\"34892575e216c06e757093f036bd8e057c78a52f\"}]}", + "method": "POST", + "url": "/repos/owner/repo/git/trees?ts=600", + "headers": { + "Date": "Tue, 10 Sep 2019 14:18:22 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "831", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3817", + "X-RateLimit-Reset": "1568128657", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"585c88fd044b292e9c6bcc1987cfc5ab\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/trees/10c4513c3c1e20a48ccfb71e0dd469f5b6cd6626", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B6E:2B19:AE5EE4:D44B5C:5D77B0AE", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"10c4513c3c1e20a48ccfb71e0dd469f5b6cd6626\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/10c4513c3c1e20a48ccfb71e0dd469f5b6cd6626\",\n \"tree\": [\n {\n \"path\": \"pages\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\"\n },\n {\n \"path\": \"posts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"e58a266291a019859cf05afac9d176f7f55fb83d\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/e58a266291a019859cf05afac9d176f7f55fb83d\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"base_tree\":\"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\"tree\":[{\"path\":\"content\",\"mode\":\"040000\",\"type\":\"tree\",\"sha\":\"10c4513c3c1e20a48ccfb71e0dd469f5b6cd6626\",\"parentSha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\"}]}", + "method": "POST", + "url": "/repos/owner/repo/git/trees?ts=600", + "headers": { + "Date": "Tue, 10 Sep 2019 14:18:23 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "11769", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3816", + "X-RateLimit-Reset": "1568128657", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"72e0f55636b82e7a4fb36ce7a78b3bce\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/trees/6c2c35e11497ab27a1bff75759e61f32c9b49622", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B70:244EB:18A36CD:1DF0BE7:5D77B0AE", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"6c2c35e11497ab27a1bff75759e61f32c9b49622\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/6c2c35e11497ab27a1bff75759e61f32c9b49622\",\n \"tree\": [\n {\n \"path\": \".circleci\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"e5e9af3301cac61f120b8e4d40b1733c7a45685a\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/e5e9af3301cac61f120b8e4d40b1733c7a45685a\"\n },\n {\n \"path\": \".eslintignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"80b4531b026d19f8fa589efd122e76199d23f967\",\n \"size\": 39,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/80b4531b026d19f8fa589efd122e76199d23f967\"\n },\n {\n \"path\": \".eslintrc.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"370684994aaed5b858da3a006f48cfa57e88fd27\",\n \"size\": 414,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/370684994aaed5b858da3a006f48cfa57e88fd27\"\n },\n {\n \"path\": \".flowconfig\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14aa2ac4cc0e15223ad98630a6f1325fc81f8043\",\n \"size\": 283,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14aa2ac4cc0e15223ad98630a6f1325fc81f8043\"\n },\n {\n \"path\": \".gitattributes\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"10a369ddf4f603337cabc6f21646508323941ce1\",\n \"size\": 135,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/10a369ddf4f603337cabc6f21646508323941ce1\"\n },\n {\n \"path\": \".github\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4ebeece548b52b20af59622354530a6d33b50b43\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4ebeece548b52b20af59622354530a6d33b50b43\"\n },\n {\n \"path\": \".gitignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"c071ba35b0e49899bab6d610a68eef667dbbf157\",\n \"size\": 169,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/c071ba35b0e49899bab6d610a68eef667dbbf157\"\n },\n {\n \"path\": \".prettierignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"393f050e123d998cf8c8b362ff95cc8ac4d250e5\",\n \"size\": 45,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/393f050e123d998cf8c8b362ff95cc8ac4d250e5\"\n },\n {\n \"path\": \".prettierrc\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e52ad05bb13b084d7949dd76e1b2517455162150\",\n \"size\": 223,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/e52ad05bb13b084d7949dd76e1b2517455162150\"\n },\n {\n \"path\": \".stylelintrc.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"4b4c9698d10d756f5faa025659b86375428ed0a7\",\n \"size\": 718,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/4b4c9698d10d756f5faa025659b86375428ed0a7\"\n },\n {\n \"path\": \".vscode\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"286e97ec0113ea8242b41ac222e2c3e8077e6f1e\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/286e97ec0113ea8242b41ac222e2c3e8077e6f1e\"\n },\n {\n \"path\": \"CHANGELOG.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"070a5d4f0eacd2dc0be81ae8996f8982de43046e\",\n \"size\": 2113,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/070a5d4f0eacd2dc0be81ae8996f8982de43046e\"\n },\n {\n \"path\": \"CODE_OF_CONDUCT.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"92bc7565ff0ee145a0041b5179a820f14f39ab22\",\n \"size\": 3355,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/92bc7565ff0ee145a0041b5179a820f14f39ab22\"\n },\n {\n \"path\": \"CONTRIBUTING.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"8552aa241254a61258e1ff9666ab36f32fb1e3b9\",\n \"size\": 3548,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/8552aa241254a61258e1ff9666ab36f32fb1e3b9\"\n },\n {\n \"path\": \"LICENSE\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"42d85938357b49977c126ca03b199129082d4fb8\",\n \"size\": 1091,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/42d85938357b49977c126ca03b199129082d4fb8\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"19df50a78654c8d757ca7f38447aa3d09c7abcce\",\n \"size\": 3698,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/19df50a78654c8d757ca7f38447aa3d09c7abcce\"\n },\n {\n \"path\": \"backend\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\"\n },\n {\n \"path\": \"config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"58afd573bbb69fcca000efd0f5d90b93c93a98dd\",\n \"size\": 853,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/58afd573bbb69fcca000efd0f5d90b93c93a98dd\"\n },\n {\n \"path\": \"content\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"10c4513c3c1e20a48ccfb71e0dd469f5b6cd6626\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/10c4513c3c1e20a48ccfb71e0dd469f5b6cd6626\"\n },\n {\n \"path\": \"flow-typed\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"86c32fd6c3118be5e0dbbb231a834447357236c6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/86c32fd6c3118be5e0dbbb231a834447357236c6\"\n },\n {\n \"path\": \"flow\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"0af45ad00d155c8d8c7407d913ff85278244c9ce\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/0af45ad00d155c8d8c7407d913ff85278244c9ce\"\n },\n {\n \"path\": \"gatsby-browser.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9bd2c9dce175f04980e91cd9dc295a299e3cdb80\",\n \"size\": 90,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9bd2c9dce175f04980e91cd9dc295a299e3cdb80\"\n },\n {\n \"path\": \"gatsby-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"353a109dad62e3f25bf9f5e6a2167f21a6c8b459\",\n \"size\": 7228,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/353a109dad62e3f25bf9f5e6a2167f21a6c8b459\"\n },\n {\n \"path\": \"gatsby-node.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14a207883c2093d2cc071bc5a464e165bcc1fead\",\n \"size\": 409,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14a207883c2093d2cc071bc5a464e165bcc1fead\"\n },\n {\n \"path\": \"gatsby\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4f23c06cd1740bf78304d2c0b29bf6bfdf427981\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4f23c06cd1740bf78304d2c0b29bf6bfdf427981\"\n },\n {\n \"path\": \"jest\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\"\n },\n {\n \"path\": \"netlify.toml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"599b99cc5700404fde316a7ede829776f23e7d45\",\n \"size\": 137,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/599b99cc5700404fde316a7ede829776f23e7d45\"\n },\n {\n \"path\": \"package.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9d777616438b90a18f1a4ebfd5f114b4c06c6f17\",\n \"size\": 6855,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9d777616438b90a18f1a4ebfd5f114b4c06c6f17\"\n },\n {\n \"path\": \"postcss-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d216501e9b351a72e00ba0b7459a6500e27e7da2\",\n \"size\": 703,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d216501e9b351a72e00ba0b7459a6500e27e7da2\"\n },\n {\n \"path\": \"renovate.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"dcc309398785698b8870545c32051a3d72dd8271\",\n \"size\": 460,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/dcc309398785698b8870545c32051a3d72dd8271\"\n },\n {\n \"path\": \"serverless-scripts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ee3701f2fbfc7196ba340f6481d1387d20527898\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ee3701f2fbfc7196ba340f6481d1387d20527898\"\n },\n {\n \"path\": \"serverless-single-page-app-plugin\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"08763fcfba643a06a452398517019bea4a5850ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/08763fcfba643a06a452398517019bea4a5850ba\"\n },\n {\n \"path\": \"serverless.yml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"20b22c5fad229f35d029bf6614d333d82fe8a987\",\n \"size\": 7803,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/20b22c5fad229f35d029bf6614d333d82fe8a987\"\n },\n {\n \"path\": \"src\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"8cdb35a88232c0f32f12f130c92c7cc55f97f471\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/8cdb35a88232c0f32f12f130c92c7cc55f97f471\"\n },\n {\n \"path\": \"static\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"53c6380a600a030d3722bff7ecde36f749fb6964\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/53c6380a600a030d3722bff7ecde36f749fb6964\"\n },\n {\n \"path\": \"utils\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"a592549c9f74db40b51efefcda2fd76810405f27\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/a592549c9f74db40b51efefcda2fd76810405f27\"\n },\n {\n \"path\": \"yarn.lock\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"475c9c1924ca752a0686303e2fdeb7b13ad75f57\",\n \"size\": 793903,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/475c9c1924ca752a0686303e2fdeb7b13ad75f57\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"message\":\"Create Post “1970-01-01-second-title”\",\"tree\":\"6c2c35e11497ab27a1bff75759e61f32c9b49622\",\"parents\":[\"726172deae99c8a2cea4c71e734a02a793d4d9e5\"]}", + "method": "POST", + "url": "/repos/owner/repo/git/commits?ts=600", + "headers": { + "Date": "Tue, 10 Sep 2019 14:18:24 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "1505", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3815", + "X-RateLimit-Reset": "1568128657", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"db67a0903e9178a3bf56ea70c24cc857\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/commits/f9bf5fbfc2565e5c4d4b92da6b65dc7c49355331", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B72:3ED7B:12DCC1D:16EC031:5D77B0AF", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"f9bf5fbfc2565e5c4d4b92da6b65dc7c49355331\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NTc4OTg5OmY5YmY1ZmJmYzI1NjVlNWM0ZDRiOTJkYTZiNjVkYzdjNDkzNTUzMzE=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/f9bf5fbfc2565e5c4d4b92da6b65dc7c49355331\",\n \"html_url\": \"https://github.com/owner/repo/commit/f9bf5fbfc2565e5c4d4b92da6b65dc7c49355331\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T14:18:23Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T14:18:23Z\"\n },\n \"tree\": {\n \"sha\": \"6c2c35e11497ab27a1bff75759e61f32c9b49622\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/6c2c35e11497ab27a1bff75759e61f32c9b49622\"\n },\n \"message\": \"Create Post “1970-01-01-second-title”\",\n \"parents\": [\n {\n \"sha\": \"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"html_url\": \"https://github.com/owner/repo/commit/726172deae99c8a2cea4c71e734a02a793d4d9e5\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "status": 201 + }, + { + "method": "GET", + "url": "/repos/owner/repo/commits/ebc456f03247359344a722d2644b801960bc9e91/status?ts=600", + "headers": { + "Date": "Tue, 10 Sep 2019 14:18:24 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3814", + "X-RateLimit-Reset": "1568128657", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"61dcd0dfb2e39b36ee58499fa2631d9a\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo, repo:status", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B74:3ED82:1915B8D:1E88AE9:5D77B0AF", + "content-length": "6574", + "connection": "keep-alive" + }, + "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"ebc456f03247359344a722d2644b801960bc9e91\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 207578989,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1Nzg5ODk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/ebc456f03247359344a722d2644b801960bc9e91\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/ebc456f03247359344a722d2644b801960bc9e91/status\"\n}\n", + "status": 200 + }, + { + "body": "{\"ref\":\"refs/heads/cms/1970-01-01-second-title\",\"sha\":\"f9bf5fbfc2565e5c4d4b92da6b65dc7c49355331\"}", + "method": "POST", + "url": "/repos/owner/repo/git/refs?ts=600", + "headers": { + "Date": "Tue, 10 Sep 2019 14:18:25 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "524", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3813", + "X-RateLimit-Reset": "1568128657", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"ee25ca67fb2856402e351170af1d0a1c\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "Location": "https://api.github.com/repos/owner/repo/git/refs/heads/cms/1970-01-01-second-title", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B77:15110:1921E61:1E8B539:5D77B0B0", + "connection": "keep-alive" + }, + "response": "{\n \"ref\": \"refs/heads/cms/1970-01-01-second-title\",\n \"node_id\": \"MDM6UmVmMjA3NTc4OTg5OmNtcy8xOTcwLTAxLTAxLXNlY29uZC10aXRsZQ==\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/heads/cms/1970-01-01-second-title\",\n \"object\": {\n \"sha\": \"f9bf5fbfc2565e5c4d4b92da6b65dc7c49355331\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/f9bf5fbfc2565e5c4d4b92da6b65dc7c49355331\"\n }\n}\n", + "status": 201 + }, + { + "body": "{\"title\":\"Create Post “1970-01-01-second-title”\",\"body\":\"Automatically generated by Netlify CMS\",\"head\":\"cms/1970-01-01-second-title\",\"base\":\"master\"}", + "method": "POST", + "url": "/repos/owner/repo/pulls?ts=600", + "headers": { + "Date": "Tue, 10 Sep 2019 14:18:26 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "21718", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3812", + "X-RateLimit-Reset": "1568128657", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"1ac045f8e2fe1ec234422a5149e2fd2c\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/pulls/2", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B78:9D21:17D1960:1D07CE3:5D77B0B1", + "connection": "keep-alive" + }, + "response": "{\n \"url\": \"https://api.github.com/repos/owner/repo/pulls/2\",\n \"id\": 316018822,\n \"node_id\": \"MDExOlB1bGxSZXF1ZXN0MzE2MDE4ODIy\",\n \"html_url\": \"https://github.com/owner/repo/pull/2\",\n \"diff_url\": \"https://github.com/owner/repo/pull/2.diff\",\n \"patch_url\": \"https://github.com/owner/repo/pull/2.patch\",\n \"issue_url\": \"https://api.github.com/repos/owner/repo/issues/2\",\n \"number\": 2,\n \"state\": \"open\",\n \"locked\": false,\n \"title\": \"Create Post “1970-01-01-second-title”\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Automatically generated by Netlify CMS\",\n \"created_at\": \"2019-09-10T14:18:25Z\",\n \"updated_at\": \"2019-09-10T14:18:25Z\",\n \"closed_at\": null,\n \"merged_at\": null,\n \"merge_commit_sha\": null,\n \"assignee\": null,\n \"assignees\": [\n\n ],\n \"requested_reviewers\": [\n\n ],\n \"requested_teams\": [\n\n ],\n \"labels\": [\n\n ],\n \"milestone\": null,\n \"commits_url\": \"https://api.github.com/repos/owner/repo/pulls/2/commits\",\n \"review_comments_url\": \"https://api.github.com/repos/owner/repo/pulls/2/comments\",\n \"review_comment_url\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/issues/2/comments\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/f9bf5fbfc2565e5c4d4b92da6b65dc7c49355331\",\n \"head\": {\n \"label\": \"owner:cms/1970-01-01-second-title\",\n \"ref\": \"cms/1970-01-01-second-title\",\n \"sha\": \"f9bf5fbfc2565e5c4d4b92da6b65dc7c49355331\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 207578989,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1Nzg5ODk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-10T14:17:10Z\",\n \"updated_at\": \"2019-09-10T14:17:39Z\",\n \"pushed_at\": \"2019-09-10T14:18:25Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 2,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 2,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"base\": {\n \"label\": \"owner:master\",\n \"ref\": \"master\",\n \"sha\": \"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 207578989,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1Nzg5ODk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-10T14:17:10Z\",\n \"updated_at\": \"2019-09-10T14:17:39Z\",\n \"pushed_at\": \"2019-09-10T14:18:25Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 2,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 2,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/2\"\n },\n \"html\": {\n \"href\": \"https://github.com/owner/repo/pull/2\"\n },\n \"issue\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/2\"\n },\n \"comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/2/comments\"\n },\n \"review_comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/2/comments\"\n },\n \"review_comment\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\"\n },\n \"commits\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/2/commits\"\n },\n \"statuses\": {\n \"href\": \"https://api.github.com/repos/owner/repo/statuses/f9bf5fbfc2565e5c4d4b92da6b65dc7c49355331\"\n }\n },\n \"author_association\": \"OWNER\",\n \"merged\": false,\n \"mergeable\": null,\n \"rebaseable\": null,\n \"mergeable_state\": \"unknown\",\n \"merged_by\": null,\n \"comments\": 0,\n \"review_comments\": 0,\n \"maintainer_can_modify\": false,\n \"commits\": 1,\n \"additions\": 11,\n \"deletions\": 0,\n \"changed_files\": 1\n}\n", + "status": 201 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=600", + "headers": { + "Date": "Tue, 10 Sep 2019 14:18:27 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3811", + "X-RateLimit-Reset": "1568128657", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"cae09ac0f1593384e689fe006940565a\"", + "Last-Modified": "Tue, 10 Sep 2019 14:17:39 GMT", + "X-Poll-Interval": "300", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B7B:3ED7B:12DD06D:16EC569:5D77B0B2", + "content-length": "484", + "connection": "keep-alive" + }, + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NTc4OTg5OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"38e81b86ccf019d7a0d1111be47af62622235edb\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/38e81b86ccf019d7a0d1111be47af62622235edb\"\n }\n}\n", + "status": 200 + }, + { + "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjIsImhlYWQiOiJmOWJmNWZiZmMyNTY1ZTVjNGQ0YjkyZGE2YjY1ZGM3YzQ5MzU1MzMxIn0sInVzZXIiOiJvd25lciIsInN0YXR1cyI6ImRyYWZ0IiwiYnJhbmNoIjoiY21zLzE5NzAtMDEtMDEtc2Vjb25kLXRpdGxlIiwiY29sbGVjdGlvbiI6InBvc3RzIiwiY29tbWl0TWVzc2FnZSI6IkNyZWF0ZSBQb3N0IOKAnDE5NzAtMDEtMDEtc2Vjb25kLXRpdGxl4oCdIiwidGl0bGUiOiJzZWNvbmQgdGl0bGUiLCJkZXNjcmlwdGlvbiI6InNlY29uZCBkZXNjcmlwdGlvbiIsIm9iamVjdHMiOnsiZW50cnkiOnsicGF0aCI6ImNvbnRlbnQvcG9zdHMvMTk3MC0wMS0wMS1zZWNvbmQtdGl0bGUubWQiLCJzaGEiOiIyMTkyOWRjMmIzNWE3MTQxMTk4N2E1ZTk2NjQ1MmRlMjFhNTAwNWFiIn0sImZpbGVzIjpbXX0sInRpbWVTdGFtcCI6IjE5NzAtMDEtMDFUMDA6MDA6MDAuNjAwWiJ9\",\"encoding\":\"base64\"}", + "method": "POST", + "url": "/repos/owner/repo/git/blobs?ts=600", + "headers": { + "Date": "Tue, 10 Sep 2019 14:18:27 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "207", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3810", + "X-RateLimit-Reset": "1568128657", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"926b47347c2ac3a77a24bdaa2398e6b7\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/blobs/cb41e9645a6b2283378b575576507f6ba90382d5", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B7C:9D1F:A793B2:CC9074:5D77B0B3", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"cb41e9645a6b2283378b575576507f6ba90382d5\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/cb41e9645a6b2283378b575576507f6ba90382d5\"\n}\n", + "status": 201 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/trees/38e81b86ccf019d7a0d1111be47af62622235edb?ts=600", + "headers": { + "Date": "Tue, 10 Sep 2019 14:18:28 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3809", + "X-RateLimit-Reset": "1568128657", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"f872f2a76ef7fcd69b61275f2061b67d\"", + "Last-Modified": "Tue, 10 Sep 2019 14:17:39 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B7F:1510E:B13B80:D80DE7:5D77B0B3", + "content-length": "895", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"38e81b86ccf019d7a0d1111be47af62622235edb\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/38e81b86ccf019d7a0d1111be47af62622235edb\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"11fcdfb32c7f713ad750051185f7cf96432d9e9e\",\n \"size\": 462,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/11fcdfb32c7f713ad750051185f7cf96432d9e9e\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 200 + }, + { + "body": "{\"base_tree\":\"38e81b86ccf019d7a0d1111be47af62622235edb\",\"tree\":[{\"path\":\"1970-01-01-second-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"cb41e9645a6b2283378b575576507f6ba90382d5\"}]}", + "method": "POST", + "url": "/repos/owner/repo/git/trees?ts=600", + "headers": { + "Date": "Tue, 10 Sep 2019 14:18:29 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "1230", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3808", + "X-RateLimit-Reset": "1568128657", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"01e9174715f5d34522b2f8776bc57ab9\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/trees/317ae9b8cca53bc81fbfb0f2e976c03f8f654ab0", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B80:B4DE:1269C13:166C674:5D77B0B4", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"317ae9b8cca53bc81fbfb0f2e976c03f8f654ab0\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/317ae9b8cca53bc81fbfb0f2e976c03f8f654ab0\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"11fcdfb32c7f713ad750051185f7cf96432d9e9e\",\n \"size\": 462,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/11fcdfb32c7f713ad750051185f7cf96432d9e9e\"\n },\n {\n \"path\": \"1970-01-01-second-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"cb41e9645a6b2283378b575576507f6ba90382d5\",\n \"size\": 467,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/cb41e9645a6b2283378b575576507f6ba90382d5\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"message\":\"Updating “1970-01-01-second-title” metadata\",\"tree\":\"317ae9b8cca53bc81fbfb0f2e976c03f8f654ab0\",\"parents\":[\"38e81b86ccf019d7a0d1111be47af62622235edb\"]}", + "method": "POST", + "url": "/repos/owner/repo/git/commits?ts=600", + "headers": { + "Date": "Tue, 10 Sep 2019 14:18:30 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "1511", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3807", + "X-RateLimit-Reset": "1568128657", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"9b548212a8753cd801379c40e7de0d8b\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/commits/c308f235e18ded8ad1ff3cef7de3f36d1d3f6f97", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B82:B4DA:556ACF:6838EC:5D77B0B5", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"c308f235e18ded8ad1ff3cef7de3f36d1d3f6f97\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NTc4OTg5OmMzMDhmMjM1ZTE4ZGVkOGFkMWZmM2NlZjdkZTNmMzZkMWQzZjZmOTc=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/c308f235e18ded8ad1ff3cef7de3f36d1d3f6f97\",\n \"html_url\": \"https://github.com/owner/repo/commit/c308f235e18ded8ad1ff3cef7de3f36d1d3f6f97\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T14:18:29Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T14:18:29Z\"\n },\n \"tree\": {\n \"sha\": \"317ae9b8cca53bc81fbfb0f2e976c03f8f654ab0\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/317ae9b8cca53bc81fbfb0f2e976c03f8f654ab0\"\n },\n \"message\": \"Updating “1970-01-01-second-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"38e81b86ccf019d7a0d1111be47af62622235edb\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/38e81b86ccf019d7a0d1111be47af62622235edb\",\n \"html_url\": \"https://github.com/owner/repo/commit/38e81b86ccf019d7a0d1111be47af62622235edb\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "status": 201 + }, + { + "body": "{\"sha\":\"c308f235e18ded8ad1ff3cef7de3f36d1d3f6f97\",\"force\":false}", + "method": "PATCH", + "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=600", + "headers": { + "Date": "Tue, 10 Sep 2019 14:18:31 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3806", + "X-RateLimit-Reset": "1568128657", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"02e197ec1cfc4fa9e12af53e017816ba\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B84:15110:19228FC:1E8C212:5D77B0B6", + "content-length": "484", + "connection": "keep-alive" + }, + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NTc4OTg5OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"c308f235e18ded8ad1ff3cef7de3f36d1d3f6f97\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/c308f235e18ded8ad1ff3cef7de3f36d1d3f6f97\"\n }\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/content/posts/1970-01-01-second-title.md?ts=600&ref=master", + "headers": { + "Date": "Tue, 10 Sep 2019 14:18:32 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "404 Not Found", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3805", + "X-RateLimit-Reset": "1568128657", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B86:244EB:18A45FD:1DF1E31:5D77B0B7", + "content-length": "116", + "connection": "keep-alive" + }, + "response": "{\n \"message\": \"Not Found\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/#get-contents\"\n}\n", + "status": 404 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/content/posts/1970-01-01-second-title.md?ts=600&ref=cms/1970-01-01-second-title", + "headers": { + "Date": "Tue, 10 Sep 2019 14:18:32 GMT", + "Content-Type": "application/vnd.github.VERSION.raw; charset=utf-8", + "Content-Length": "171", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3804", + "X-RateLimit-Reset": "1568128657", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"21929dc2b35a71411987a5e966452de21a5005ab\"", + "Last-Modified": "Tue, 10 Sep 2019 14:18:23 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B88:3ED82:19168EA:1E89B2D:5D77B0B7", + "connection": "keep-alive" + }, + "response": "---\ntemplate: post\ntitle: second title\ndraft: true\ndate: 1970-01-01T00:00:00.300Z\ndescription: second description\ncategory: second category\ntags:\n - tag2\n---\nsecond body\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/commits/f9bf5fbfc2565e5c4d4b92da6b65dc7c49355331/status?ts=600", + "headers": { + "Date": "Tue, 10 Sep 2019 14:18:33 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3803", + "X-RateLimit-Reset": "1568128657", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"f160e4fe3c5b30b277046cb590fd8f81\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo, repo:status", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B8B:2B24:186B679:1DB125E:5D77B0B9", + "content-length": "6574", + "connection": "keep-alive" + }, + "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"f9bf5fbfc2565e5c4d4b92da6b65dc7c49355331\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 207578989,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1Nzg5ODk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/f9bf5fbfc2565e5c4d4b92da6b65dc7c49355331\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/f9bf5fbfc2565e5c4d4b92da6b65dc7c49355331/status\"\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/1970-01-01-third-title.json?ts=900&ref=refs/meta/_netlify_cms", + "headers": { + "Date": "Tue, 10 Sep 2019 14:18:39 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "404 Not Found", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3802", + "X-RateLimit-Reset": "1568128657", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B8E:2B24:186BF3B:1DB1D05:5D77B0BE", + "content-length": "116", + "connection": "keep-alive" + }, + "response": "{\n \"message\": \"Not Found\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/#get-contents\"\n}\n", + "status": 404 + }, + { + "method": "GET", + "url": "/repos/owner/repo/commits/f9bf5fbfc2565e5c4d4b92da6b65dc7c49355331/status?ts=900", + "headers": { + "Date": "Tue, 10 Sep 2019 14:18:39 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3801", + "X-RateLimit-Reset": "1568128657", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"f160e4fe3c5b30b277046cb590fd8f81\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo, repo:status", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B90:3ED7B:12DDE60:16ED6CC:5D77B0BE", + "content-length": "6574", + "connection": "keep-alive" + }, + "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"f9bf5fbfc2565e5c4d4b92da6b65dc7c49355331\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 207578989,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1Nzg5ODk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/f9bf5fbfc2565e5c4d4b92da6b65dc7c49355331\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/f9bf5fbfc2565e5c4d4b92da6b65dc7c49355331/status\"\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/content/posts/1970-01-01-third-title.md?ts=900&ref=master", + "headers": { + "Date": "Tue, 10 Sep 2019 14:18:39 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "404 Not Found", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3800", + "X-RateLimit-Reset": "1568128657", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B92:2B0F:1AF655:210AA6:5D77B0BF", + "content-length": "116", + "connection": "keep-alive" + }, + "response": "{\n \"message\": \"Not Found\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/#get-contents\"\n}\n", + "status": 404 + }, + { + "body": "{\"content\":\"LS0tCnRlbXBsYXRlOiBwb3N0CnRpdGxlOiB0aGlyZCB0aXRsZQpkcmFmdDogdHJ1ZQpkYXRlOiAxOTcwLTAxLTAxVDAwOjAwOjAwLjYwMFoKZGVzY3JpcHRpb246IHRoaXJkIGRlc2NyaXB0aW9uCmNhdGVnb3J5OiB0aGlyZCBjYXRlZ29yeQp0YWdzOgogIC0gdGFnMwotLS0KdGhpcmQgYm9keQo=\",\"encoding\":\"base64\"}", + "method": "POST", + "url": "/repos/owner/repo/git/blobs?ts=900", + "headers": { + "Date": "Tue, 10 Sep 2019 14:18:40 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "207", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3799", + "X-RateLimit-Reset": "1568128657", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"2ff43601202705719ab1f4b1403f459f\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/blobs/28f15fe1a4ea577666ddd92b41a263bd194632a2", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B94:244EB:18A53B2:1DF2EDE:5D77B0C0", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"28f15fe1a4ea577666ddd92b41a263bd194632a2\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/28f15fe1a4ea577666ddd92b41a263bd194632a2\"\n}\n", + "status": 201 + }, + { + "method": "GET", + "url": "/repos/owner/repo/branches/master?ts=900", + "headers": { + "Date": "Tue, 10 Sep 2019 14:18:41 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3798", + "X-RateLimit-Reset": "1568128657", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"b36bf014a576fd0fa75ba3e664ad30f7\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B96:15110:1923A54:1E8D743:5D77B0C0", + "content-length": "5961", + "connection": "keep-alive" + }, + "response": "{\n \"name\": \"master\",\n \"commit\": {\n \"sha\": \"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NTc4OTg5OjcyNjE3MmRlYWU5OWM4YTJjZWE0YzcxZTczNGEwMmE3OTNkNGQ5ZTU=\",\n \"commit\": {\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-08T09:08:14Z\"\n },\n \"committer\": {\n \"name\": \"GitHub\",\n \"email\": \"noreply@github.com\",\n \"date\": \"2019-09-08T09:08:14Z\"\n },\n \"message\": \"Merge pull request #10 from owner/chore/update_dependencies\\n\\nChore: update dependencies\",\n \"tree\": {\n \"sha\": \"c5b7f6d674ba193bb7b4a5fcf4933034e1b7f2b7\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/c5b7f6d674ba193bb7b4a5fcf4933034e1b7f2b7\"\n },\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"comment_count\": 0,\n \"verification\": {\n \"verified\": true,\n \"reason\": \"valid\",\n \"signature\": \"-----BEGIN PGP SIGNATURE-----\\n\\nwsBcBAABCAAQBQJddMT+CRBK7hj4Ov3rIwAAdHIIABWcobVYZFMuqSPezceRaKDr\\npXGqxvB3WLiIrvsQiBz2si9SvufXxLUdq72iaYTbXMCqIAAIBDNwHLltOKcbUF9J\\nKa8pD6cq7jpNyZfhI8xlapMwEZPu53as0tSvwdOnl/0iL+WYjUZUFQR+vrWEmllu\\nhIES9QxU2nk5zcS7t8sFRA+sJdll8GzzhoWYkpw3wgqpxCzJdf5HJS0tWyVCZM5U\\nCgSpSgTvz9bALnQxu7YVrfLGEvi8S7LaOEz5HQc+TV1hNR2dfl5hhiHhWQ1Rsx5w\\nUECV01vItNWhx2dyMn77hIu/G+bTH89WZDU+CmifsNkmvkq90fk4eNt8Hg1mxn4=\\n=6ayM\\n-----END PGP SIGNATURE-----\\n\",\n \"payload\": \"tree c5b7f6d674ba193bb7b4a5fcf4933034e1b7f2b7\\nparent 8ade583d7c02e7769dd685ca64c10851c09f51cf\\nparent 4940957ff42b034d8c47d64b383c34548a34fbb5\\nauthor owner 1567933694 +0300\\ncommitter GitHub 1567933694 +0300\\n\\nMerge pull request #10 from owner/chore/update_dependencies\\n\\nChore: update dependencies\"\n }\n },\n \"url\": \"https://api.github.com/repos/owner/repo/commits/726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"html_url\": \"https://github.com/owner/repo/commit/726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/commits/726172deae99c8a2cea4c71e734a02a793d4d9e5/comments\",\n \"author\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"committer\": {\n \"login\": \"web-flow\",\n \"id\": 19864447,\n \"node_id\": \"MDQ6VXNlcjE5ODY0NDQ3\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/web-flow\",\n \"html_url\": \"https://github.com/web-flow\",\n \"followers_url\": \"https://api.github.com/users/web-flow/followers\",\n \"following_url\": \"https://api.github.com/users/web-flow/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/web-flow/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/web-flow/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/web-flow/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/web-flow/orgs\",\n \"repos_url\": \"https://api.github.com/users/web-flow/repos\",\n \"events_url\": \"https://api.github.com/users/web-flow/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/web-flow/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"parents\": [\n {\n \"sha\": \"8ade583d7c02e7769dd685ca64c10851c09f51cf\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/8ade583d7c02e7769dd685ca64c10851c09f51cf\",\n \"html_url\": \"https://github.com/owner/repo/commit/8ade583d7c02e7769dd685ca64c10851c09f51cf\"\n },\n {\n \"sha\": \"4940957ff42b034d8c47d64b383c34548a34fbb5\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/4940957ff42b034d8c47d64b383c34548a34fbb5\",\n \"html_url\": \"https://github.com/owner/repo/commit/4940957ff42b034d8c47d64b383c34548a34fbb5\"\n }\n ]\n },\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/branches/master\",\n \"html\": \"https://github.com/owner/repo/tree/master\"\n },\n \"protected\": false,\n \"protection\": {\n \"enabled\": false,\n \"required_status_checks\": {\n \"enforcement_level\": \"off\",\n \"contexts\": [\n\n ]\n }\n },\n \"protection_url\": \"https://api.github.com/repos/owner/repo/branches/master/protection\"\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/trees/726172deae99c8a2cea4c71e734a02a793d4d9e5?ts=900", + "headers": { + "Date": "Tue, 10 Sep 2019 14:18:41 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3797", + "X-RateLimit-Reset": "1568128657", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"10651d1e846412e55963e13992cd09dd\"", + "Last-Modified": "Tue, 10 Sep 2019 14:17:39 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B98:15110:1923B3E:1E8D873:5D77B0C1", + "content-length": "11769", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"tree\": [\n {\n \"path\": \".circleci\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"e5e9af3301cac61f120b8e4d40b1733c7a45685a\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/e5e9af3301cac61f120b8e4d40b1733c7a45685a\"\n },\n {\n \"path\": \".eslintignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"80b4531b026d19f8fa589efd122e76199d23f967\",\n \"size\": 39,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/80b4531b026d19f8fa589efd122e76199d23f967\"\n },\n {\n \"path\": \".eslintrc.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"370684994aaed5b858da3a006f48cfa57e88fd27\",\n \"size\": 414,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/370684994aaed5b858da3a006f48cfa57e88fd27\"\n },\n {\n \"path\": \".flowconfig\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14aa2ac4cc0e15223ad98630a6f1325fc81f8043\",\n \"size\": 283,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14aa2ac4cc0e15223ad98630a6f1325fc81f8043\"\n },\n {\n \"path\": \".gitattributes\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"10a369ddf4f603337cabc6f21646508323941ce1\",\n \"size\": 135,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/10a369ddf4f603337cabc6f21646508323941ce1\"\n },\n {\n \"path\": \".github\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4ebeece548b52b20af59622354530a6d33b50b43\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4ebeece548b52b20af59622354530a6d33b50b43\"\n },\n {\n \"path\": \".gitignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"c071ba35b0e49899bab6d610a68eef667dbbf157\",\n \"size\": 169,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/c071ba35b0e49899bab6d610a68eef667dbbf157\"\n },\n {\n \"path\": \".prettierignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"393f050e123d998cf8c8b362ff95cc8ac4d250e5\",\n \"size\": 45,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/393f050e123d998cf8c8b362ff95cc8ac4d250e5\"\n },\n {\n \"path\": \".prettierrc\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e52ad05bb13b084d7949dd76e1b2517455162150\",\n \"size\": 223,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/e52ad05bb13b084d7949dd76e1b2517455162150\"\n },\n {\n \"path\": \".stylelintrc.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"4b4c9698d10d756f5faa025659b86375428ed0a7\",\n \"size\": 718,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/4b4c9698d10d756f5faa025659b86375428ed0a7\"\n },\n {\n \"path\": \".vscode\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"286e97ec0113ea8242b41ac222e2c3e8077e6f1e\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/286e97ec0113ea8242b41ac222e2c3e8077e6f1e\"\n },\n {\n \"path\": \"CHANGELOG.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"070a5d4f0eacd2dc0be81ae8996f8982de43046e\",\n \"size\": 2113,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/070a5d4f0eacd2dc0be81ae8996f8982de43046e\"\n },\n {\n \"path\": \"CODE_OF_CONDUCT.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"92bc7565ff0ee145a0041b5179a820f14f39ab22\",\n \"size\": 3355,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/92bc7565ff0ee145a0041b5179a820f14f39ab22\"\n },\n {\n \"path\": \"CONTRIBUTING.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"8552aa241254a61258e1ff9666ab36f32fb1e3b9\",\n \"size\": 3548,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/8552aa241254a61258e1ff9666ab36f32fb1e3b9\"\n },\n {\n \"path\": \"LICENSE\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"42d85938357b49977c126ca03b199129082d4fb8\",\n \"size\": 1091,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/42d85938357b49977c126ca03b199129082d4fb8\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"19df50a78654c8d757ca7f38447aa3d09c7abcce\",\n \"size\": 3698,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/19df50a78654c8d757ca7f38447aa3d09c7abcce\"\n },\n {\n \"path\": \"backend\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\"\n },\n {\n \"path\": \"config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"58afd573bbb69fcca000efd0f5d90b93c93a98dd\",\n \"size\": 853,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/58afd573bbb69fcca000efd0f5d90b93c93a98dd\"\n },\n {\n \"path\": \"content\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/0294ef106c58743907a5c855da1eb0f87b0b6dfc\"\n },\n {\n \"path\": \"flow-typed\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"86c32fd6c3118be5e0dbbb231a834447357236c6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/86c32fd6c3118be5e0dbbb231a834447357236c6\"\n },\n {\n \"path\": \"flow\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"0af45ad00d155c8d8c7407d913ff85278244c9ce\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/0af45ad00d155c8d8c7407d913ff85278244c9ce\"\n },\n {\n \"path\": \"gatsby-browser.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9bd2c9dce175f04980e91cd9dc295a299e3cdb80\",\n \"size\": 90,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9bd2c9dce175f04980e91cd9dc295a299e3cdb80\"\n },\n {\n \"path\": \"gatsby-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"353a109dad62e3f25bf9f5e6a2167f21a6c8b459\",\n \"size\": 7228,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/353a109dad62e3f25bf9f5e6a2167f21a6c8b459\"\n },\n {\n \"path\": \"gatsby-node.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14a207883c2093d2cc071bc5a464e165bcc1fead\",\n \"size\": 409,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14a207883c2093d2cc071bc5a464e165bcc1fead\"\n },\n {\n \"path\": \"gatsby\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4f23c06cd1740bf78304d2c0b29bf6bfdf427981\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4f23c06cd1740bf78304d2c0b29bf6bfdf427981\"\n },\n {\n \"path\": \"jest\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\"\n },\n {\n \"path\": \"netlify.toml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"599b99cc5700404fde316a7ede829776f23e7d45\",\n \"size\": 137,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/599b99cc5700404fde316a7ede829776f23e7d45\"\n },\n {\n \"path\": \"package.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9d777616438b90a18f1a4ebfd5f114b4c06c6f17\",\n \"size\": 6855,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9d777616438b90a18f1a4ebfd5f114b4c06c6f17\"\n },\n {\n \"path\": \"postcss-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d216501e9b351a72e00ba0b7459a6500e27e7da2\",\n \"size\": 703,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d216501e9b351a72e00ba0b7459a6500e27e7da2\"\n },\n {\n \"path\": \"renovate.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"dcc309398785698b8870545c32051a3d72dd8271\",\n \"size\": 460,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/dcc309398785698b8870545c32051a3d72dd8271\"\n },\n {\n \"path\": \"serverless-scripts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ee3701f2fbfc7196ba340f6481d1387d20527898\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ee3701f2fbfc7196ba340f6481d1387d20527898\"\n },\n {\n \"path\": \"serverless-single-page-app-plugin\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"08763fcfba643a06a452398517019bea4a5850ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/08763fcfba643a06a452398517019bea4a5850ba\"\n },\n {\n \"path\": \"serverless.yml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"20b22c5fad229f35d029bf6614d333d82fe8a987\",\n \"size\": 7803,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/20b22c5fad229f35d029bf6614d333d82fe8a987\"\n },\n {\n \"path\": \"src\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"8cdb35a88232c0f32f12f130c92c7cc55f97f471\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/8cdb35a88232c0f32f12f130c92c7cc55f97f471\"\n },\n {\n \"path\": \"static\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"53c6380a600a030d3722bff7ecde36f749fb6964\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/53c6380a600a030d3722bff7ecde36f749fb6964\"\n },\n {\n \"path\": \"utils\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"a592549c9f74db40b51efefcda2fd76810405f27\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/a592549c9f74db40b51efefcda2fd76810405f27\"\n },\n {\n \"path\": \"yarn.lock\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"475c9c1924ca752a0686303e2fdeb7b13ad75f57\",\n \"size\": 793903,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/475c9c1924ca752a0686303e2fdeb7b13ad75f57\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/trees/0294ef106c58743907a5c855da1eb0f87b0b6dfc?ts=900", + "headers": { + "Date": "Tue, 10 Sep 2019 14:18:42 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3796", + "X-RateLimit-Reset": "1568128657", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"3cdfe069b9462910314956ac4c294de6\"", + "Last-Modified": "Tue, 10 Sep 2019 14:17:39 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B9A:B4E0:175274D:1C64D61:5D77B0C2", + "content-length": "831", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\n \"tree\": [\n {\n \"path\": \"pages\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\"\n },\n {\n \"path\": \"posts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"34892575e216c06e757093f036bd8e057c78a52f\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/34892575e216c06e757093f036bd8e057c78a52f\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/trees/34892575e216c06e757093f036bd8e057c78a52f?ts=900", + "headers": { + "Date": "Tue, 10 Sep 2019 14:18:43 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3795", + "X-RateLimit-Reset": "1568128657", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"6a67d77b7abccaef2438a90f30ac0305\"", + "Last-Modified": "Tue, 10 Sep 2019 14:17:39 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B9D:9D20:11C494D:15BCBD1:5D77B0C2", + "content-length": "2030", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"34892575e216c06e757093f036bd8e057c78a52f\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/34892575e216c06e757093f036bd8e057c78a52f\",\n \"tree\": [\n {\n \"path\": \"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"size\": 1707,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\"\n },\n {\n \"path\": \"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"size\": 2565,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\"\n },\n {\n \"path\": \"2016-02-02---A-Brief-History-of-Typography.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"0eea554365f002d0f1572af9a58522d335a794d5\",\n \"size\": 2786,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\"\n },\n {\n \"path\": \"2017-18-08---The-Birth-of-Movable-Type.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"44f78c474d04273185a95821426f75affc9b0044\",\n \"size\": 16071,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\"\n },\n {\n \"path\": \"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"size\": 7465,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 200 + }, + { + "body": "{\"base_tree\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"tree\":[{\"path\":\"1970-01-01-third-title.md\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"28f15fe1a4ea577666ddd92b41a263bd194632a2\"}]}", + "method": "POST", + "url": "/repos/owner/repo/git/trees?ts=900", + "headers": { + "Date": "Tue, 10 Sep 2019 14:18:44 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "2362", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3794", + "X-RateLimit-Reset": "1568128657", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"bda2c8101bd7c0339cc50a1c0ac9448b\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/trees/a4bf412e6fe815847f4cd61c5d3b6fee67a5ed38", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B9F:2B24:186C7EA:1DB27B4:5D77B0C3", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"a4bf412e6fe815847f4cd61c5d3b6fee67a5ed38\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/a4bf412e6fe815847f4cd61c5d3b6fee67a5ed38\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-third-title.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"28f15fe1a4ea577666ddd92b41a263bd194632a2\",\n \"size\": 167,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/28f15fe1a4ea577666ddd92b41a263bd194632a2\"\n },\n {\n \"path\": \"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"size\": 1707,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\"\n },\n {\n \"path\": \"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"size\": 2565,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\"\n },\n {\n \"path\": \"2016-02-02---A-Brief-History-of-Typography.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"0eea554365f002d0f1572af9a58522d335a794d5\",\n \"size\": 2786,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\"\n },\n {\n \"path\": \"2017-18-08---The-Birth-of-Movable-Type.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"44f78c474d04273185a95821426f75affc9b0044\",\n \"size\": 16071,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\"\n },\n {\n \"path\": \"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"size\": 7465,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "method": "GET", + "url": "/repos/owner/repo/commits/f9bf5fbfc2565e5c4d4b92da6b65dc7c49355331/status?ts=900", + "headers": { + "Date": "Tue, 10 Sep 2019 14:18:44 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3793", + "X-RateLimit-Reset": "1568128657", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"f160e4fe3c5b30b277046cb590fd8f81\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo, repo:status", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BA2:1510F:12A9CDA:16A9A3A:5D77B0C4", + "content-length": "6574", + "connection": "keep-alive" + }, + "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"f9bf5fbfc2565e5c4d4b92da6b65dc7c49355331\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 207578989,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1Nzg5ODk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/f9bf5fbfc2565e5c4d4b92da6b65dc7c49355331\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/f9bf5fbfc2565e5c4d4b92da6b65dc7c49355331/status\"\n}\n", + "status": 200 + }, + { + "body": "{\"base_tree\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\"tree\":[{\"path\":\"posts\",\"mode\":\"040000\",\"type\":\"tree\",\"sha\":\"a4bf412e6fe815847f4cd61c5d3b6fee67a5ed38\",\"parentSha\":\"34892575e216c06e757093f036bd8e057c78a52f\"}]}", + "method": "POST", + "url": "/repos/owner/repo/git/trees?ts=900", + "headers": { + "Date": "Tue, 10 Sep 2019 14:18:45 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "831", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3792", + "X-RateLimit-Reset": "1568128657", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"34da3edcbaf408d1b8d2120ced702ad8\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/trees/171202850395a6ac687cc4cc318bd28037cbc4da", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BA0:244E4:B3DA44:DA0FA6:5D77B0C4", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"171202850395a6ac687cc4cc318bd28037cbc4da\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/171202850395a6ac687cc4cc318bd28037cbc4da\",\n \"tree\": [\n {\n \"path\": \"pages\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\"\n },\n {\n \"path\": \"posts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"a4bf412e6fe815847f4cd61c5d3b6fee67a5ed38\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/a4bf412e6fe815847f4cd61c5d3b6fee67a5ed38\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"base_tree\":\"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\"tree\":[{\"path\":\"content\",\"mode\":\"040000\",\"type\":\"tree\",\"sha\":\"171202850395a6ac687cc4cc318bd28037cbc4da\",\"parentSha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\"}]}", + "method": "POST", + "url": "/repos/owner/repo/git/trees?ts=900", + "headers": { + "Date": "Tue, 10 Sep 2019 14:18:45 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "11769", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3791", + "X-RateLimit-Reset": "1568128657", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"50026496ba841e52a19dab14dfe5e12f\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/trees/683ee758f443afa80d6fb841e8ee17755ee99cd6", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BA4:9D20:11C4C1B:15BCF4D:5D77B0C5", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"683ee758f443afa80d6fb841e8ee17755ee99cd6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/683ee758f443afa80d6fb841e8ee17755ee99cd6\",\n \"tree\": [\n {\n \"path\": \".circleci\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"e5e9af3301cac61f120b8e4d40b1733c7a45685a\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/e5e9af3301cac61f120b8e4d40b1733c7a45685a\"\n },\n {\n \"path\": \".eslintignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"80b4531b026d19f8fa589efd122e76199d23f967\",\n \"size\": 39,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/80b4531b026d19f8fa589efd122e76199d23f967\"\n },\n {\n \"path\": \".eslintrc.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"370684994aaed5b858da3a006f48cfa57e88fd27\",\n \"size\": 414,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/370684994aaed5b858da3a006f48cfa57e88fd27\"\n },\n {\n \"path\": \".flowconfig\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14aa2ac4cc0e15223ad98630a6f1325fc81f8043\",\n \"size\": 283,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14aa2ac4cc0e15223ad98630a6f1325fc81f8043\"\n },\n {\n \"path\": \".gitattributes\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"10a369ddf4f603337cabc6f21646508323941ce1\",\n \"size\": 135,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/10a369ddf4f603337cabc6f21646508323941ce1\"\n },\n {\n \"path\": \".github\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4ebeece548b52b20af59622354530a6d33b50b43\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4ebeece548b52b20af59622354530a6d33b50b43\"\n },\n {\n \"path\": \".gitignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"c071ba35b0e49899bab6d610a68eef667dbbf157\",\n \"size\": 169,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/c071ba35b0e49899bab6d610a68eef667dbbf157\"\n },\n {\n \"path\": \".prettierignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"393f050e123d998cf8c8b362ff95cc8ac4d250e5\",\n \"size\": 45,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/393f050e123d998cf8c8b362ff95cc8ac4d250e5\"\n },\n {\n \"path\": \".prettierrc\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e52ad05bb13b084d7949dd76e1b2517455162150\",\n \"size\": 223,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/e52ad05bb13b084d7949dd76e1b2517455162150\"\n },\n {\n \"path\": \".stylelintrc.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"4b4c9698d10d756f5faa025659b86375428ed0a7\",\n \"size\": 718,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/4b4c9698d10d756f5faa025659b86375428ed0a7\"\n },\n {\n \"path\": \".vscode\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"286e97ec0113ea8242b41ac222e2c3e8077e6f1e\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/286e97ec0113ea8242b41ac222e2c3e8077e6f1e\"\n },\n {\n \"path\": \"CHANGELOG.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"070a5d4f0eacd2dc0be81ae8996f8982de43046e\",\n \"size\": 2113,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/070a5d4f0eacd2dc0be81ae8996f8982de43046e\"\n },\n {\n \"path\": \"CODE_OF_CONDUCT.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"92bc7565ff0ee145a0041b5179a820f14f39ab22\",\n \"size\": 3355,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/92bc7565ff0ee145a0041b5179a820f14f39ab22\"\n },\n {\n \"path\": \"CONTRIBUTING.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"8552aa241254a61258e1ff9666ab36f32fb1e3b9\",\n \"size\": 3548,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/8552aa241254a61258e1ff9666ab36f32fb1e3b9\"\n },\n {\n \"path\": \"LICENSE\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"42d85938357b49977c126ca03b199129082d4fb8\",\n \"size\": 1091,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/42d85938357b49977c126ca03b199129082d4fb8\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"19df50a78654c8d757ca7f38447aa3d09c7abcce\",\n \"size\": 3698,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/19df50a78654c8d757ca7f38447aa3d09c7abcce\"\n },\n {\n \"path\": \"backend\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\"\n },\n {\n \"path\": \"config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"58afd573bbb69fcca000efd0f5d90b93c93a98dd\",\n \"size\": 853,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/58afd573bbb69fcca000efd0f5d90b93c93a98dd\"\n },\n {\n \"path\": \"content\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"171202850395a6ac687cc4cc318bd28037cbc4da\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/171202850395a6ac687cc4cc318bd28037cbc4da\"\n },\n {\n \"path\": \"flow-typed\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"86c32fd6c3118be5e0dbbb231a834447357236c6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/86c32fd6c3118be5e0dbbb231a834447357236c6\"\n },\n {\n \"path\": \"flow\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"0af45ad00d155c8d8c7407d913ff85278244c9ce\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/0af45ad00d155c8d8c7407d913ff85278244c9ce\"\n },\n {\n \"path\": \"gatsby-browser.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9bd2c9dce175f04980e91cd9dc295a299e3cdb80\",\n \"size\": 90,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9bd2c9dce175f04980e91cd9dc295a299e3cdb80\"\n },\n {\n \"path\": \"gatsby-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"353a109dad62e3f25bf9f5e6a2167f21a6c8b459\",\n \"size\": 7228,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/353a109dad62e3f25bf9f5e6a2167f21a6c8b459\"\n },\n {\n \"path\": \"gatsby-node.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14a207883c2093d2cc071bc5a464e165bcc1fead\",\n \"size\": 409,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14a207883c2093d2cc071bc5a464e165bcc1fead\"\n },\n {\n \"path\": \"gatsby\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4f23c06cd1740bf78304d2c0b29bf6bfdf427981\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4f23c06cd1740bf78304d2c0b29bf6bfdf427981\"\n },\n {\n \"path\": \"jest\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\"\n },\n {\n \"path\": \"netlify.toml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"599b99cc5700404fde316a7ede829776f23e7d45\",\n \"size\": 137,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/599b99cc5700404fde316a7ede829776f23e7d45\"\n },\n {\n \"path\": \"package.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9d777616438b90a18f1a4ebfd5f114b4c06c6f17\",\n \"size\": 6855,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9d777616438b90a18f1a4ebfd5f114b4c06c6f17\"\n },\n {\n \"path\": \"postcss-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d216501e9b351a72e00ba0b7459a6500e27e7da2\",\n \"size\": 703,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d216501e9b351a72e00ba0b7459a6500e27e7da2\"\n },\n {\n \"path\": \"renovate.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"dcc309398785698b8870545c32051a3d72dd8271\",\n \"size\": 460,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/dcc309398785698b8870545c32051a3d72dd8271\"\n },\n {\n \"path\": \"serverless-scripts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ee3701f2fbfc7196ba340f6481d1387d20527898\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ee3701f2fbfc7196ba340f6481d1387d20527898\"\n },\n {\n \"path\": \"serverless-single-page-app-plugin\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"08763fcfba643a06a452398517019bea4a5850ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/08763fcfba643a06a452398517019bea4a5850ba\"\n },\n {\n \"path\": \"serverless.yml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"20b22c5fad229f35d029bf6614d333d82fe8a987\",\n \"size\": 7803,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/20b22c5fad229f35d029bf6614d333d82fe8a987\"\n },\n {\n \"path\": \"src\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"8cdb35a88232c0f32f12f130c92c7cc55f97f471\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/8cdb35a88232c0f32f12f130c92c7cc55f97f471\"\n },\n {\n \"path\": \"static\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"53c6380a600a030d3722bff7ecde36f749fb6964\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/53c6380a600a030d3722bff7ecde36f749fb6964\"\n },\n {\n \"path\": \"utils\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"a592549c9f74db40b51efefcda2fd76810405f27\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/a592549c9f74db40b51efefcda2fd76810405f27\"\n },\n {\n \"path\": \"yarn.lock\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"475c9c1924ca752a0686303e2fdeb7b13ad75f57\",\n \"size\": 793903,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/475c9c1924ca752a0686303e2fdeb7b13ad75f57\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"message\":\"Create Post “1970-01-01-third-title”\",\"tree\":\"683ee758f443afa80d6fb841e8ee17755ee99cd6\",\"parents\":[\"726172deae99c8a2cea4c71e734a02a793d4d9e5\"]}", + "method": "POST", + "url": "/repos/owner/repo/git/commits?ts=900", + "headers": { + "Date": "Tue, 10 Sep 2019 14:18:46 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "1504", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3790", + "X-RateLimit-Reset": "1568128657", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"818544fc04e2a384c01bb345e2cf0f5e\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/commits/c7773f516f5ad1ce58ee914365922646ed58678b", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BA6:B4E0:1752D74:1C654D2:5D77B0C5", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"c7773f516f5ad1ce58ee914365922646ed58678b\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NTc4OTg5OmM3NzczZjUxNmY1YWQxY2U1OGVlOTE0MzY1OTIyNjQ2ZWQ1ODY3OGI=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/c7773f516f5ad1ce58ee914365922646ed58678b\",\n \"html_url\": \"https://github.com/owner/repo/commit/c7773f516f5ad1ce58ee914365922646ed58678b\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T14:18:46Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T14:18:46Z\"\n },\n \"tree\": {\n \"sha\": \"683ee758f443afa80d6fb841e8ee17755ee99cd6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/683ee758f443afa80d6fb841e8ee17755ee99cd6\"\n },\n \"message\": \"Create Post “1970-01-01-third-title”\",\n \"parents\": [\n {\n \"sha\": \"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"html_url\": \"https://github.com/owner/repo/commit/726172deae99c8a2cea4c71e734a02a793d4d9e5\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "status": 201 + }, + { + "body": "{\"ref\":\"refs/heads/cms/1970-01-01-third-title\",\"sha\":\"c7773f516f5ad1ce58ee914365922646ed58678b\"}", + "method": "POST", + "url": "/repos/owner/repo/git/refs?ts=900", + "headers": { + "Date": "Tue, 10 Sep 2019 14:18:47 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "518", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3789", + "X-RateLimit-Reset": "1568128657", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"d91c01d0d00540fa955373ba30d895e6\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "Location": "https://api.github.com/repos/owner/repo/git/refs/heads/cms/1970-01-01-third-title", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BA9:15110:192449A:1E8E404:5D77B0C6", + "connection": "keep-alive" + }, + "response": "{\n \"ref\": \"refs/heads/cms/1970-01-01-third-title\",\n \"node_id\": \"MDM6UmVmMjA3NTc4OTg5OmNtcy8xOTcwLTAxLTAxLXRoaXJkLXRpdGxl\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/heads/cms/1970-01-01-third-title\",\n \"object\": {\n \"sha\": \"c7773f516f5ad1ce58ee914365922646ed58678b\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/c7773f516f5ad1ce58ee914365922646ed58678b\"\n }\n}\n", + "status": 201 + }, + { + "body": "{\"title\":\"Create Post “1970-01-01-third-title”\",\"body\":\"Automatically generated by Netlify CMS\",\"head\":\"cms/1970-01-01-third-title\",\"base\":\"master\"}", + "method": "POST", + "url": "/repos/owner/repo/pulls?ts=900", + "headers": { + "Date": "Tue, 10 Sep 2019 14:18:49 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "21715", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3788", + "X-RateLimit-Reset": "1568128657", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"ea65df44de649737aff5e186936d2eba\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/pulls/3", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BAA:2B1F:129EC68:16BC17E:5D77B0C8", + "connection": "keep-alive" + }, + "response": "{\n \"url\": \"https://api.github.com/repos/owner/repo/pulls/3\",\n \"id\": 316019029,\n \"node_id\": \"MDExOlB1bGxSZXF1ZXN0MzE2MDE5MDI5\",\n \"html_url\": \"https://github.com/owner/repo/pull/3\",\n \"diff_url\": \"https://github.com/owner/repo/pull/3.diff\",\n \"patch_url\": \"https://github.com/owner/repo/pull/3.patch\",\n \"issue_url\": \"https://api.github.com/repos/owner/repo/issues/3\",\n \"number\": 3,\n \"state\": \"open\",\n \"locked\": false,\n \"title\": \"Create Post “1970-01-01-third-title”\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Automatically generated by Netlify CMS\",\n \"created_at\": \"2019-09-10T14:18:48Z\",\n \"updated_at\": \"2019-09-10T14:18:48Z\",\n \"closed_at\": null,\n \"merged_at\": null,\n \"merge_commit_sha\": null,\n \"assignee\": null,\n \"assignees\": [\n\n ],\n \"requested_reviewers\": [\n\n ],\n \"requested_teams\": [\n\n ],\n \"labels\": [\n\n ],\n \"milestone\": null,\n \"commits_url\": \"https://api.github.com/repos/owner/repo/pulls/3/commits\",\n \"review_comments_url\": \"https://api.github.com/repos/owner/repo/pulls/3/comments\",\n \"review_comment_url\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/issues/3/comments\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/c7773f516f5ad1ce58ee914365922646ed58678b\",\n \"head\": {\n \"label\": \"owner:cms/1970-01-01-third-title\",\n \"ref\": \"cms/1970-01-01-third-title\",\n \"sha\": \"c7773f516f5ad1ce58ee914365922646ed58678b\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 207578989,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1Nzg5ODk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-10T14:17:10Z\",\n \"updated_at\": \"2019-09-10T14:17:39Z\",\n \"pushed_at\": \"2019-09-10T14:18:47Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 3,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 3,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"base\": {\n \"label\": \"owner:master\",\n \"ref\": \"master\",\n \"sha\": \"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 207578989,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1Nzg5ODk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-10T14:17:10Z\",\n \"updated_at\": \"2019-09-10T14:17:39Z\",\n \"pushed_at\": \"2019-09-10T14:18:47Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 3,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 3,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/3\"\n },\n \"html\": {\n \"href\": \"https://github.com/owner/repo/pull/3\"\n },\n \"issue\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/3\"\n },\n \"comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/3/comments\"\n },\n \"review_comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/3/comments\"\n },\n \"review_comment\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\"\n },\n \"commits\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/3/commits\"\n },\n \"statuses\": {\n \"href\": \"https://api.github.com/repos/owner/repo/statuses/c7773f516f5ad1ce58ee914365922646ed58678b\"\n }\n },\n \"author_association\": \"OWNER\",\n \"merged\": false,\n \"mergeable\": null,\n \"rebaseable\": null,\n \"mergeable_state\": \"unknown\",\n \"merged_by\": null,\n \"comments\": 0,\n \"review_comments\": 0,\n \"maintainer_can_modify\": false,\n \"commits\": 1,\n \"additions\": 11,\n \"deletions\": 0,\n \"changed_files\": 1\n}\n", + "status": 201 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=900", + "headers": { + "Date": "Tue, 10 Sep 2019 14:18:50 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3787", + "X-RateLimit-Reset": "1568128657", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"02e197ec1cfc4fa9e12af53e017816ba\"", + "Last-Modified": "Tue, 10 Sep 2019 14:17:39 GMT", + "X-Poll-Interval": "300", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BAC:2B1F:129EE65:16BC3EE:5D77B0C9", + "content-length": "484", + "connection": "keep-alive" + }, + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NTc4OTg5OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"c308f235e18ded8ad1ff3cef7de3f36d1d3f6f97\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/c308f235e18ded8ad1ff3cef7de3f36d1d3f6f97\"\n }\n}\n", + "status": 200 + }, + { + "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjMsImhlYWQiOiJjNzc3M2Y1MTZmNWFkMWNlNThlZTkxNDM2NTkyMjY0NmVkNTg2NzhiIn0sInVzZXIiOiJvd25lciIsInN0YXR1cyI6ImRyYWZ0IiwiYnJhbmNoIjoiY21zLzE5NzAtMDEtMDEtdGhpcmQtdGl0bGUiLCJjb2xsZWN0aW9uIjoicG9zdHMiLCJjb21taXRNZXNzYWdlIjoiQ3JlYXRlIFBvc3Qg4oCcMTk3MC0wMS0wMS10aGlyZC10aXRsZeKAnSIsInRpdGxlIjoidGhpcmQgdGl0bGUiLCJkZXNjcmlwdGlvbiI6InRoaXJkIGRlc2NyaXB0aW9uIiwib2JqZWN0cyI6eyJlbnRyeSI6eyJwYXRoIjoiY29udGVudC9wb3N0cy8xOTcwLTAxLTAxLXRoaXJkLXRpdGxlLm1kIiwic2hhIjoiMjhmMTVmZTFhNGVhNTc3NjY2ZGRkOTJiNDFhMjYzYmQxOTQ2MzJhMiJ9LCJmaWxlcyI6W119LCJ0aW1lU3RhbXAiOiIxOTcwLTAxLTAxVDAwOjAwOjAwLjkwMFoifQ==\",\"encoding\":\"base64\"}", + "method": "POST", + "url": "/repos/owner/repo/git/blobs?ts=900", + "headers": { + "Date": "Tue, 10 Sep 2019 14:18:50 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "207", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3786", + "X-RateLimit-Reset": "1568128657", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"2550b26b2200d132993b21c5c39a8f78\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/blobs/d3f15a84d5a717b44b5ce34d3185586b4d05f727", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BAF:1510C:18D472:1E6B66:5D77B0CA", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"d3f15a84d5a717b44b5ce34d3185586b4d05f727\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d3f15a84d5a717b44b5ce34d3185586b4d05f727\"\n}\n", + "status": 201 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/trees/c308f235e18ded8ad1ff3cef7de3f36d1d3f6f97?ts=900", + "headers": { + "Date": "Tue, 10 Sep 2019 14:18:51 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3785", + "X-RateLimit-Reset": "1568128657", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"3488f14de21bf04b205f01499d5045fd\"", + "Last-Modified": "Tue, 10 Sep 2019 14:17:39 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BB0:15110:1924BE5:1E8ED02:5D77B0CB", + "content-length": "1230", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"c308f235e18ded8ad1ff3cef7de3f36d1d3f6f97\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/c308f235e18ded8ad1ff3cef7de3f36d1d3f6f97\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"11fcdfb32c7f713ad750051185f7cf96432d9e9e\",\n \"size\": 462,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/11fcdfb32c7f713ad750051185f7cf96432d9e9e\"\n },\n {\n \"path\": \"1970-01-01-second-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"cb41e9645a6b2283378b575576507f6ba90382d5\",\n \"size\": 467,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/cb41e9645a6b2283378b575576507f6ba90382d5\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 200 + }, + { + "body": "{\"base_tree\":\"c308f235e18ded8ad1ff3cef7de3f36d1d3f6f97\",\"tree\":[{\"path\":\"1970-01-01-third-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"d3f15a84d5a717b44b5ce34d3185586b4d05f727\"}]}", + "method": "POST", + "url": "/repos/owner/repo/git/trees?ts=900", + "headers": { + "Date": "Tue, 10 Sep 2019 14:18:52 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "1564", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3784", + "X-RateLimit-Reset": "1568128657", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"d5f54212c81532a078937f03b21abc20\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/trees/02a61a13639baa6d61c80fffb197c22330a8ab4b", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BB2:3ED77:B08DFC:D61DF5:5D77B0CB", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"02a61a13639baa6d61c80fffb197c22330a8ab4b\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/02a61a13639baa6d61c80fffb197c22330a8ab4b\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"11fcdfb32c7f713ad750051185f7cf96432d9e9e\",\n \"size\": 462,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/11fcdfb32c7f713ad750051185f7cf96432d9e9e\"\n },\n {\n \"path\": \"1970-01-01-second-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"cb41e9645a6b2283378b575576507f6ba90382d5\",\n \"size\": 467,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/cb41e9645a6b2283378b575576507f6ba90382d5\"\n },\n {\n \"path\": \"1970-01-01-third-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d3f15a84d5a717b44b5ce34d3185586b4d05f727\",\n \"size\": 462,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d3f15a84d5a717b44b5ce34d3185586b4d05f727\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"message\":\"Updating “1970-01-01-third-title” metadata\",\"tree\":\"02a61a13639baa6d61c80fffb197c22330a8ab4b\",\"parents\":[\"c308f235e18ded8ad1ff3cef7de3f36d1d3f6f97\"]}", + "method": "POST", + "url": "/repos/owner/repo/git/commits?ts=900", + "headers": { + "Date": "Tue, 10 Sep 2019 14:18:52 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "1510", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3783", + "X-RateLimit-Reset": "1568128657", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"0b13c9d776d02b22e21b9f9dbe2d36e7\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/commits/339b47a8ed201377ec9f9d968224076c25f8f7f4", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BB5:9D1F:A7A505:CCA5FE:5D77B0CC", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"339b47a8ed201377ec9f9d968224076c25f8f7f4\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NTc4OTg5OjMzOWI0N2E4ZWQyMDEzNzdlYzlmOWQ5NjgyMjQwNzZjMjVmOGY3ZjQ=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/339b47a8ed201377ec9f9d968224076c25f8f7f4\",\n \"html_url\": \"https://github.com/owner/repo/commit/339b47a8ed201377ec9f9d968224076c25f8f7f4\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T14:18:52Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T14:18:52Z\"\n },\n \"tree\": {\n \"sha\": \"02a61a13639baa6d61c80fffb197c22330a8ab4b\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/02a61a13639baa6d61c80fffb197c22330a8ab4b\"\n },\n \"message\": \"Updating “1970-01-01-third-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"c308f235e18ded8ad1ff3cef7de3f36d1d3f6f97\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/c308f235e18ded8ad1ff3cef7de3f36d1d3f6f97\",\n \"html_url\": \"https://github.com/owner/repo/commit/c308f235e18ded8ad1ff3cef7de3f36d1d3f6f97\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "status": 201 + }, + { + "body": "{\"sha\":\"339b47a8ed201377ec9f9d968224076c25f8f7f4\",\"force\":false}", + "method": "PATCH", + "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=900", + "headers": { + "Date": "Tue, 10 Sep 2019 14:18:54 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3782", + "X-RateLimit-Reset": "1568128657", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"9f016911b2e6e2b9417edf7e38766eba\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BB7:2B1F:129F2C5:16BC954:5D77B0CD", + "content-length": "484", + "connection": "keep-alive" + }, + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NTc4OTg5OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"339b47a8ed201377ec9f9d968224076c25f8f7f4\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/339b47a8ed201377ec9f9d968224076c25f8f7f4\"\n }\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/content/posts/1970-01-01-third-title.md?ts=900&ref=cms/1970-01-01-third-title", + "headers": { + "Date": "Tue, 10 Sep 2019 14:18:54 GMT", + "Content-Type": "application/vnd.github.VERSION.raw; charset=utf-8", + "Content-Length": "167", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3780", + "X-RateLimit-Reset": "1568128657", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"28f15fe1a4ea577666ddd92b41a263bd194632a2\"", + "Last-Modified": "Tue, 10 Sep 2019 14:18:46 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BBA:B4DE:126BBB4:166ED41:5D77B0CE", + "connection": "keep-alive" + }, + "response": "---\ntemplate: post\ntitle: third title\ndraft: true\ndate: 1970-01-01T00:00:00.600Z\ndescription: third description\ncategory: third category\ntags:\n - tag3\n---\nthird body\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/content/posts/1970-01-01-third-title.md?ts=900&ref=master", + "headers": { + "Date": "Tue, 10 Sep 2019 14:18:54 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "404 Not Found", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3781", + "X-RateLimit-Reset": "1568128657", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BB9:2B24:186DAC0:1DB3E62:5D77B0CE", + "content-length": "116", + "connection": "keep-alive" + }, + "response": "{\n \"message\": \"Not Found\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/#get-contents\"\n}\n", + "status": 404 + }, + { + "method": "GET", + "url": "/repos/owner/repo/commits/c7773f516f5ad1ce58ee914365922646ed58678b/status?ts=900", + "headers": { + "Date": "Tue, 10 Sep 2019 14:18:55 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3779", + "X-RateLimit-Reset": "1568128657", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"f4730a048ce637a39701677890e074a5\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo, repo:status", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BBC:2B24:186DC69:1DB4052:5D77B0CF", + "content-length": "6574", + "connection": "keep-alive" + }, + "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"c7773f516f5ad1ce58ee914365922646ed58678b\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 207578989,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1Nzg5ODk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/c7773f516f5ad1ce58ee914365922646ed58678b\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/c7773f516f5ad1ce58ee914365922646ed58678b/status\"\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/refs/heads/cms?ts=900", + "headers": { + "Date": "Tue, 10 Sep 2019 14:18:56 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3778", + "X-RateLimit-Reset": "1568128657", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"41240c375f52df4cd404eec77d7253e3\"", + "Last-Modified": "Tue, 10 Sep 2019 14:17:39 GMT", + "X-Poll-Interval": "300", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BBE:1510F:12AAA52:16AAAE3:5D77B0CF", + "content-length": "1626", + "connection": "keep-alive" + }, + "response": "[\n {\n \"ref\": \"refs/heads/cms/1970-01-01-first-title\",\n \"node_id\": \"MDM6UmVmMjA3NTc4OTg5OmNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxl\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/heads/cms/1970-01-01-first-title\",\n \"object\": {\n \"sha\": \"ebc456f03247359344a722d2644b801960bc9e91\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/ebc456f03247359344a722d2644b801960bc9e91\"\n }\n },\n {\n \"ref\": \"refs/heads/cms/1970-01-01-second-title\",\n \"node_id\": \"MDM6UmVmMjA3NTc4OTg5OmNtcy8xOTcwLTAxLTAxLXNlY29uZC10aXRsZQ==\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/heads/cms/1970-01-01-second-title\",\n \"object\": {\n \"sha\": \"f9bf5fbfc2565e5c4d4b92da6b65dc7c49355331\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/f9bf5fbfc2565e5c4d4b92da6b65dc7c49355331\"\n }\n },\n {\n \"ref\": \"refs/heads/cms/1970-01-01-third-title\",\n \"node_id\": \"MDM6UmVmMjA3NTc4OTg5OmNtcy8xOTcwLTAxLTAxLXRoaXJkLXRpdGxl\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/heads/cms/1970-01-01-third-title\",\n \"object\": {\n \"sha\": \"c7773f516f5ad1ce58ee914365922646ed58678b\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/c7773f516f5ad1ce58ee914365922646ed58678b\"\n }\n }\n]\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/pulls?ts=900&head=cms/1970-01-01-third-title&state=open&base=master", + "headers": { + "Date": "Tue, 10 Sep 2019 14:18:57 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3777", + "X-RateLimit-Reset": "1568128657", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"5ab10aeb5a490aa917b78ba5ae0c46b8\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BC6:3ED76:4AE30D:5BD16F:5D77B0D0", + "content-length": "66459", + "connection": "keep-alive" + }, + "response": "[\n {\n \"url\": \"https://api.github.com/repos/owner/repo/pulls/3\",\n \"id\": 316019029,\n \"node_id\": \"MDExOlB1bGxSZXF1ZXN0MzE2MDE5MDI5\",\n \"html_url\": \"https://github.com/owner/repo/pull/3\",\n \"diff_url\": \"https://github.com/owner/repo/pull/3.diff\",\n \"patch_url\": \"https://github.com/owner/repo/pull/3.patch\",\n \"issue_url\": \"https://api.github.com/repos/owner/repo/issues/3\",\n \"number\": 3,\n \"state\": \"open\",\n \"locked\": false,\n \"title\": \"Create Post “1970-01-01-third-title”\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Automatically generated by Netlify CMS\",\n \"created_at\": \"2019-09-10T14:18:48Z\",\n \"updated_at\": \"2019-09-10T14:18:48Z\",\n \"closed_at\": null,\n \"merged_at\": null,\n \"merge_commit_sha\": \"96528e8cf70dc0e52050814fd2575b5c6972ef89\",\n \"assignee\": null,\n \"assignees\": [\n\n ],\n \"requested_reviewers\": [\n\n ],\n \"requested_teams\": [\n\n ],\n \"labels\": [\n\n ],\n \"milestone\": null,\n \"commits_url\": \"https://api.github.com/repos/owner/repo/pulls/3/commits\",\n \"review_comments_url\": \"https://api.github.com/repos/owner/repo/pulls/3/comments\",\n \"review_comment_url\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/issues/3/comments\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/c7773f516f5ad1ce58ee914365922646ed58678b\",\n \"head\": {\n \"label\": \"owner:cms/1970-01-01-third-title\",\n \"ref\": \"cms/1970-01-01-third-title\",\n \"sha\": \"c7773f516f5ad1ce58ee914365922646ed58678b\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 207578989,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1Nzg5ODk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-10T14:17:10Z\",\n \"updated_at\": \"2019-09-10T14:17:39Z\",\n \"pushed_at\": \"2019-09-10T14:18:53Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 3,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 3,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"base\": {\n \"label\": \"owner:master\",\n \"ref\": \"master\",\n \"sha\": \"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 207578989,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1Nzg5ODk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-10T14:17:10Z\",\n \"updated_at\": \"2019-09-10T14:17:39Z\",\n \"pushed_at\": \"2019-09-10T14:18:53Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 3,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 3,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/3\"\n },\n \"html\": {\n \"href\": \"https://github.com/owner/repo/pull/3\"\n },\n \"issue\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/3\"\n },\n \"comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/3/comments\"\n },\n \"review_comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/3/comments\"\n },\n \"review_comment\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\"\n },\n \"commits\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/3/commits\"\n },\n \"statuses\": {\n \"href\": \"https://api.github.com/repos/owner/repo/statuses/c7773f516f5ad1ce58ee914365922646ed58678b\"\n }\n },\n \"author_association\": \"OWNER\"\n },\n {\n \"url\": \"https://api.github.com/repos/owner/repo/pulls/2\",\n \"id\": 316018822,\n \"node_id\": \"MDExOlB1bGxSZXF1ZXN0MzE2MDE4ODIy\",\n \"html_url\": \"https://github.com/owner/repo/pull/2\",\n \"diff_url\": \"https://github.com/owner/repo/pull/2.diff\",\n \"patch_url\": \"https://github.com/owner/repo/pull/2.patch\",\n \"issue_url\": \"https://api.github.com/repos/owner/repo/issues/2\",\n \"number\": 2,\n \"state\": \"open\",\n \"locked\": false,\n \"title\": \"Create Post “1970-01-01-second-title”\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Automatically generated by Netlify CMS\",\n \"created_at\": \"2019-09-10T14:18:25Z\",\n \"updated_at\": \"2019-09-10T14:18:25Z\",\n \"closed_at\": null,\n \"merged_at\": null,\n \"merge_commit_sha\": \"6763ebfba0752bf0c72441370b472d96f116c747\",\n \"assignee\": null,\n \"assignees\": [\n\n ],\n \"requested_reviewers\": [\n\n ],\n \"requested_teams\": [\n\n ],\n \"labels\": [\n\n ],\n \"milestone\": null,\n \"commits_url\": \"https://api.github.com/repos/owner/repo/pulls/2/commits\",\n \"review_comments_url\": \"https://api.github.com/repos/owner/repo/pulls/2/comments\",\n \"review_comment_url\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/issues/2/comments\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/f9bf5fbfc2565e5c4d4b92da6b65dc7c49355331\",\n \"head\": {\n \"label\": \"owner:cms/1970-01-01-second-title\",\n \"ref\": \"cms/1970-01-01-second-title\",\n \"sha\": \"f9bf5fbfc2565e5c4d4b92da6b65dc7c49355331\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 207578989,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1Nzg5ODk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-10T14:17:10Z\",\n \"updated_at\": \"2019-09-10T14:17:39Z\",\n \"pushed_at\": \"2019-09-10T14:18:53Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 3,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 3,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"base\": {\n \"label\": \"owner:master\",\n \"ref\": \"master\",\n \"sha\": \"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 207578989,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1Nzg5ODk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-10T14:17:10Z\",\n \"updated_at\": \"2019-09-10T14:17:39Z\",\n \"pushed_at\": \"2019-09-10T14:18:53Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 3,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 3,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/2\"\n },\n \"html\": {\n \"href\": \"https://github.com/owner/repo/pull/2\"\n },\n \"issue\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/2\"\n },\n \"comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/2/comments\"\n },\n \"review_comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/2/comments\"\n },\n \"review_comment\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\"\n },\n \"commits\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/2/commits\"\n },\n \"statuses\": {\n \"href\": \"https://api.github.com/repos/owner/repo/statuses/f9bf5fbfc2565e5c4d4b92da6b65dc7c49355331\"\n }\n },\n \"author_association\": \"OWNER\"\n },\n {\n \"url\": \"https://api.github.com/repos/owner/repo/pulls/1\",\n \"id\": 316018597,\n \"node_id\": \"MDExOlB1bGxSZXF1ZXN0MzE2MDE4NTk3\",\n \"html_url\": \"https://github.com/owner/repo/pull/1\",\n \"diff_url\": \"https://github.com/owner/repo/pull/1.diff\",\n \"patch_url\": \"https://github.com/owner/repo/pull/1.patch\",\n \"issue_url\": \"https://api.github.com/repos/owner/repo/issues/1\",\n \"number\": 1,\n \"state\": \"open\",\n \"locked\": false,\n \"title\": \"Create Post “1970-01-01-first-title”\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Automatically generated by Netlify CMS\",\n \"created_at\": \"2019-09-10T14:17:59Z\",\n \"updated_at\": \"2019-09-10T14:17:59Z\",\n \"closed_at\": null,\n \"merged_at\": null,\n \"merge_commit_sha\": \"de01e60116f6c9eb4679e6fe0385d2491e1193bf\",\n \"assignee\": null,\n \"assignees\": [\n\n ],\n \"requested_reviewers\": [\n\n ],\n \"requested_teams\": [\n\n ],\n \"labels\": [\n\n ],\n \"milestone\": null,\n \"commits_url\": \"https://api.github.com/repos/owner/repo/pulls/1/commits\",\n \"review_comments_url\": \"https://api.github.com/repos/owner/repo/pulls/1/comments\",\n \"review_comment_url\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/issues/1/comments\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/ebc456f03247359344a722d2644b801960bc9e91\",\n \"head\": {\n \"label\": \"owner:cms/1970-01-01-first-title\",\n \"ref\": \"cms/1970-01-01-first-title\",\n \"sha\": \"ebc456f03247359344a722d2644b801960bc9e91\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 207578989,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1Nzg5ODk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-10T14:17:10Z\",\n \"updated_at\": \"2019-09-10T14:17:39Z\",\n \"pushed_at\": \"2019-09-10T14:18:53Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 3,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 3,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"base\": {\n \"label\": \"owner:master\",\n \"ref\": \"master\",\n \"sha\": \"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 207578989,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1Nzg5ODk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-10T14:17:10Z\",\n \"updated_at\": \"2019-09-10T14:17:39Z\",\n \"pushed_at\": \"2019-09-10T14:18:53Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 3,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 3,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/1\"\n },\n \"html\": {\n \"href\": \"https://github.com/owner/repo/pull/1\"\n },\n \"issue\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/1\"\n },\n \"comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/1/comments\"\n },\n \"review_comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/1/comments\"\n },\n \"review_comment\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\"\n },\n \"commits\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/1/commits\"\n },\n \"statuses\": {\n \"href\": \"https://api.github.com/repos/owner/repo/statuses/ebc456f03247359344a722d2644b801960bc9e91\"\n }\n },\n \"author_association\": \"OWNER\"\n }\n]\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/pulls?ts=900&head=cms/1970-01-01-first-title&state=open&base=master", + "headers": { + "Date": "Tue, 10 Sep 2019 14:18:57 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3776", + "X-RateLimit-Reset": "1568128657", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"5ab10aeb5a490aa917b78ba5ae0c46b8\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BC0:15110:1925596:1E8F8CE:5D77B0D0", + "content-length": "66459", + "connection": "keep-alive" + }, + "response": "[\n {\n \"url\": \"https://api.github.com/repos/owner/repo/pulls/3\",\n \"id\": 316019029,\n \"node_id\": \"MDExOlB1bGxSZXF1ZXN0MzE2MDE5MDI5\",\n \"html_url\": \"https://github.com/owner/repo/pull/3\",\n \"diff_url\": \"https://github.com/owner/repo/pull/3.diff\",\n \"patch_url\": \"https://github.com/owner/repo/pull/3.patch\",\n \"issue_url\": \"https://api.github.com/repos/owner/repo/issues/3\",\n \"number\": 3,\n \"state\": \"open\",\n \"locked\": false,\n \"title\": \"Create Post “1970-01-01-third-title”\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Automatically generated by Netlify CMS\",\n \"created_at\": \"2019-09-10T14:18:48Z\",\n \"updated_at\": \"2019-09-10T14:18:48Z\",\n \"closed_at\": null,\n \"merged_at\": null,\n \"merge_commit_sha\": \"96528e8cf70dc0e52050814fd2575b5c6972ef89\",\n \"assignee\": null,\n \"assignees\": [\n\n ],\n \"requested_reviewers\": [\n\n ],\n \"requested_teams\": [\n\n ],\n \"labels\": [\n\n ],\n \"milestone\": null,\n \"commits_url\": \"https://api.github.com/repos/owner/repo/pulls/3/commits\",\n \"review_comments_url\": \"https://api.github.com/repos/owner/repo/pulls/3/comments\",\n \"review_comment_url\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/issues/3/comments\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/c7773f516f5ad1ce58ee914365922646ed58678b\",\n \"head\": {\n \"label\": \"owner:cms/1970-01-01-third-title\",\n \"ref\": \"cms/1970-01-01-third-title\",\n \"sha\": \"c7773f516f5ad1ce58ee914365922646ed58678b\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 207578989,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1Nzg5ODk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-10T14:17:10Z\",\n \"updated_at\": \"2019-09-10T14:17:39Z\",\n \"pushed_at\": \"2019-09-10T14:18:53Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 3,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 3,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"base\": {\n \"label\": \"owner:master\",\n \"ref\": \"master\",\n \"sha\": \"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 207578989,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1Nzg5ODk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-10T14:17:10Z\",\n \"updated_at\": \"2019-09-10T14:17:39Z\",\n \"pushed_at\": \"2019-09-10T14:18:53Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 3,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 3,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/3\"\n },\n \"html\": {\n \"href\": \"https://github.com/owner/repo/pull/3\"\n },\n \"issue\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/3\"\n },\n \"comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/3/comments\"\n },\n \"review_comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/3/comments\"\n },\n \"review_comment\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\"\n },\n \"commits\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/3/commits\"\n },\n \"statuses\": {\n \"href\": \"https://api.github.com/repos/owner/repo/statuses/c7773f516f5ad1ce58ee914365922646ed58678b\"\n }\n },\n \"author_association\": \"OWNER\"\n },\n {\n \"url\": \"https://api.github.com/repos/owner/repo/pulls/2\",\n \"id\": 316018822,\n \"node_id\": \"MDExOlB1bGxSZXF1ZXN0MzE2MDE4ODIy\",\n \"html_url\": \"https://github.com/owner/repo/pull/2\",\n \"diff_url\": \"https://github.com/owner/repo/pull/2.diff\",\n \"patch_url\": \"https://github.com/owner/repo/pull/2.patch\",\n \"issue_url\": \"https://api.github.com/repos/owner/repo/issues/2\",\n \"number\": 2,\n \"state\": \"open\",\n \"locked\": false,\n \"title\": \"Create Post “1970-01-01-second-title”\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Automatically generated by Netlify CMS\",\n \"created_at\": \"2019-09-10T14:18:25Z\",\n \"updated_at\": \"2019-09-10T14:18:25Z\",\n \"closed_at\": null,\n \"merged_at\": null,\n \"merge_commit_sha\": \"6763ebfba0752bf0c72441370b472d96f116c747\",\n \"assignee\": null,\n \"assignees\": [\n\n ],\n \"requested_reviewers\": [\n\n ],\n \"requested_teams\": [\n\n ],\n \"labels\": [\n\n ],\n \"milestone\": null,\n \"commits_url\": \"https://api.github.com/repos/owner/repo/pulls/2/commits\",\n \"review_comments_url\": \"https://api.github.com/repos/owner/repo/pulls/2/comments\",\n \"review_comment_url\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/issues/2/comments\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/f9bf5fbfc2565e5c4d4b92da6b65dc7c49355331\",\n \"head\": {\n \"label\": \"owner:cms/1970-01-01-second-title\",\n \"ref\": \"cms/1970-01-01-second-title\",\n \"sha\": \"f9bf5fbfc2565e5c4d4b92da6b65dc7c49355331\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 207578989,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1Nzg5ODk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-10T14:17:10Z\",\n \"updated_at\": \"2019-09-10T14:17:39Z\",\n \"pushed_at\": \"2019-09-10T14:18:53Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 3,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 3,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"base\": {\n \"label\": \"owner:master\",\n \"ref\": \"master\",\n \"sha\": \"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 207578989,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1Nzg5ODk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-10T14:17:10Z\",\n \"updated_at\": \"2019-09-10T14:17:39Z\",\n \"pushed_at\": \"2019-09-10T14:18:53Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 3,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 3,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/2\"\n },\n \"html\": {\n \"href\": \"https://github.com/owner/repo/pull/2\"\n },\n \"issue\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/2\"\n },\n \"comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/2/comments\"\n },\n \"review_comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/2/comments\"\n },\n \"review_comment\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\"\n },\n \"commits\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/2/commits\"\n },\n \"statuses\": {\n \"href\": \"https://api.github.com/repos/owner/repo/statuses/f9bf5fbfc2565e5c4d4b92da6b65dc7c49355331\"\n }\n },\n \"author_association\": \"OWNER\"\n },\n {\n \"url\": \"https://api.github.com/repos/owner/repo/pulls/1\",\n \"id\": 316018597,\n \"node_id\": \"MDExOlB1bGxSZXF1ZXN0MzE2MDE4NTk3\",\n \"html_url\": \"https://github.com/owner/repo/pull/1\",\n \"diff_url\": \"https://github.com/owner/repo/pull/1.diff\",\n \"patch_url\": \"https://github.com/owner/repo/pull/1.patch\",\n \"issue_url\": \"https://api.github.com/repos/owner/repo/issues/1\",\n \"number\": 1,\n \"state\": \"open\",\n \"locked\": false,\n \"title\": \"Create Post “1970-01-01-first-title”\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Automatically generated by Netlify CMS\",\n \"created_at\": \"2019-09-10T14:17:59Z\",\n \"updated_at\": \"2019-09-10T14:17:59Z\",\n \"closed_at\": null,\n \"merged_at\": null,\n \"merge_commit_sha\": \"de01e60116f6c9eb4679e6fe0385d2491e1193bf\",\n \"assignee\": null,\n \"assignees\": [\n\n ],\n \"requested_reviewers\": [\n\n ],\n \"requested_teams\": [\n\n ],\n \"labels\": [\n\n ],\n \"milestone\": null,\n \"commits_url\": \"https://api.github.com/repos/owner/repo/pulls/1/commits\",\n \"review_comments_url\": \"https://api.github.com/repos/owner/repo/pulls/1/comments\",\n \"review_comment_url\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/issues/1/comments\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/ebc456f03247359344a722d2644b801960bc9e91\",\n \"head\": {\n \"label\": \"owner:cms/1970-01-01-first-title\",\n \"ref\": \"cms/1970-01-01-first-title\",\n \"sha\": \"ebc456f03247359344a722d2644b801960bc9e91\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 207578989,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1Nzg5ODk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-10T14:17:10Z\",\n \"updated_at\": \"2019-09-10T14:17:39Z\",\n \"pushed_at\": \"2019-09-10T14:18:53Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 3,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 3,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"base\": {\n \"label\": \"owner:master\",\n \"ref\": \"master\",\n \"sha\": \"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 207578989,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1Nzg5ODk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-10T14:17:10Z\",\n \"updated_at\": \"2019-09-10T14:17:39Z\",\n \"pushed_at\": \"2019-09-10T14:18:53Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 3,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 3,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/1\"\n },\n \"html\": {\n \"href\": \"https://github.com/owner/repo/pull/1\"\n },\n \"issue\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/1\"\n },\n \"comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/1/comments\"\n },\n \"review_comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/1/comments\"\n },\n \"review_comment\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\"\n },\n \"commits\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/1/commits\"\n },\n \"statuses\": {\n \"href\": \"https://api.github.com/repos/owner/repo/statuses/ebc456f03247359344a722d2644b801960bc9e91\"\n }\n },\n \"author_association\": \"OWNER\"\n }\n]\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/pulls?ts=900&head=cms/1970-01-01-second-title&state=open&base=master", + "headers": { + "Date": "Tue, 10 Sep 2019 14:18:57 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3775", + "X-RateLimit-Reset": "1568128657", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"5ab10aeb5a490aa917b78ba5ae0c46b8\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BC3:B4DE:126BE42:166F06F:5D77B0D0", + "content-length": "66459", + "connection": "keep-alive" + }, + "response": "[\n {\n \"url\": \"https://api.github.com/repos/owner/repo/pulls/3\",\n \"id\": 316019029,\n \"node_id\": \"MDExOlB1bGxSZXF1ZXN0MzE2MDE5MDI5\",\n \"html_url\": \"https://github.com/owner/repo/pull/3\",\n \"diff_url\": \"https://github.com/owner/repo/pull/3.diff\",\n \"patch_url\": \"https://github.com/owner/repo/pull/3.patch\",\n \"issue_url\": \"https://api.github.com/repos/owner/repo/issues/3\",\n \"number\": 3,\n \"state\": \"open\",\n \"locked\": false,\n \"title\": \"Create Post “1970-01-01-third-title”\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Automatically generated by Netlify CMS\",\n \"created_at\": \"2019-09-10T14:18:48Z\",\n \"updated_at\": \"2019-09-10T14:18:48Z\",\n \"closed_at\": null,\n \"merged_at\": null,\n \"merge_commit_sha\": \"96528e8cf70dc0e52050814fd2575b5c6972ef89\",\n \"assignee\": null,\n \"assignees\": [\n\n ],\n \"requested_reviewers\": [\n\n ],\n \"requested_teams\": [\n\n ],\n \"labels\": [\n\n ],\n \"milestone\": null,\n \"commits_url\": \"https://api.github.com/repos/owner/repo/pulls/3/commits\",\n \"review_comments_url\": \"https://api.github.com/repos/owner/repo/pulls/3/comments\",\n \"review_comment_url\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/issues/3/comments\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/c7773f516f5ad1ce58ee914365922646ed58678b\",\n \"head\": {\n \"label\": \"owner:cms/1970-01-01-third-title\",\n \"ref\": \"cms/1970-01-01-third-title\",\n \"sha\": \"c7773f516f5ad1ce58ee914365922646ed58678b\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 207578989,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1Nzg5ODk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-10T14:17:10Z\",\n \"updated_at\": \"2019-09-10T14:17:39Z\",\n \"pushed_at\": \"2019-09-10T14:18:53Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 3,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 3,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"base\": {\n \"label\": \"owner:master\",\n \"ref\": \"master\",\n \"sha\": \"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 207578989,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1Nzg5ODk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-10T14:17:10Z\",\n \"updated_at\": \"2019-09-10T14:17:39Z\",\n \"pushed_at\": \"2019-09-10T14:18:53Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 3,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 3,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/3\"\n },\n \"html\": {\n \"href\": \"https://github.com/owner/repo/pull/3\"\n },\n \"issue\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/3\"\n },\n \"comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/3/comments\"\n },\n \"review_comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/3/comments\"\n },\n \"review_comment\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\"\n },\n \"commits\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/3/commits\"\n },\n \"statuses\": {\n \"href\": \"https://api.github.com/repos/owner/repo/statuses/c7773f516f5ad1ce58ee914365922646ed58678b\"\n }\n },\n \"author_association\": \"OWNER\"\n },\n {\n \"url\": \"https://api.github.com/repos/owner/repo/pulls/2\",\n \"id\": 316018822,\n \"node_id\": \"MDExOlB1bGxSZXF1ZXN0MzE2MDE4ODIy\",\n \"html_url\": \"https://github.com/owner/repo/pull/2\",\n \"diff_url\": \"https://github.com/owner/repo/pull/2.diff\",\n \"patch_url\": \"https://github.com/owner/repo/pull/2.patch\",\n \"issue_url\": \"https://api.github.com/repos/owner/repo/issues/2\",\n \"number\": 2,\n \"state\": \"open\",\n \"locked\": false,\n \"title\": \"Create Post “1970-01-01-second-title”\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Automatically generated by Netlify CMS\",\n \"created_at\": \"2019-09-10T14:18:25Z\",\n \"updated_at\": \"2019-09-10T14:18:25Z\",\n \"closed_at\": null,\n \"merged_at\": null,\n \"merge_commit_sha\": \"6763ebfba0752bf0c72441370b472d96f116c747\",\n \"assignee\": null,\n \"assignees\": [\n\n ],\n \"requested_reviewers\": [\n\n ],\n \"requested_teams\": [\n\n ],\n \"labels\": [\n\n ],\n \"milestone\": null,\n \"commits_url\": \"https://api.github.com/repos/owner/repo/pulls/2/commits\",\n \"review_comments_url\": \"https://api.github.com/repos/owner/repo/pulls/2/comments\",\n \"review_comment_url\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/issues/2/comments\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/f9bf5fbfc2565e5c4d4b92da6b65dc7c49355331\",\n \"head\": {\n \"label\": \"owner:cms/1970-01-01-second-title\",\n \"ref\": \"cms/1970-01-01-second-title\",\n \"sha\": \"f9bf5fbfc2565e5c4d4b92da6b65dc7c49355331\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 207578989,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1Nzg5ODk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-10T14:17:10Z\",\n \"updated_at\": \"2019-09-10T14:17:39Z\",\n \"pushed_at\": \"2019-09-10T14:18:53Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 3,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 3,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"base\": {\n \"label\": \"owner:master\",\n \"ref\": \"master\",\n \"sha\": \"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 207578989,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1Nzg5ODk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-10T14:17:10Z\",\n \"updated_at\": \"2019-09-10T14:17:39Z\",\n \"pushed_at\": \"2019-09-10T14:18:53Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 3,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 3,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/2\"\n },\n \"html\": {\n \"href\": \"https://github.com/owner/repo/pull/2\"\n },\n \"issue\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/2\"\n },\n \"comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/2/comments\"\n },\n \"review_comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/2/comments\"\n },\n \"review_comment\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\"\n },\n \"commits\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/2/commits\"\n },\n \"statuses\": {\n \"href\": \"https://api.github.com/repos/owner/repo/statuses/f9bf5fbfc2565e5c4d4b92da6b65dc7c49355331\"\n }\n },\n \"author_association\": \"OWNER\"\n },\n {\n \"url\": \"https://api.github.com/repos/owner/repo/pulls/1\",\n \"id\": 316018597,\n \"node_id\": \"MDExOlB1bGxSZXF1ZXN0MzE2MDE4NTk3\",\n \"html_url\": \"https://github.com/owner/repo/pull/1\",\n \"diff_url\": \"https://github.com/owner/repo/pull/1.diff\",\n \"patch_url\": \"https://github.com/owner/repo/pull/1.patch\",\n \"issue_url\": \"https://api.github.com/repos/owner/repo/issues/1\",\n \"number\": 1,\n \"state\": \"open\",\n \"locked\": false,\n \"title\": \"Create Post “1970-01-01-first-title”\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Automatically generated by Netlify CMS\",\n \"created_at\": \"2019-09-10T14:17:59Z\",\n \"updated_at\": \"2019-09-10T14:17:59Z\",\n \"closed_at\": null,\n \"merged_at\": null,\n \"merge_commit_sha\": \"de01e60116f6c9eb4679e6fe0385d2491e1193bf\",\n \"assignee\": null,\n \"assignees\": [\n\n ],\n \"requested_reviewers\": [\n\n ],\n \"requested_teams\": [\n\n ],\n \"labels\": [\n\n ],\n \"milestone\": null,\n \"commits_url\": \"https://api.github.com/repos/owner/repo/pulls/1/commits\",\n \"review_comments_url\": \"https://api.github.com/repos/owner/repo/pulls/1/comments\",\n \"review_comment_url\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/issues/1/comments\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/ebc456f03247359344a722d2644b801960bc9e91\",\n \"head\": {\n \"label\": \"owner:cms/1970-01-01-first-title\",\n \"ref\": \"cms/1970-01-01-first-title\",\n \"sha\": \"ebc456f03247359344a722d2644b801960bc9e91\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 207578989,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1Nzg5ODk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-10T14:17:10Z\",\n \"updated_at\": \"2019-09-10T14:17:39Z\",\n \"pushed_at\": \"2019-09-10T14:18:53Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 3,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 3,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"base\": {\n \"label\": \"owner:master\",\n \"ref\": \"master\",\n \"sha\": \"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 207578989,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1Nzg5ODk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-10T14:17:10Z\",\n \"updated_at\": \"2019-09-10T14:17:39Z\",\n \"pushed_at\": \"2019-09-10T14:18:53Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 3,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 3,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/1\"\n },\n \"html\": {\n \"href\": \"https://github.com/owner/repo/pull/1\"\n },\n \"issue\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/1\"\n },\n \"comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/1/comments\"\n },\n \"review_comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/1/comments\"\n },\n \"review_comment\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\"\n },\n \"commits\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/1/commits\"\n },\n \"statuses\": {\n \"href\": \"https://api.github.com/repos/owner/repo/statuses/ebc456f03247359344a722d2644b801960bc9e91\"\n }\n },\n \"author_association\": \"OWNER\"\n }\n]\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=900&ref=cms/1970-01-01-first-title", + "headers": { + "Date": "Tue, 10 Sep 2019 14:18:57 GMT", + "Content-Type": "application/vnd.github.VERSION.raw; charset=utf-8", + "Content-Length": "167", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3774", + "X-RateLimit-Reset": "1568128657", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"a041245814892e3f73f63ca54333fda649b7fc0b\"", + "Last-Modified": "Tue, 10 Sep 2019 14:17:57 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BCB:3ED7B:12DF356:16EF14F:5D77B0D1", + "connection": "keep-alive" + }, + "response": "---\ntemplate: post\ntitle: first title\ndraft: true\ndate: 1970-01-01T00:00:00.000Z\ndescription: first description\ncategory: first category\ntags:\n - tag1\n---\nfirst body\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=900&ref=master", + "headers": { + "Date": "Tue, 10 Sep 2019 14:18:57 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "404 Not Found", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3773", + "X-RateLimit-Reset": "1568128657", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BC8:2B24:186DFD8:1DB4474:5D77B0D1", + "content-length": "116", + "connection": "keep-alive" + }, + "response": "{\n \"message\": \"Not Found\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/#get-contents\"\n}\n", + "status": 404 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/content/posts/1970-01-01-third-title.md?ts=900&ref=cms/1970-01-01-third-title", + "headers": { + "Date": "Tue, 10 Sep 2019 14:18:58 GMT", + "Content-Type": "application/vnd.github.VERSION.raw; charset=utf-8", + "Content-Length": "167", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3772", + "X-RateLimit-Reset": "1568128657", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"28f15fe1a4ea577666ddd92b41a263bd194632a2\"", + "Last-Modified": "Tue, 10 Sep 2019 14:18:46 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BCC:9D20:11C5A71:15BE13E:5D77B0D1", + "connection": "keep-alive" + }, + "response": "---\ntemplate: post\ntitle: third title\ndraft: true\ndate: 1970-01-01T00:00:00.600Z\ndescription: third description\ncategory: third category\ntags:\n - tag3\n---\nthird body\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/content/posts/1970-01-01-third-title.md?ts=900&ref=master", + "headers": { + "Date": "Tue, 10 Sep 2019 14:18:58 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "404 Not Found", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3771", + "X-RateLimit-Reset": "1568128657", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BCF:9D21:17D4C7A:1D0BB57:5D77B0D1", + "content-length": "116", + "connection": "keep-alive" + }, + "response": "{\n \"message\": \"Not Found\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/#get-contents\"\n}\n", + "status": 404 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/content/posts/1970-01-01-second-title.md?ts=900&ref=master", + "headers": { + "Date": "Tue, 10 Sep 2019 14:18:58 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "404 Not Found", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3770", + "X-RateLimit-Reset": "1568128657", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BE2:244EB:18A70D5:1DF52BA:5D77B0D2", + "content-length": "116", + "connection": "keep-alive" + }, + "response": "{\n \"message\": \"Not Found\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/#get-contents\"\n}\n", + "status": 404 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/content/posts/1970-01-01-second-title.md?ts=900&ref=cms/1970-01-01-second-title", + "headers": { + "Date": "Tue, 10 Sep 2019 14:18:59 GMT", + "Content-Type": "application/vnd.github.VERSION.raw; charset=utf-8", + "Content-Length": "171", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3769", + "X-RateLimit-Reset": "1568128657", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"21929dc2b35a71411987a5e966452de21a5005ab\"", + "Last-Modified": "Tue, 10 Sep 2019 14:18:23 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BE4:3ED77:B09350:D62493:5D77B0D2", + "connection": "keep-alive" + }, + "response": "---\ntemplate: post\ntitle: second title\ndraft: true\ndate: 1970-01-01T00:00:00.300Z\ndescription: second description\ncategory: second category\ntags:\n - tag2\n---\nsecond body\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=900", + "headers": { + "Date": "Tue, 10 Sep 2019 14:19:00 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3768", + "X-RateLimit-Reset": "1568128657", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"9f016911b2e6e2b9417edf7e38766eba\"", + "Last-Modified": "Tue, 10 Sep 2019 14:17:39 GMT", + "X-Poll-Interval": "300", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BE6:2B1F:129FAF5:16BD39A:5D77B0D4", + "content-length": "484", + "connection": "keep-alive" + }, + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NTc4OTg5OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"339b47a8ed201377ec9f9d968224076c25f8f7f4\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/339b47a8ed201377ec9f9d968224076c25f8f7f4\"\n }\n}\n", + "status": 200 + }, + { + "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjMsImhlYWQiOiJjNzc3M2Y1MTZmNWFkMWNlNThlZTkxNDM2NTkyMjY0NmVkNTg2NzhiIn0sInVzZXIiOiJvd25lciIsInN0YXR1cyI6InBlbmRpbmdfcHVibGlzaCIsImJyYW5jaCI6ImNtcy8xOTcwLTAxLTAxLXRoaXJkLXRpdGxlIiwiY29sbGVjdGlvbiI6InBvc3RzIiwiY29tbWl0TWVzc2FnZSI6IkNyZWF0ZSBQb3N0IOKAnDE5NzAtMDEtMDEtdGhpcmQtdGl0bGXigJ0iLCJ0aXRsZSI6InRoaXJkIHRpdGxlIiwiZGVzY3JpcHRpb24iOiJ0aGlyZCBkZXNjcmlwdGlvbiIsIm9iamVjdHMiOnsiZW50cnkiOnsicGF0aCI6ImNvbnRlbnQvcG9zdHMvMTk3MC0wMS0wMS10aGlyZC10aXRsZS5tZCIsInNoYSI6IjI4ZjE1ZmUxYTRlYTU3NzY2NmRkZDkyYjQxYTI2M2JkMTk0NjMyYTIifSwiZmlsZXMiOltdfSwidGltZVN0YW1wIjoiMTk3MC0wMS0wMVQwMDowMDowMC45MDBaIn0=\",\"encoding\":\"base64\"}", + "method": "POST", + "url": "/repos/owner/repo/git/blobs?ts=900", + "headers": { + "Date": "Tue, 10 Sep 2019 14:19:01 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "207", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3767", + "X-RateLimit-Reset": "1568128657", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"fcce4148f362da2affd956b376755f93\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/blobs/cb70e48629c85ddd2747f05eac528e8dfe5a92c9", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BE8:1510E:B15382:D82BE6:5D77B0D4", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"cb70e48629c85ddd2747f05eac528e8dfe5a92c9\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/cb70e48629c85ddd2747f05eac528e8dfe5a92c9\"\n}\n", + "status": 201 + }, + { + "method": "GET", + "url": "/repos/owner/repo/commits/c7773f516f5ad1ce58ee914365922646ed58678b/status?ts=900", + "headers": { + "Date": "Tue, 10 Sep 2019 14:19:01 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3766", + "X-RateLimit-Reset": "1568128657", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"f4730a048ce637a39701677890e074a5\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo, repo:status", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BEB:B4DA:55790F:684A8B:5D77B0D5", + "content-length": "6574", + "connection": "keep-alive" + }, + "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"c7773f516f5ad1ce58ee914365922646ed58678b\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 207578989,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1Nzg5ODk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/c7773f516f5ad1ce58ee914365922646ed58678b\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/c7773f516f5ad1ce58ee914365922646ed58678b/status\"\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/trees/339b47a8ed201377ec9f9d968224076c25f8f7f4?ts=900", + "headers": { + "Date": "Tue, 10 Sep 2019 14:19:01 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3765", + "X-RateLimit-Reset": "1568128657", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"4492498ec6059f504dc9d8a2b0e30da4\"", + "Last-Modified": "Tue, 10 Sep 2019 14:17:39 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BEC:9D21:17D52A3:1D0C329:5D77B0D5", + "content-length": "1564", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"339b47a8ed201377ec9f9d968224076c25f8f7f4\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/339b47a8ed201377ec9f9d968224076c25f8f7f4\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"11fcdfb32c7f713ad750051185f7cf96432d9e9e\",\n \"size\": 462,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/11fcdfb32c7f713ad750051185f7cf96432d9e9e\"\n },\n {\n \"path\": \"1970-01-01-second-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"cb41e9645a6b2283378b575576507f6ba90382d5\",\n \"size\": 467,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/cb41e9645a6b2283378b575576507f6ba90382d5\"\n },\n {\n \"path\": \"1970-01-01-third-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d3f15a84d5a717b44b5ce34d3185586b4d05f727\",\n \"size\": 462,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d3f15a84d5a717b44b5ce34d3185586b4d05f727\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 200 + }, + { + "body": "{\"base_tree\":\"339b47a8ed201377ec9f9d968224076c25f8f7f4\",\"tree\":[{\"path\":\"1970-01-01-third-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"cb70e48629c85ddd2747f05eac528e8dfe5a92c9\"}]}", + "method": "POST", + "url": "/repos/owner/repo/git/trees?ts=900", + "headers": { + "Date": "Tue, 10 Sep 2019 14:19:02 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "1564", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3764", + "X-RateLimit-Reset": "1568128657", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"75b5d6191315c0f4fe00a3fd55bc6a22\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/trees/4225c5dbfde7bdda6450ca01ea0f442ee087d78f", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BEE:15110:1925EC9:1E9040F:5D77B0D5", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"4225c5dbfde7bdda6450ca01ea0f442ee087d78f\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4225c5dbfde7bdda6450ca01ea0f442ee087d78f\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"11fcdfb32c7f713ad750051185f7cf96432d9e9e\",\n \"size\": 462,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/11fcdfb32c7f713ad750051185f7cf96432d9e9e\"\n },\n {\n \"path\": \"1970-01-01-second-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"cb41e9645a6b2283378b575576507f6ba90382d5\",\n \"size\": 467,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/cb41e9645a6b2283378b575576507f6ba90382d5\"\n },\n {\n \"path\": \"1970-01-01-third-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"cb70e48629c85ddd2747f05eac528e8dfe5a92c9\",\n \"size\": 472,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/cb70e48629c85ddd2747f05eac528e8dfe5a92c9\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"message\":\"Updating “1970-01-01-third-title” metadata\",\"tree\":\"4225c5dbfde7bdda6450ca01ea0f442ee087d78f\",\"parents\":[\"339b47a8ed201377ec9f9d968224076c25f8f7f4\"]}", + "method": "POST", + "url": "/repos/owner/repo/git/commits?ts=900", + "headers": { + "Date": "Tue, 10 Sep 2019 14:19:03 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "1510", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3763", + "X-RateLimit-Reset": "1568128657", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"7740ec1527ff6fef3aea7b70c6ded3d7\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/commits/e809a56e95c5ca415cf7b7f2737f6c3d49061d7f", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BF0:2B15:50BBD2:620C09:5D77B0D6", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"e809a56e95c5ca415cf7b7f2737f6c3d49061d7f\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NTc4OTg5OmU4MDlhNTZlOTVjNWNhNDE1Y2Y3YjdmMjczN2Y2YzNkNDkwNjFkN2Y=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/e809a56e95c5ca415cf7b7f2737f6c3d49061d7f\",\n \"html_url\": \"https://github.com/owner/repo/commit/e809a56e95c5ca415cf7b7f2737f6c3d49061d7f\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T14:19:02Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T14:19:02Z\"\n },\n \"tree\": {\n \"sha\": \"4225c5dbfde7bdda6450ca01ea0f442ee087d78f\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4225c5dbfde7bdda6450ca01ea0f442ee087d78f\"\n },\n \"message\": \"Updating “1970-01-01-third-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"339b47a8ed201377ec9f9d968224076c25f8f7f4\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/339b47a8ed201377ec9f9d968224076c25f8f7f4\",\n \"html_url\": \"https://github.com/owner/repo/commit/339b47a8ed201377ec9f9d968224076c25f8f7f4\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "status": 201 + }, + { + "body": "{\"sha\":\"e809a56e95c5ca415cf7b7f2737f6c3d49061d7f\",\"force\":false}", + "method": "PATCH", + "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=900", + "headers": { + "Date": "Tue, 10 Sep 2019 14:19:04 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3762", + "X-RateLimit-Reset": "1568128657", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"7cd74dfdfeba403374fa46f5ba8b0a71\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BF2:1510F:12AB399:16AB691:5D77B0D7", + "content-length": "484", + "connection": "keep-alive" + }, + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NTc4OTg5OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"e809a56e95c5ca415cf7b7f2737f6c3d49061d7f\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/e809a56e95c5ca415cf7b7f2737f6c3d49061d7f\"\n }\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=900", + "headers": { + "Date": "Tue, 10 Sep 2019 14:19:07 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3761", + "X-RateLimit-Reset": "1568128657", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"7cd74dfdfeba403374fa46f5ba8b0a71\"", + "Last-Modified": "Tue, 10 Sep 2019 14:17:39 GMT", + "X-Poll-Interval": "300", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BF4:B4DC:B08C22:D6E0D3:5D77B0DA", + "content-length": "484", + "connection": "keep-alive" + }, + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NTc4OTg5OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"e809a56e95c5ca415cf7b7f2737f6c3d49061d7f\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/e809a56e95c5ca415cf7b7f2737f6c3d49061d7f\"\n }\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/commits/c7773f516f5ad1ce58ee914365922646ed58678b/status?ts=900", + "headers": { + "Date": "Tue, 10 Sep 2019 14:19:07 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3760", + "X-RateLimit-Reset": "1568128657", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"f4730a048ce637a39701677890e074a5\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo, repo:status", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BF6:1510D:499CDA:5A4AB6:5D77B0DA", + "content-length": "6574", + "connection": "keep-alive" + }, + "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"c7773f516f5ad1ce58ee914365922646ed58678b\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 207578989,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1Nzg5ODk=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/c7773f516f5ad1ce58ee914365922646ed58678b\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/c7773f516f5ad1ce58ee914365922646ed58678b/status\"\n}\n", + "status": 200 + }, + { + "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjIsImhlYWQiOiJmOWJmNWZiZmMyNTY1ZTVjNGQ0YjkyZGE2YjY1ZGM3YzQ5MzU1MzMxIn0sInVzZXIiOiJvd25lciIsInN0YXR1cyI6InBlbmRpbmdfcHVibGlzaCIsImJyYW5jaCI6ImNtcy8xOTcwLTAxLTAxLXNlY29uZC10aXRsZSIsImNvbGxlY3Rpb24iOiJwb3N0cyIsImNvbW1pdE1lc3NhZ2UiOiJDcmVhdGUgUG9zdCDigJwxOTcwLTAxLTAxLXNlY29uZC10aXRsZeKAnSIsInRpdGxlIjoic2Vjb25kIHRpdGxlIiwiZGVzY3JpcHRpb24iOiJzZWNvbmQgZGVzY3JpcHRpb24iLCJvYmplY3RzIjp7ImVudHJ5Ijp7InBhdGgiOiJjb250ZW50L3Bvc3RzLzE5NzAtMDEtMDEtc2Vjb25kLXRpdGxlLm1kIiwic2hhIjoiMjE5MjlkYzJiMzVhNzE0MTE5ODdhNWU5NjY0NTJkZTIxYTUwMDVhYiJ9LCJmaWxlcyI6W119LCJ0aW1lU3RhbXAiOiIxOTcwLTAxLTAxVDAwOjAwOjAwLjYwMFoifQ==\",\"encoding\":\"base64\"}", + "method": "POST", + "url": "/repos/owner/repo/git/blobs?ts=900", + "headers": { + "Date": "Tue, 10 Sep 2019 14:19:07 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "207", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3759", + "X-RateLimit-Reset": "1568128657", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"5203ff201fd4a85500fb7b8abc890c05\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/blobs/4182cbba29b25275b115e2f15e9eee4c920bb470", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BF9:2B19:AE8543:D47A18:5D77B0DB", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"4182cbba29b25275b115e2f15e9eee4c920bb470\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/4182cbba29b25275b115e2f15e9eee4c920bb470\"\n}\n", + "status": 201 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/trees/e809a56e95c5ca415cf7b7f2737f6c3d49061d7f?ts=900", + "headers": { + "Date": "Tue, 10 Sep 2019 14:19:08 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3758", + "X-RateLimit-Reset": "1568128657", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"4ec2b390492d7b713bc8e960844648f4\"", + "Last-Modified": "Tue, 10 Sep 2019 14:17:39 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BFC:B4E0:175509D:1C6803D:5D77B0DC", + "content-length": "1564", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"e809a56e95c5ca415cf7b7f2737f6c3d49061d7f\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/e809a56e95c5ca415cf7b7f2737f6c3d49061d7f\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"11fcdfb32c7f713ad750051185f7cf96432d9e9e\",\n \"size\": 462,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/11fcdfb32c7f713ad750051185f7cf96432d9e9e\"\n },\n {\n \"path\": \"1970-01-01-second-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"cb41e9645a6b2283378b575576507f6ba90382d5\",\n \"size\": 467,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/cb41e9645a6b2283378b575576507f6ba90382d5\"\n },\n {\n \"path\": \"1970-01-01-third-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"cb70e48629c85ddd2747f05eac528e8dfe5a92c9\",\n \"size\": 472,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/cb70e48629c85ddd2747f05eac528e8dfe5a92c9\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 200 + }, + { + "body": "{\"base_tree\":\"e809a56e95c5ca415cf7b7f2737f6c3d49061d7f\",\"tree\":[{\"path\":\"1970-01-01-second-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"4182cbba29b25275b115e2f15e9eee4c920bb470\"}]}", + "method": "POST", + "url": "/repos/owner/repo/git/trees?ts=900", + "headers": { + "Date": "Tue, 10 Sep 2019 14:19:09 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "1564", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3757", + "X-RateLimit-Reset": "1568128657", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"4608edd6f0b0ee7f88e2b3e70918a987\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/trees/1f0670fe90aa6ebb4e84fd8b09aeb1bd2fbc4b97", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BFF:15110:1926B8B:1E91390:5D77B0DC", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"1f0670fe90aa6ebb4e84fd8b09aeb1bd2fbc4b97\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/1f0670fe90aa6ebb4e84fd8b09aeb1bd2fbc4b97\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"11fcdfb32c7f713ad750051185f7cf96432d9e9e\",\n \"size\": 462,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/11fcdfb32c7f713ad750051185f7cf96432d9e9e\"\n },\n {\n \"path\": \"1970-01-01-second-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"4182cbba29b25275b115e2f15e9eee4c920bb470\",\n \"size\": 477,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/4182cbba29b25275b115e2f15e9eee4c920bb470\"\n },\n {\n \"path\": \"1970-01-01-third-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"cb70e48629c85ddd2747f05eac528e8dfe5a92c9\",\n \"size\": 472,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/cb70e48629c85ddd2747f05eac528e8dfe5a92c9\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"message\":\"Updating “1970-01-01-second-title” metadata\",\"tree\":\"1f0670fe90aa6ebb4e84fd8b09aeb1bd2fbc4b97\",\"parents\":[\"e809a56e95c5ca415cf7b7f2737f6c3d49061d7f\"]}", + "method": "POST", + "url": "/repos/owner/repo/git/commits?ts=900", + "headers": { + "Date": "Tue, 10 Sep 2019 14:19:10 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "1511", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3756", + "X-RateLimit-Reset": "1568128657", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"a4bb46d644498253226c6adf160f7374\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/commits/c7aca4d9ff6c7ec0442871fd01a5cd11049f1b80", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A00:B4D7:1B61D7:218111:5D77B0DD", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"c7aca4d9ff6c7ec0442871fd01a5cd11049f1b80\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NTc4OTg5OmM3YWNhNGQ5ZmY2YzdlYzA0NDI4NzFmZDAxYTVjZDExMDQ5ZjFiODA=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/c7aca4d9ff6c7ec0442871fd01a5cd11049f1b80\",\n \"html_url\": \"https://github.com/owner/repo/commit/c7aca4d9ff6c7ec0442871fd01a5cd11049f1b80\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T14:19:09Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T14:19:09Z\"\n },\n \"tree\": {\n \"sha\": \"1f0670fe90aa6ebb4e84fd8b09aeb1bd2fbc4b97\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/1f0670fe90aa6ebb4e84fd8b09aeb1bd2fbc4b97\"\n },\n \"message\": \"Updating “1970-01-01-second-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"e809a56e95c5ca415cf7b7f2737f6c3d49061d7f\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/e809a56e95c5ca415cf7b7f2737f6c3d49061d7f\",\n \"html_url\": \"https://github.com/owner/repo/commit/e809a56e95c5ca415cf7b7f2737f6c3d49061d7f\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "status": 201 + }, + { + "body": "{\"sha\":\"c7aca4d9ff6c7ec0442871fd01a5cd11049f1b80\",\"force\":false}", + "method": "PATCH", + "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=900", + "headers": { + "Date": "Tue, 10 Sep 2019 14:19:11 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3755", + "X-RateLimit-Reset": "1568128657", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"bcd2b7299aec9d028b6ed8afce50f183\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A02:244EB:18A84CA:1DF6B80:5D77B0DE", + "content-length": "484", + "connection": "keep-alive" + }, + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NTc4OTg5OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"c7aca4d9ff6c7ec0442871fd01a5cd11049f1b80\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/c7aca4d9ff6c7ec0442871fd01a5cd11049f1b80\"\n }\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=900", + "headers": { + "Date": "Tue, 10 Sep 2019 14:19:12 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3754", + "X-RateLimit-Reset": "1568128657", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"bcd2b7299aec9d028b6ed8afce50f183\"", + "Last-Modified": "Tue, 10 Sep 2019 14:17:39 GMT", + "X-Poll-Interval": "300", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A04:3ED82:191ACED:1E8EF02:5D77B0DF", + "content-length": "484", + "connection": "keep-alive" + }, + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NTc4OTg5OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"c7aca4d9ff6c7ec0442871fd01a5cd11049f1b80\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/c7aca4d9ff6c7ec0442871fd01a5cd11049f1b80\"\n }\n}\n", + "status": 200 + }, + { + "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjEsImhlYWQiOiJlYmM0NTZmMDMyNDczNTkzNDRhNzIyZDI2NDRiODAxOTYwYmM5ZTkxIn0sInVzZXIiOiJvd25lciIsInN0YXR1cyI6InBlbmRpbmdfcHVibGlzaCIsImJyYW5jaCI6ImNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxlIiwiY29sbGVjdGlvbiI6InBvc3RzIiwiY29tbWl0TWVzc2FnZSI6IkNyZWF0ZSBQb3N0IOKAnDE5NzAtMDEtMDEtZmlyc3QtdGl0bGXigJ0iLCJ0aXRsZSI6ImZpcnN0IHRpdGxlIiwiZGVzY3JpcHRpb24iOiJmaXJzdCBkZXNjcmlwdGlvbiIsIm9iamVjdHMiOnsiZW50cnkiOnsicGF0aCI6ImNvbnRlbnQvcG9zdHMvMTk3MC0wMS0wMS1maXJzdC10aXRsZS5tZCIsInNoYSI6ImEwNDEyNDU4MTQ4OTJlM2Y3M2Y2M2NhNTQzMzNmZGE2NDliN2ZjMGIifSwiZmlsZXMiOltdfSwidGltZVN0YW1wIjoiMTk3MC0wMS0wMVQwMDowMDowMC4zMDBaIn0=\",\"encoding\":\"base64\"}", + "method": "POST", + "url": "/repos/owner/repo/git/blobs?ts=900", + "headers": { + "Date": "Tue, 10 Sep 2019 14:19:13 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "207", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3753", + "X-RateLimit-Reset": "1568128657", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"cebf1d0789e90fcaba50722bbc1ecc19\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/blobs/7f27fad63b93f9a895786a4c8170201b87898994", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A06:9D1E:4E19C5:5F9938:5D77B0E0", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"7f27fad63b93f9a895786a4c8170201b87898994\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/7f27fad63b93f9a895786a4c8170201b87898994\"\n}\n", + "status": 201 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/trees/c7aca4d9ff6c7ec0442871fd01a5cd11049f1b80?ts=900", + "headers": { + "Date": "Tue, 10 Sep 2019 14:19:13 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3752", + "X-RateLimit-Reset": "1568128657", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"aaf3692173c467f6c871c56128c57b39\"", + "Last-Modified": "Tue, 10 Sep 2019 14:17:39 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A08:244EB:18A89B4:1DF7165:5D77B0E1", + "content-length": "1564", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"c7aca4d9ff6c7ec0442871fd01a5cd11049f1b80\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/c7aca4d9ff6c7ec0442871fd01a5cd11049f1b80\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"11fcdfb32c7f713ad750051185f7cf96432d9e9e\",\n \"size\": 462,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/11fcdfb32c7f713ad750051185f7cf96432d9e9e\"\n },\n {\n \"path\": \"1970-01-01-second-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"4182cbba29b25275b115e2f15e9eee4c920bb470\",\n \"size\": 477,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/4182cbba29b25275b115e2f15e9eee4c920bb470\"\n },\n {\n \"path\": \"1970-01-01-third-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"cb70e48629c85ddd2747f05eac528e8dfe5a92c9\",\n \"size\": 472,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/cb70e48629c85ddd2747f05eac528e8dfe5a92c9\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 200 + }, + { + "body": "{\"base_tree\":\"c7aca4d9ff6c7ec0442871fd01a5cd11049f1b80\",\"tree\":[{\"path\":\"1970-01-01-first-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"7f27fad63b93f9a895786a4c8170201b87898994\"}]}", + "method": "POST", + "url": "/repos/owner/repo/git/trees?ts=900", + "headers": { + "Date": "Tue, 10 Sep 2019 14:19:14 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "1564", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3751", + "X-RateLimit-Reset": "1568128657", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"cc3615e538c8440ead59d84b7405b2d3\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/trees/fc6a6040d72d546f19881b4ee6b24a3b50db2f3a", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A0A:9D20:11C6EDE:15BFAA8:5D77B0E2", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"fc6a6040d72d546f19881b4ee6b24a3b50db2f3a\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/fc6a6040d72d546f19881b4ee6b24a3b50db2f3a\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"7f27fad63b93f9a895786a4c8170201b87898994\",\n \"size\": 472,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/7f27fad63b93f9a895786a4c8170201b87898994\"\n },\n {\n \"path\": \"1970-01-01-second-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"4182cbba29b25275b115e2f15e9eee4c920bb470\",\n \"size\": 477,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/4182cbba29b25275b115e2f15e9eee4c920bb470\"\n },\n {\n \"path\": \"1970-01-01-third-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"cb70e48629c85ddd2747f05eac528e8dfe5a92c9\",\n \"size\": 472,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/cb70e48629c85ddd2747f05eac528e8dfe5a92c9\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"message\":\"Updating “1970-01-01-first-title” metadata\",\"tree\":\"fc6a6040d72d546f19881b4ee6b24a3b50db2f3a\",\"parents\":[\"c7aca4d9ff6c7ec0442871fd01a5cd11049f1b80\"]}", + "method": "POST", + "url": "/repos/owner/repo/git/commits?ts=900", + "headers": { + "Date": "Tue, 10 Sep 2019 14:19:15 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "1510", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3750", + "X-RateLimit-Reset": "1568128657", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"12009df5055cb36d4d79e0b1944c5bfe\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/commits/918a04f95f092cce3395f27aa22cba2f50653f07", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A0E:15110:1927747:1E921C8:5D77B0E3", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"918a04f95f092cce3395f27aa22cba2f50653f07\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NTc4OTg5OjkxOGEwNGY5NWYwOTJjY2UzMzk1ZjI3YWEyMmNiYTJmNTA2NTNmMDc=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/918a04f95f092cce3395f27aa22cba2f50653f07\",\n \"html_url\": \"https://github.com/owner/repo/commit/918a04f95f092cce3395f27aa22cba2f50653f07\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T14:19:15Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T14:19:15Z\"\n },\n \"tree\": {\n \"sha\": \"fc6a6040d72d546f19881b4ee6b24a3b50db2f3a\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/fc6a6040d72d546f19881b4ee6b24a3b50db2f3a\"\n },\n \"message\": \"Updating “1970-01-01-first-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"c7aca4d9ff6c7ec0442871fd01a5cd11049f1b80\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/c7aca4d9ff6c7ec0442871fd01a5cd11049f1b80\",\n \"html_url\": \"https://github.com/owner/repo/commit/c7aca4d9ff6c7ec0442871fd01a5cd11049f1b80\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "status": 201 + }, + { + "body": "{\"sha\":\"918a04f95f092cce3395f27aa22cba2f50653f07\",\"force\":false}", + "method": "PATCH", + "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=900", + "headers": { + "Date": "Tue, 10 Sep 2019 14:19:16 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3749", + "X-RateLimit-Reset": "1568128657", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"50d538935f8bb0d4e7ff31ce3b5849a7\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A10:9D21:17D6AAE:1D0E0B9:5D77B0E3", + "content-length": "484", + "connection": "keep-alive" + }, + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NTc4OTg5OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"918a04f95f092cce3395f27aa22cba2f50653f07\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/918a04f95f092cce3395f27aa22cba2f50653f07\"\n }\n}\n", + "status": 200 + }, + { + "body": "{\"commit_message\":\"Automatically generated. Merged on Netlify CMS.\",\"sha\":\"c7773f516f5ad1ce58ee914365922646ed58678b\",\"merge_method\":\"merge\"}", + "method": "PUT", + "url": "/repos/owner/repo/pulls/3/merge?ts=900", + "headers": { + "Date": "Tue, 10 Sep 2019 14:19:18 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3748", + "X-RateLimit-Reset": "1568128657", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"4e863b4367960cda7f44accda25aa701\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A12:15110:1927B38:1E92691:5D77B0E5", + "content-length": "123", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"16126cf2971daab2eb030e41d0bef9cf00561f10\",\n \"merged\": true,\n \"message\": \"Pull Request successfully merged\"\n}\n", + "status": 200 + }, + { + "method": "DELETE", + "url": "/repos/owner/repo/git/refs/heads/cms%2F1970-01-01-third-title?ts=900", + "headers": { + "Date": "Tue, 10 Sep 2019 14:19:19 GMT", + "Content-Type": "application/octet-stream", + "Server": "GitHub.com", + "Status": "204 No Content", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3747", + "X-RateLimit-Reset": "1568128657", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7A14:244E1:545619:65DAEC:5D77B0E6", + "content-length": "0", + "connection": "keep-alive" + }, + "response": null, + "status": 204 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/content/posts/1970-01-01-third-title.md?ts=900&ref=master", + "headers": { + "Date": "Tue, 10 Sep 2019 14:19:20 GMT", + "Content-Type": "application/vnd.github.VERSION.raw; charset=utf-8", + "Content-Length": "167", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3746", + "X-RateLimit-Reset": "1568128657", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"28f15fe1a4ea577666ddd92b41a263bd194632a2\"", + "Last-Modified": "Tue, 10 Sep 2019 14:19:17 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A16:15110:1928014:1E92C91:5D77B0E7", + "connection": "keep-alive" + }, + "response": "---\ntemplate: post\ntitle: third title\ndraft: true\ndate: 1970-01-01T00:00:00.600Z\ndescription: third description\ncategory: third category\ntags:\n - tag3\n---\nthird body\n", + "status": 200 + }, + { + "body": "{\"commit_message\":\"Automatically generated. Merged on Netlify CMS.\",\"sha\":\"f9bf5fbfc2565e5c4d4b92da6b65dc7c49355331\",\"merge_method\":\"merge\"}", + "method": "PUT", + "url": "/repos/owner/repo/pulls/2/merge?ts=900", + "headers": { + "Date": "Tue, 10 Sep 2019 14:19:23 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3745", + "X-RateLimit-Reset": "1568128657", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"7434c12f5b445781d15ff617b44873e5\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A18:1510E:B16458:D840F1:5D77B0E9", + "content-length": "123", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"7ff771501ef36ed61eb6255ddee7c4762f2bb644\",\n \"merged\": true,\n \"message\": \"Pull Request successfully merged\"\n}\n", + "status": 200 + }, + { + "method": "DELETE", + "url": "/repos/owner/repo/git/refs/heads/cms%2F1970-01-01-second-title?ts=900", + "headers": { + "Date": "Tue, 10 Sep 2019 14:19:24 GMT", + "Content-Type": "application/octet-stream", + "Server": "GitHub.com", + "Status": "204 No Content", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3744", + "X-RateLimit-Reset": "1568128657", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7A1A:244E4:B3FB1D:DA37F2:5D77B0EC", + "content-length": "0", + "connection": "keep-alive" + }, + "response": null, + "status": 204 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/content/posts/1970-01-01-second-title.md?ts=900&ref=master", + "headers": { + "Date": "Tue, 10 Sep 2019 14:19:25 GMT", + "Content-Type": "application/vnd.github.VERSION.raw; charset=utf-8", + "Content-Length": "171", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3743", + "X-RateLimit-Reset": "1568128657", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"21929dc2b35a71411987a5e966452de21a5005ab\"", + "Last-Modified": "Tue, 10 Sep 2019 14:19:22 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A1D:244EB:18A9C5F:1DF887A:5D77B0ED", + "connection": "keep-alive" + }, + "response": "---\ntemplate: post\ntitle: second title\ndraft: true\ndate: 1970-01-01T00:00:00.300Z\ndescription: second description\ncategory: second category\ntags:\n - tag2\n---\nsecond body\n", + "status": 200 + }, + { + "body": "{\"commit_message\":\"Automatically generated. Merged on Netlify CMS.\",\"sha\":\"ebc456f03247359344a722d2644b801960bc9e91\",\"merge_method\":\"merge\"}", + "method": "PUT", + "url": "/repos/owner/repo/pulls/1/merge?ts=900", + "headers": { + "Date": "Tue, 10 Sep 2019 14:19:27 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3742", + "X-RateLimit-Reset": "1568128657", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"7cfb94085da7f02e6c85e88adfe75622\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A1E:244EB:18A9CA4:1DF88DA:5D77B0ED", + "content-length": "123", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"3d4e48f9350a97f96e9bc81367015578fe9253e1\",\n \"merged\": true,\n \"message\": \"Pull Request successfully merged\"\n}\n", + "status": 200 + }, + { + "method": "DELETE", + "url": "/repos/owner/repo/git/refs/heads/cms%2F1970-01-01-first-title?ts=900", + "headers": { + "Date": "Tue, 10 Sep 2019 14:19:28 GMT", + "Content-Type": "application/octet-stream", + "Server": "GitHub.com", + "Status": "204 No Content", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3741", + "X-RateLimit-Reset": "1568128657", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7A20:2B1F:12A1C74:16BFD97:5D77B0EF", + "content-length": "0", + "connection": "keep-alive" + }, + "response": null, + "status": 204 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=900&ref=master", + "headers": { + "Date": "Tue, 10 Sep 2019 14:19:29 GMT", + "Content-Type": "application/vnd.github.VERSION.raw; charset=utf-8", + "Content-Length": "167", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3740", + "X-RateLimit-Reset": "1568128657", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"a041245814892e3f73f63ca54333fda649b7fc0b\"", + "Last-Modified": "Tue, 10 Sep 2019 14:19:26 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A22:1510E:B16994:D84786:5D77B0F1", + "connection": "keep-alive" + }, + "response": "---\ntemplate: post\ntitle: first title\ndraft: true\ndate: 1970-01-01T00:00:00.000Z\ndescription: first description\ncategory: first category\ntags:\n - tag1\n---\nfirst body\n", + "status": 200 + } +] \ No newline at end of file diff --git a/cypress/fixtures/Github Backend Editorial Workflow - REST API__can change workflow status.json b/cypress/fixtures/Github Backend Editorial Workflow - REST API__can change workflow status.json new file mode 100644 index 00000000..edb8abdd --- /dev/null +++ b/cypress/fixtures/Github Backend Editorial Workflow - REST API__can change workflow status.json @@ -0,0 +1,1709 @@ +[ + { + "method": "GET", + "url": "/user?ts=0", + "headers": { + "Date": "Tue, 10 Sep 2019 14:05:05 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4150", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"fb606f875be1d23b690ea5f5e26b9fe9\"", + "Last-Modified": "Wed, 28 Aug 2019 04:48:54 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7AA8:244EB:185144A:1D8B1BB:5D77AD91", + "content-length": "1321", + "connection": "keep-alive" + }, + "response": "{\"login\":\"owner\",\"id\":1,\"avatar_url\":\"https://avatars1.githubusercontent.com/u/7892489?v=4\",\"name\":\"owner\"}", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo?ts=0", + "headers": { + "Date": "Tue, 10 Sep 2019 14:05:06 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4149", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"b012f66bdc5dac880675f7690dfc9d69\"", + "Last-Modified": "Tue, 10 Sep 2019 14:04:59 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7AAA:244EB:1851548:1D8B2F4:5D77AD91", + "content-length": "7296", + "connection": "keep-alive" + }, + "response": "{\n \"id\": 207575276,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NzUyNzY=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-10T14:01:42Z\",\n \"updated_at\": \"2019-09-10T14:04:59Z\",\n \"pushed_at\": \"2019-09-10T14:04:57Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\",\n \"permissions\": {\n \"admin\": true,\n \"push\": true,\n \"pull\": true\n },\n \"allow_squash_merge\": true,\n \"allow_merge_commit\": true,\n \"allow_rebase_merge\": true,\n \"network_count\": 0,\n \"subscribers_count\": 1\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/content/posts?ts=0&ref=master", + "headers": { + "Date": "Tue, 10 Sep 2019 14:05:07 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4148", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"c5b7f6d674ba193bb7b4a5fcf4933034e1b7f2b7\"", + "Last-Modified": "Tue, 10 Sep 2019 14:04:59 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7AAC:15110:18CAEC8:1E20A50:5D77AD92", + "content-length": "7422", + "connection": "keep-alive" + }, + "response": "[\n {\n \"name\": \"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"path\": \"content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"sha\": \"6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"size\": 1707,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"html\": \"https://github.com/owner/repo/blob/master/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md\"\n }\n },\n {\n \"name\": \"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"path\": \"content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"sha\": \"d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"size\": 2565,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"html\": \"https://github.com/owner/repo/blob/master/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\"\n }\n },\n {\n \"name\": \"2016-02-02---A-Brief-History-of-Typography.md\",\n \"path\": \"content/posts/2016-02-02---A-Brief-History-of-Typography.md\",\n \"sha\": \"0eea554365f002d0f1572af9a58522d335a794d5\",\n \"size\": 2786,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2016-02-02---A-Brief-History-of-Typography.md?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/content/posts/2016-02-02---A-Brief-History-of-Typography.md\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/content/posts/2016-02-02---A-Brief-History-of-Typography.md\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2016-02-02---A-Brief-History-of-Typography.md?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\",\n \"html\": \"https://github.com/owner/repo/blob/master/content/posts/2016-02-02---A-Brief-History-of-Typography.md\"\n }\n },\n {\n \"name\": \"2017-18-08---The-Birth-of-Movable-Type.md\",\n \"path\": \"content/posts/2017-18-08---The-Birth-of-Movable-Type.md\",\n \"sha\": \"44f78c474d04273185a95821426f75affc9b0044\",\n \"size\": 16071,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2017-18-08---The-Birth-of-Movable-Type.md?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/content/posts/2017-18-08---The-Birth-of-Movable-Type.md\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/content/posts/2017-18-08---The-Birth-of-Movable-Type.md\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2017-18-08---The-Birth-of-Movable-Type.md?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\",\n \"html\": \"https://github.com/owner/repo/blob/master/content/posts/2017-18-08---The-Birth-of-Movable-Type.md\"\n }\n },\n {\n \"name\": \"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"path\": \"content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"sha\": \"a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"size\": 7465,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"html\": \"https://github.com/owner/repo/blob/master/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md\"\n }\n }\n]\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/static/media?ts=0&ref=master", + "headers": { + "Date": "Tue, 10 Sep 2019 14:05:07 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4147", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"c5b7f6d674ba193bb7b4a5fcf4933034e1b7f2b7\"", + "Last-Modified": "Tue, 10 Sep 2019 14:04:59 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7AAE:B4DC:ADD5E9:D38832:5D77AD92", + "content-length": "12362", + "connection": "keep-alive" + }, + "response": "[\n {\n \"name\": \"42-line-bible.jpg\",\n \"path\": \"static/media/42-line-bible.jpg\",\n \"sha\": \"41c8d12f9ca5864beb827c381fbeff935209d5fb\",\n \"size\": 671242,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/static/media/42-line-bible.jpg?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/static/media/42-line-bible.jpg\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/41c8d12f9ca5864beb827c381fbeff935209d5fb\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/static/media/42-line-bible.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/static/media/42-line-bible.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/41c8d12f9ca5864beb827c381fbeff935209d5fb\",\n \"html\": \"https://github.com/owner/repo/blob/master/static/media/42-line-bible.jpg\"\n }\n },\n {\n \"name\": \"gutenberg.jpg\",\n \"path\": \"static/media/gutenberg.jpg\",\n \"sha\": \"04315e355873ea5d358d9c371c39a6845c1ae4ae\",\n \"size\": 155002,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/static/media/gutenberg.jpg?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/static/media/gutenberg.jpg\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/04315e355873ea5d358d9c371c39a6845c1ae4ae\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/static/media/gutenberg.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/static/media/gutenberg.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/04315e355873ea5d358d9c371c39a6845c1ae4ae\",\n \"html\": \"https://github.com/owner/repo/blob/master/static/media/gutenberg.jpg\"\n }\n },\n {\n \"name\": \"image-0.jpg\",\n \"path\": \"static/media/image-0.jpg\",\n \"sha\": \"b70a1b64fd4fa9635823231a0ba92c6dc9393f16\",\n \"size\": 660287,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/static/media/image-0.jpg?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/static/media/image-0.jpg\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/b70a1b64fd4fa9635823231a0ba92c6dc9393f16\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/static/media/image-0.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/static/media/image-0.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/b70a1b64fd4fa9635823231a0ba92c6dc9393f16\",\n \"html\": \"https://github.com/owner/repo/blob/master/static/media/image-0.jpg\"\n }\n },\n {\n \"name\": \"image-1.jpg\",\n \"path\": \"static/media/image-1.jpg\",\n \"sha\": \"05eedae372b829c62501ac751b2d42dcc432541b\",\n \"size\": 392411,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/static/media/image-1.jpg?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/static/media/image-1.jpg\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/05eedae372b829c62501ac751b2d42dcc432541b\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/static/media/image-1.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/static/media/image-1.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/05eedae372b829c62501ac751b2d42dcc432541b\",\n \"html\": \"https://github.com/owner/repo/blob/master/static/media/image-1.jpg\"\n }\n },\n {\n \"name\": \"image-2.jpg\",\n \"path\": \"static/media/image-2.jpg\",\n \"sha\": \"53845ed35faf8939bea242bb85eda7c324b1be0b\",\n \"size\": 99147,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/static/media/image-2.jpg?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/static/media/image-2.jpg\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/53845ed35faf8939bea242bb85eda7c324b1be0b\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/static/media/image-2.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/static/media/image-2.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/53845ed35faf8939bea242bb85eda7c324b1be0b\",\n \"html\": \"https://github.com/owner/repo/blob/master/static/media/image-2.jpg\"\n }\n },\n {\n \"name\": \"image-3.jpg\",\n \"path\": \"static/media/image-3.jpg\",\n \"sha\": \"8b2339d97069e826fae1f156212e40ae458454e3\",\n \"size\": 358022,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/static/media/image-3.jpg?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/static/media/image-3.jpg\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/8b2339d97069e826fae1f156212e40ae458454e3\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/static/media/image-3.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/static/media/image-3.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/8b2339d97069e826fae1f156212e40ae458454e3\",\n \"html\": \"https://github.com/owner/repo/blob/master/static/media/image-3.jpg\"\n }\n },\n {\n \"name\": \"image-4.jpg\",\n \"path\": \"static/media/image-4.jpg\",\n \"sha\": \"a8f6f21253a67a4284b5a953b2fe633d44152ecd\",\n \"size\": 114837,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/static/media/image-4.jpg?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/static/media/image-4.jpg\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/a8f6f21253a67a4284b5a953b2fe633d44152ecd\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/static/media/image-4.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/static/media/image-4.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/a8f6f21253a67a4284b5a953b2fe633d44152ecd\",\n \"html\": \"https://github.com/owner/repo/blob/master/static/media/image-4.jpg\"\n }\n },\n {\n \"name\": \"movable-type.jpg\",\n \"path\": \"static/media/movable-type.jpg\",\n \"sha\": \"57b4e925ea00bd8e195cf4418eb6eb2995ea5f10\",\n \"size\": 559028,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/static/media/movable-type.jpg?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/static/media/movable-type.jpg\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/57b4e925ea00bd8e195cf4418eb6eb2995ea5f10\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/static/media/movable-type.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/static/media/movable-type.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/57b4e925ea00bd8e195cf4418eb6eb2995ea5f10\",\n \"html\": \"https://github.com/owner/repo/blob/master/static/media/movable-type.jpg\"\n }\n },\n {\n \"name\": \"printing-press.jpg\",\n \"path\": \"static/media/printing-press.jpg\",\n \"sha\": \"d27f56c9437d9becd2f56cc627c9322c2f1f61f6\",\n \"size\": 279283,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/static/media/printing-press.jpg?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/static/media/printing-press.jpg\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/d27f56c9437d9becd2f56cc627c9322c2f1f61f6\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/static/media/printing-press.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/static/media/printing-press.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/d27f56c9437d9becd2f56cc627c9322c2f1f61f6\",\n \"html\": \"https://github.com/owner/repo/blob/master/static/media/printing-press.jpg\"\n }\n },\n {\n \"name\": \"type-through-time.jpg\",\n \"path\": \"static/media/type-through-time.jpg\",\n \"sha\": \"3f08366a805c51a60ec5056010f22de4ba08abaa\",\n \"size\": 117689,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/static/media/type-through-time.jpg?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/static/media/type-through-time.jpg\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/3f08366a805c51a60ec5056010f22de4ba08abaa\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/static/media/type-through-time.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/static/media/type-through-time.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/3f08366a805c51a60ec5056010f22de4ba08abaa\",\n \"html\": \"https://github.com/owner/repo/blob/master/static/media/type-through-time.jpg\"\n }\n }\n]\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5?ts=0", + "headers": { + "Date": "Tue, 10 Sep 2019 14:05:07 GMT", + "Content-Type": "text/plain; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4146", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"733ab4cffe213d8db3be254e7fee8f69\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7AB4:2B1F:125C7D0:166A12D:5D77AD93", + "content-length": "2786", + "connection": "keep-alive" + }, + "response": "---\ntitle: \"A Brief History of Typography\"\ndate: \"2016-02-02T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Design Inspiration\"\ntags:\n - \"Linotype\"\n - \"Monotype\"\n - \"History of typography\"\n - \"Helvetica\"\ndescription: \"Morbi in sem quis dui placerat ornare. Pellentesque odio nisi, euismod in, pharetra a, ultricies in, diam. Sed arcu. Cras consequat.\"\ncanonical: ''\n---\n\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\n\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-0.jpg)\n\n## Header Level 2\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \n\n
\n\t
\n\t\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\n\t\t
\n\t\t\t— Aliquam tincidunt mauris eu risus.\n\t\t
\n\t
\n
\n\n### Header Level 3\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\n\n```css\n#header h1 a {\n display: block;\n width: 300px;\n height: 80px;\n}\n```\n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043?ts=0", + "headers": { + "Date": "Tue, 10 Sep 2019 14:05:07 GMT", + "Content-Type": "text/plain; charset=iso-8859-1", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4145", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"b11610ec1fe2f13ce388952c3fdf3423\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7AB0:B4DE:1229040:161CBBA:5D77AD93", + "content-length": "1707", + "connection": "keep-alive" + }, + "response": "---\ntitle: Perfecting the Art of Perfection\ndate: \"2016-09-01T23:46:37.121Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Design Inspiration\"\ntags:\n - \"Handwriting\"\n - \"Learning to write\"\ndescription: \"Quisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\"\ncanonical: ''\n---\n\nQuisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\n\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-2.jpg)\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. \n\nPraesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9?ts=0", + "headers": { + "Date": "Tue, 10 Sep 2019 14:05:07 GMT", + "Content-Type": "text/plain; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4144", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"f9b97e27090d24f9b7c773ede73acd0c\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7AB2:2B19:ABA2A4:D0F07D:5D77AD93", + "content-length": "2565", + "connection": "keep-alive" + }, + "response": "---\ntitle: The Origins of Social Stationery Lettering\ndate: \"2016-12-01T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Design Culture\"\ndescription: \"Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante.\"\ncanonical: ''\n---\n\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\n\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-3.jpg)\n\n## Header Level 2\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \n\n
\n\t
\n\t\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\n\t\t
\n\t\t\t— Aliquam tincidunt mauris eu risus.\n\t\t
\n\t
\n
\n\n### Header Level 3\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\n\n```css\n#header h1 a {\n display: block;\n width: 300px;\n height: 80px;\n}\n```\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044?ts=0", + "headers": { + "Date": "Tue, 10 Sep 2019 14:05:07 GMT", + "Content-Type": "text/plain; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4143", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"6e2453f34250f47bb0adc4ff2f6887a8\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7ABA:2B0F:1A6AC8:205D30:5D77AD93", + "content-length": "16071", + "connection": "keep-alive" + }, + "response": "---\ntitle: \"Johannes Gutenberg: The Birth of Movable Type\"\ndate: \"2017-08-18T22:12:03.284Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Typography\"\ntags:\n - \"Open source\"\n - \"Gatsby\"\n - \"Typography\"\ndescription: \"German inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\"\ncanonical: ''\n---\n\nGerman inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\n\n**Johannes Gensfleisch zur Laden zum Gutenberg** (c. 1398 – 1468) was a German blacksmith, goldsmith, printer, and publisher who introduced printing to Europe. His invention of mechanical movable type printing started the Printing Revolution and is widely regarded as the most important event of the modern period. It played a key role in the development of the Renaissance, Reformation, the Age of Enlightenment, and the Scientific revolution and laid the material basis for the modern knowledge-based economy and the spread of learning to the masses.\n\n
\n\t\"Gutenberg\"\n\t
Johannes Gutenberg
\n
\n\nWith his invention of the printing press, Gutenberg was the first European to use movable type printing, in around 1439. Among his many contributions to printing are: the invention of a process for mass-producing movable type; the use of oil-based ink; and the use of a wooden printing press similar to the agricultural screw presses of the period. His truly epochal invention was the combination of these elements into a practical system that allowed the mass production of printed books and was economically viable for printers and readers alike. Gutenberg's method for making type is traditionally considered to have included a type metal alloy and a hand mould for casting type. The alloy was a mixture of lead, tin, and antimony that melted at a relatively low temperature for faster and more economical casting, cast well, and created a durable type.\n\nIn Renaissance Europe, the arrival of mechanical movable type printing introduced the era of mass communication which permanently altered the structure of society. The relatively unrestricted circulation of information — including revolutionary ideas — transcended borders, captured the masses in the Reformation and threatened the power of political and religious authorities; the sharp increase in literacy broke the monopoly of the literate elite on education and learning and bolstered the emerging middle class. Across Europe, the increasing cultural self-awareness of its people led to the rise of proto-nationalism, accelerated by the flowering of the European vernacular languages to the detriment of Latin's status as lingua franca. In the 19th century, the replacement of the hand-operated Gutenberg-style press by steam-powered rotary presses allowed printing on an industrial scale, while Western-style printing was adopted all over the world, becoming practically the sole medium for modern bulk printing.\n\nThe use of movable type was a marked improvement on the handwritten manuscript, which was the existing method of book production in Europe, and upon woodblock printing, and revolutionized European book-making. Gutenberg's printing technology spread rapidly throughout Europe and later the world.\n\nHis major work, the Gutenberg Bible (also known as the 42-line Bible), has been acclaimed for its high aesthetic and technical quality.\n\n## Printing Press\n\nAround 1439, Gutenberg was involved in a financial misadventure making polished metal mirrors (which were believed to capture holy light from religious relics) for sale to pilgrims to Aachen: in 1439 the city was planning to exhibit its collection of relics from Emperor Charlemagne but the event was delayed by one year due to a severe flood and the capital already spent could not be repaid. When the question of satisfying the investors came up, Gutenberg is said to have promised to share a “secret”. It has been widely speculated that this secret may have been the idea of printing with movable type. Also around 1439–1440, the Dutch Laurens Janszoon Coster came up with the idea of printing. Legend has it that the idea came to him “like a ray of light”.\n\n
\n\t\"Early\n\t
Early wooden printing press as depicted in 1568.
\n
\n\nUntil at least 1444 he lived in Strasbourg, most likely in the St. Arbogast parish. It was in Strasbourg in 1440 that Gutenberg is said to have perfected and unveiled the secret of printing based on his research, mysteriously entitled Kunst und Aventur (art and enterprise). It is not clear what work he was engaged in, or whether some early trials with printing from movable type may have been conducted there. After this, there is a gap of four years in the record. In 1448, he was back in Mainz, where he took out a loan from his brother-in-law Arnold Gelthus, quite possibly for a printing press or related paraphernalia. By this date, Gutenberg may have been familiar with intaglio printing; it is claimed that he had worked on copper engravings with an artist known as the Master of Playing Cards.\n\nBy 1450, the press was in operation, and a German poem had been printed, possibly the first item to be printed there. Gutenberg was able to convince the wealthy moneylender Johann Fust for a loan of 800 guilders. Peter Schöffer, who became Fust’s son-in-law, also joined the enterprise. Schöffer had worked as a scribe in Paris and is believed to have designed some of the first typefaces.\n\n
\n\t
\n\t\t

All that has been written to me about that marvelous man seen at Frankfurt is true. I have not seen complete Bibles but only a number of quires of various books of the Bible. The script was very neat and legible, not at all difficult to follow—your grace would be able to read it without effort, and indeed without glasses.

\n\t\t
\n\t\t\t—Future pope Pius II in a letter to Cardinal Carvajal, March 1455\n\t\t
\n\t
\n
\n\nGutenberg's workshop was set up at Hof Humbrecht, a property belonging to a distant relative. It is not clear when Gutenberg conceived the Bible project, but for this he borrowed another 800 guilders from Fust, and work commenced in 1452. At the same time, the press was also printing other, more lucrative texts (possibly Latin grammars). There is also some speculation that there may have been two presses, one for the pedestrian texts, and one for the Bible. One of the profit-making enterprises of the new press was the printing of thousands of indulgences for the church, documented from 1454–55.\n\nIn 1455 Gutenberg completed his 42-line Bible, known as the Gutenberg Bible. About 180 copies were printed, most on paper and some on vellum.\n\n## Court Case\n\nSome time in 1456, there was a dispute between Gutenberg and Fust, and Fust demanded his money back, accusing Gutenberg of misusing the funds. Meanwhile the expenses of the Bible project had proliferated, and Gutenberg's debt now exceeded 20,000 guilders. Fust sued at the archbishop's court. A November 1455 legal document records that there was a partnership for a \"project of the books,\" the funds for which Gutenberg had used for other purposes, according to Fust. The court decided in favor of Fust, giving him control over the Bible printing workshop and half of all printed Bibles.\n\nThus Gutenberg was effectively bankrupt, but it appears he retained (or re-started) a small printing shop, and participated in the printing of a Bible in the town of Bamberg around 1459, for which he seems at least to have supplied the type. But since his printed books never carry his name or a date, it is difficult to be certain, and there is consequently a considerable scholarly debate on this subject. It is also possible that the large Catholicon dictionary, 300 copies of 754 pages, printed in Mainz in 1460, may have been executed in his workshop.\n\nMeanwhile, the Fust–Schöffer shop was the first in Europe to bring out a book with the printer's name and date, the Mainz Psalter of August 1457, and while proudly proclaiming the mechanical process by which it had been produced, it made no mention of Gutenberg.\n\n## Later Life\n\nIn 1462, during a conflict between two archbishops, Mainz was sacked by archbishop Adolph von Nassau, and Gutenberg was exiled. An old man by now, he moved to Eltville where he may have initiated and supervised a new printing press belonging to the brothers Bechtermünze.\n\nIn January 1465, Gutenberg's achievements were recognized and he was given the title Hofmann (gentleman of the court) by von Nassau. This honor included a stipend, an annual court outfit, as well as 2,180 litres of grain and 2,000 litres of wine tax-free. It is believed he may have moved back to Mainz around this time, but this is not certain.\n\n***\n\nGutenberg died in 1468 and was buried in the Franciscan church at Mainz, his contributions largely unknown. This church and the cemetery were later destroyed, and Gutenberg's grave is now lost.\n\nIn 1504, he was mentioned as the inventor of typography in a book by Professor Ivo Wittig. It was not until 1567 that the first portrait of Gutenberg, almost certainly an imaginary reconstruction, appeared in Heinrich Pantaleon's biography of famous Germans.\n\n## Printing Method With Movable Type\n\nGutenberg's early printing process, and what tests he may have made with movable type, are not known in great detail. His later Bibles were printed in such a way as to have required large quantities of type, some estimates suggesting as many as 100,000 individual sorts. Setting each page would take, perhaps, half a day, and considering all the work in loading the press, inking the type, pulling the impressions, hanging up the sheets, distributing the type, etc., it is thought that the Gutenberg–Fust shop might have employed as many as 25 craftsmen.\n\n![Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5](/media/movable-type.jpg)\n\n*Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5*\n\nGutenberg's technique of making movable type remains unclear. In the following decades, punches and copper matrices became standardized in the rapidly disseminating printing presses across Europe. Whether Gutenberg used this sophisticated technique or a somewhat primitive version has been the subject of considerable debate.\n\nIn the standard process of making type, a hard metal punch (made by punchcutting, with the letter carved back to front) is hammered into a softer copper bar, creating a matrix. This is then placed into a hand-held mould and a piece of type, or \"sort\", is cast by filling the mould with molten type-metal; this cools almost at once, and the resulting piece of type can be removed from the mould. The matrix can be reused to create hundreds, or thousands, of identical sorts so that the same character appearing anywhere within the book will appear very uniform, giving rise, over time, to the development of distinct styles of typefaces or fonts. After casting, the sorts are arranged into type-cases, and used to make up pages which are inked and printed, a procedure which can be repeated hundreds, or thousands, of times. The sorts can be reused in any combination, earning the process the name of “movable type”.\n\nThe invention of the making of types with punch, matrix and mold has been widely attributed to Gutenberg. However, recent evidence suggests that Gutenberg's process was somewhat different. If he used the punch and matrix approach, all his letters should have been nearly identical, with some variations due to miscasting and inking. However, the type used in Gutenberg's earliest work shows other variations.\n\n
\n\t
\n\t\t

It is a press, certainly, but a press from which shall flow in inexhaustible streams… Through it, god will spread his word.

\n\t\t
\n\t\t\t—Johannes Gutenberg\n\t\t
\n\t
\n
\n\nIn 2001, the physicist Blaise Agüera y Arcas and Princeton librarian Paul Needham, used digital scans of a Papal bull in the Scheide Library, Princeton, to carefully compare the same letters (types) appearing in different parts of the printed text. The irregularities in Gutenberg's type, particularly in simple characters such as the hyphen, suggested that the variations could not have come from either ink smear or from wear and damage on the pieces of metal on the types themselves. While some identical types are clearly used on other pages, other variations, subjected to detailed image analysis, suggested that they could not have been produced from the same matrix. Transmitted light pictures of the page also appeared to reveal substructures in the type that could not arise from traditional punchcutting techniques. They hypothesized that the method may have involved impressing simple shapes to create alphabets in “cuneiform” style in a matrix made of some soft material, perhaps sand. Casting the type would destroy the mould, and the matrix would need to be recreated to make each additional sort. This could explain the variations in the type, as well as the substructures observed in the printed images.\n\nThus, they feel that “the decisive factor for the birth of typography”, the use of reusable moulds for casting type, might have been a more progressive process than was previously thought. They suggest that the additional step of using the punch to create a mould that could be reused many times was not taken until twenty years later, in the 1470s. Others have not accepted some or all of their suggestions, and have interpreted the evidence in other ways, and the truth of the matter remains very uncertain.\n\nA 1568 history by Hadrianus Junius of Holland claims that the basic idea of the movable type came to Gutenberg from Laurens Janszoon Coster via Fust, who was apprenticed to Coster in the 1430s and may have brought some of his equipment from Haarlem to Mainz. While Coster appears to have experimented with moulds and castable metal type, there is no evidence that he had actually printed anything with this technology. He was an inventor and a goldsmith. However, there is one indirect supporter of the claim that Coster might be the inventor. The author of the Cologne Chronicle of 1499 quotes Ulrich Zell, the first printer of Cologne, that printing was performed in Mainz in 1450, but that some type of printing of lower quality had previously occurred in the Netherlands. However, the chronicle does not mention the name of Coster, while it actually credits Gutenberg as the \"first inventor of printing\" in the very same passage (fol. 312). The first securely dated book by Dutch printers is from 1471, and the Coster connection is today regarded as a mere legend.\n\nThe 19th century printer and typefounder Fournier Le Jeune suggested that Gutenberg might not have been using type cast with a reusable matrix, but possibly wooden types that were carved individually. A similar suggestion was made by Nash in 2004. This remains possible, albeit entirely unproven.\n\nIt has also been questioned whether Gutenberg used movable types at all. In 2004, Italian professor Bruno Fabbiani claimed that examination of the 42-line Bible revealed an overlapping of letters, suggesting that Gutenberg did not in fact use movable type (individual cast characters) but rather used whole plates made from a system somewhat like a modern typewriter, whereby the letters were stamped successively into the plate and then printed. However, most specialists regard the occasional overlapping of type as caused by paper movement over pieces of type of slightly unequal height.", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774?ts=0", + "headers": { + "Date": "Tue, 10 Sep 2019 14:05:08 GMT", + "Content-Type": "text/plain; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4142", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"d2bb4e67afce9cad20457cc0c72b8a41\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7AC1:3ED77:ADD097:D2BE32:5D77AD93", + "content-length": "7465", + "connection": "keep-alive" + }, + "response": "---\ntitle: Humane Typography in the Digital Age\ndate: \"2017-08-19T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Typography\"\ntags:\n - \"Design\"\n - \"Typography\"\n - \"Web Development\"\ndescription: \"An Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\"\ncanonical: ''\n---\n\n- [The first transition](#the-first-transition)\n- [The digital age](#the-digital-age)\n- [Loss of humanity through transitions](#loss-of-humanity-through-transitions)\n- [Chasing perfection](#chasing-perfection)\n\nAn Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\n\nThe typography of this industrial age was no longer handcrafted. Mass production and profit became more important. Quantity mattered more than the quality. The books and printed works in general lost a part of its humanity. The typefaces were not produced by craftsmen anymore. It was the machines printing and tying the books together now. The craftsmen had to let go of their craft and became a cog in the process. An extension of the industrial machine.\n\nBut the victory of the industrialism didn’t mean that the craftsmen were completely extinct. The two worlds continued to coexist independently. Each recognising the good in the other — the power of industrialism and the humanity of craftsmanship. This was the second transition that would strip typography of a part of its humanity. We have to go 500 years back in time to meet the first one.\n\n## The first transition\n\nA similar conflict emerged after the invention of the first printing press in Europe. Johannes Gutenberg invented movable type and used it to produce different compositions. His workshop could print up to 240 impressions per hour. Until then, the books were being copied by hand. All the books were handwritten and decorated with hand drawn ornaments and figures. A process of copying a book was long but each book, even a copy, was a work of art.\n\nThe first printed books were, at first, perceived as inferior to the handwritten ones. They were smaller and cheaper to produce. Movable type provided the printers with flexibility that allowed them to print books in languages other than Latin. Gill describes the transition to industrialism as something that people needed and wanted. Something similar happened after the first printed books emerged. People wanted books in a language they understood and they wanted books they could take with them. They were hungry for knowledge and printed books satisfied this hunger.\n\n![42-line-bible.jpg](/media/42-line-bible.jpg)\n\n*The 42–Line Bible, printed by Gutenberg.*\n\nBut, through this transition, the book lost a large part of its humanity. The machine took over most of the process but craftsmanship was still a part of it. The typefaces were cut manually by the first punch cutters. The paper was made by hand. The illustrations and ornaments were still being hand drawn. These were the remains of the craftsmanship that went almost extinct in the times of Eric Gill.\n\n## The digital age\n\nThe first transition took away a large part of humanity from written communication. Industrialisation, the second transition described by Eric Gill, took away most of what was left. But it’s the third transition that stripped it naked. Typefaces are faceless these days. They’re just fonts on our computers. Hardly anyone knows their stories. Hardly anyone cares. Flicking through thousands of typefaces and finding the “right one” is a matter of minutes.\n\n> In the new computer age the proliferation of typefaces and type manipulations represents a new level of visual pollution threatening our culture. Out of thousands of typefaces, all we need are a few basic ones, and trash the rest.\n>\n— Massimo Vignelli\n\nTypography is not about typefaces. It’s not about what looks best, it’s about what feels right. What communicates the message best. Typography, in its essence, is about the message. “Typographical design should perform optically what the speaker creates through voice and gesture of his thoughts.”, as El Lissitzky, a famous Russian typographer, put it.\n\n## Loss of humanity through transitions\n\nEach transition took away a part of humanity from written language. Handwritten books being the most humane form and the digital typefaces being the least. Overuse of Helvetica is a good example. Messages are being told in a typeface just because it’s a safe option. It’s always there. Everyone knows it but yet, nobody knows it. Stop someone on the street and ask him what Helvetica is? Ask a designer the same question. Ask him where it came from, when, why and who designed it. Most of them will fail to answer these questions. Most of them used it in their precious projects but they still don’t spot it in the street.\n\n
\n\t
\n\t\t

Knowledge of the quality of a typeface is of the greatest importance for the functional, aesthetic and psychological effect.

\n\t\t
\n\t\t\t— Josef Mueller-Brockmann\n\t\t
\n\t
\n
\n\nTypefaces don’t look handmade these days. And that’s all right. They don’t have to. Industrialism took that away from them and we’re fine with it. We’ve traded that part of humanity for a process that produces more books that are easier to read. That can’t be bad. And it isn’t.\n\n> Humane typography will often be comparatively rough and even uncouth; but while a certain uncouthness does not seriously matter in humane works, uncouthness has no excuse whatever in the productions of the machine.\n>\n> — Eric Gill\n\nWe’ve come close to “perfection” in the last five centuries. The letters are crisp and without rough edges. We print our compositions with high–precision printers on a high quality, machine made paper.\n\n![type-through-time.jpg](/media/type-through-time.jpg)\n\n*Type through 5 centuries.*\n\nWe lost a part of ourselves because of this chase after perfection. We forgot about the craftsmanship along the way. And the worst part is that we don’t care. The transition to the digital age made that clear. We choose typefaces like clueless zombies. There’s no meaning in our work. Type sizes, leading, margins… It’s all just a few clicks or lines of code. The message isn’t important anymore. There’s no more “why” behind the “what”.\n\n## Chasing perfection\n\nHuman beings aren’t perfect. Perfection is something that will always elude us. There will always be a small part of humanity in everything we do. No matter how small that part, we should make sure that it transcends the limits of the medium. We have to think about the message first. What typeface should we use and why? Does the typeface match the message and what we want to communicate with it? What will be the leading and why? Will there be more typefaces in our design? On what ground will they be combined? What makes our design unique and why? This is the part of humanity that is left in typography. It might be the last part. Are we really going to give it up?\n\n*Originally published by [Matej Latin](http://matejlatin.co.uk/) on [Medium](https://medium.com/design-notes/humane-typography-in-the-digital-age-9bd5c16199bd?ref=webdesignernews.com#.lygo82z0x).*", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/1970-01-01-first-title.json?ts=300&ref=refs/meta/_netlify_cms", + "headers": { + "Date": "Tue, 10 Sep 2019 14:05:11 GMT", + "Content-Type": "application/vnd.github.VERSION.raw; charset=utf-8", + "Content-Length": "472", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4141", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"bf6c79e0c8e853cedd2614b5777ee6f35ac21beb\"", + "Last-Modified": "Tue, 10 Sep 2019 14:04:34 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7AC2:B4D7:1ADF35:20DCD6:5D77AD96", + "connection": "keep-alive" + }, + "response": "{\"type\":\"PR\",\"pr\":{\"number\":3,\"head\":\"0921e01c94d2acbee9496778b4b603289f3abf42\"},\"user\":\"owner\",\"status\":\"pending_publish\",\"branch\":\"cms/1970-01-01-first-title\",\"collection\":\"posts\",\"commitMessage\":\"Create Post “1970-01-01-first-title”\",\"title\":\"first title\",\"description\":\"first description\",\"objects\":{\"entry\":{\"path\":\"content/posts/1970-01-01-first-title.md\",\"sha\":\"a041245814892e3f73f63ca54333fda649b7fc0b\"},\"files\":[]},\"timeStamp\":\"1970-01-01T00:00:00.300Z\"}", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=cms/1970-01-01-first-title", + "headers": { + "Date": "Tue, 10 Sep 2019 14:05:12 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "404 Not Found", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4140", + "X-RateLimit-Reset": "1568126651", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7AC4:2B19:ABA6F0:D0F5C5:5D77AD97", + "content-length": "148", + "connection": "keep-alive" + }, + "response": "{\n \"message\": \"No commit found for the ref cms/1970-01-01-first-title\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/\"\n}\n", + "status": 404 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=master", + "headers": { + "Date": "Tue, 10 Sep 2019 14:05:12 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "404 Not Found", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4139", + "X-RateLimit-Reset": "1568126651", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7ACB:244E7:11DC3C4:15CCA64:5D77AD98", + "content-length": "116", + "connection": "keep-alive" + }, + "response": "{\n \"message\": \"Not Found\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/#get-contents\"\n}\n", + "status": 404 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=master", + "headers": { + "Date": "Tue, 10 Sep 2019 14:05:13 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "404 Not Found", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4138", + "X-RateLimit-Reset": "1568126651", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7AC7:3ED76:4985D5:5A20CE:5D77AD97", + "content-length": "116", + "connection": "keep-alive" + }, + "response": "{\n \"message\": \"Not Found\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/#get-contents\"\n}\n", + "status": 404 + }, + { + "body": "{\"content\":\"LS0tCnRlbXBsYXRlOiBwb3N0CnRpdGxlOiBmaXJzdCB0aXRsZQpkcmFmdDogdHJ1ZQpkYXRlOiAxOTcwLTAxLTAxVDAwOjAwOjAwLjAwMFoKZGVzY3JpcHRpb246IGZpcnN0IGRlc2NyaXB0aW9uCmNhdGVnb3J5OiBmaXJzdCBjYXRlZ29yeQp0YWdzOgogIC0gdGFnMQotLS0KZmlyc3QgYm9keQo=\",\"encoding\":\"base64\"}", + "method": "POST", + "url": "/repos/owner/repo/git/blobs?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:05:13 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "207", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4137", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"cb99eafe6ceb0316a6aa5e0717f30f21\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7ACD:B4DC:ADDBE1:D38FB1:5D77AD99", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"a041245814892e3f73f63ca54333fda649b7fc0b\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b\"\n}\n", + "status": 201 + }, + { + "method": "GET", + "url": "/repos/owner/repo/branches/master?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:05:14 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4136", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"80c77d2f81ab07f51b5d129d0995389d\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7ACE:244E7:11DC588:15CCC8A:5D77AD99", + "content-length": "5961", + "connection": "keep-alive" + }, + "response": "{\n \"name\": \"master\",\n \"commit\": {\n \"sha\": \"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NTc1Mjc2OjcyNjE3MmRlYWU5OWM4YTJjZWE0YzcxZTczNGEwMmE3OTNkNGQ5ZTU=\",\n \"commit\": {\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-08T09:08:14Z\"\n },\n \"committer\": {\n \"name\": \"GitHub\",\n \"email\": \"noreply@github.com\",\n \"date\": \"2019-09-08T09:08:14Z\"\n },\n \"message\": \"Merge pull request #10 from owner/chore/update_dependencies\\n\\nChore: update dependencies\",\n \"tree\": {\n \"sha\": \"c5b7f6d674ba193bb7b4a5fcf4933034e1b7f2b7\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/c5b7f6d674ba193bb7b4a5fcf4933034e1b7f2b7\"\n },\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"comment_count\": 0,\n \"verification\": {\n \"verified\": true,\n \"reason\": \"valid\",\n \"signature\": \"-----BEGIN PGP SIGNATURE-----\\n\\nwsBcBAABCAAQBQJddMT+CRBK7hj4Ov3rIwAAdHIIABWcobVYZFMuqSPezceRaKDr\\npXGqxvB3WLiIrvsQiBz2si9SvufXxLUdq72iaYTbXMCqIAAIBDNwHLltOKcbUF9J\\nKa8pD6cq7jpNyZfhI8xlapMwEZPu53as0tSvwdOnl/0iL+WYjUZUFQR+vrWEmllu\\nhIES9QxU2nk5zcS7t8sFRA+sJdll8GzzhoWYkpw3wgqpxCzJdf5HJS0tWyVCZM5U\\nCgSpSgTvz9bALnQxu7YVrfLGEvi8S7LaOEz5HQc+TV1hNR2dfl5hhiHhWQ1Rsx5w\\nUECV01vItNWhx2dyMn77hIu/G+bTH89WZDU+CmifsNkmvkq90fk4eNt8Hg1mxn4=\\n=6ayM\\n-----END PGP SIGNATURE-----\\n\",\n \"payload\": \"tree c5b7f6d674ba193bb7b4a5fcf4933034e1b7f2b7\\nparent 8ade583d7c02e7769dd685ca64c10851c09f51cf\\nparent 4940957ff42b034d8c47d64b383c34548a34fbb5\\nauthor owner 1567933694 +0300\\ncommitter GitHub 1567933694 +0300\\n\\nMerge pull request #10 from owner/chore/update_dependencies\\n\\nChore: update dependencies\"\n }\n },\n \"url\": \"https://api.github.com/repos/owner/repo/commits/726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"html_url\": \"https://github.com/owner/repo/commit/726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/commits/726172deae99c8a2cea4c71e734a02a793d4d9e5/comments\",\n \"author\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"committer\": {\n \"login\": \"web-flow\",\n \"id\": 19864447,\n \"node_id\": \"MDQ6VXNlcjE5ODY0NDQ3\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/web-flow\",\n \"html_url\": \"https://github.com/web-flow\",\n \"followers_url\": \"https://api.github.com/users/web-flow/followers\",\n \"following_url\": \"https://api.github.com/users/web-flow/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/web-flow/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/web-flow/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/web-flow/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/web-flow/orgs\",\n \"repos_url\": \"https://api.github.com/users/web-flow/repos\",\n \"events_url\": \"https://api.github.com/users/web-flow/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/web-flow/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"parents\": [\n {\n \"sha\": \"8ade583d7c02e7769dd685ca64c10851c09f51cf\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/8ade583d7c02e7769dd685ca64c10851c09f51cf\",\n \"html_url\": \"https://github.com/owner/repo/commit/8ade583d7c02e7769dd685ca64c10851c09f51cf\"\n },\n {\n \"sha\": \"4940957ff42b034d8c47d64b383c34548a34fbb5\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/4940957ff42b034d8c47d64b383c34548a34fbb5\",\n \"html_url\": \"https://github.com/owner/repo/commit/4940957ff42b034d8c47d64b383c34548a34fbb5\"\n }\n ]\n },\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/branches/master\",\n \"html\": \"https://github.com/owner/repo/tree/master\"\n },\n \"protected\": false,\n \"protection\": {\n \"enabled\": false,\n \"required_status_checks\": {\n \"enforcement_level\": \"off\",\n \"contexts\": [\n\n ]\n }\n },\n \"protection_url\": \"https://api.github.com/repos/owner/repo/branches/master/protection\"\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/trees/726172deae99c8a2cea4c71e734a02a793d4d9e5?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:05:15 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4135", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"7a035f3359b977cd956a086f27ff138d\"", + "Last-Modified": "Tue, 10 Sep 2019 14:04:59 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7AD0:9D1F:A52279:C98877:5D77AD9A", + "content-length": "11769", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"tree\": [\n {\n \"path\": \".circleci\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"e5e9af3301cac61f120b8e4d40b1733c7a45685a\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/e5e9af3301cac61f120b8e4d40b1733c7a45685a\"\n },\n {\n \"path\": \".eslintignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"80b4531b026d19f8fa589efd122e76199d23f967\",\n \"size\": 39,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/80b4531b026d19f8fa589efd122e76199d23f967\"\n },\n {\n \"path\": \".eslintrc.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"370684994aaed5b858da3a006f48cfa57e88fd27\",\n \"size\": 414,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/370684994aaed5b858da3a006f48cfa57e88fd27\"\n },\n {\n \"path\": \".flowconfig\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14aa2ac4cc0e15223ad98630a6f1325fc81f8043\",\n \"size\": 283,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14aa2ac4cc0e15223ad98630a6f1325fc81f8043\"\n },\n {\n \"path\": \".gitattributes\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"10a369ddf4f603337cabc6f21646508323941ce1\",\n \"size\": 135,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/10a369ddf4f603337cabc6f21646508323941ce1\"\n },\n {\n \"path\": \".github\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4ebeece548b52b20af59622354530a6d33b50b43\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4ebeece548b52b20af59622354530a6d33b50b43\"\n },\n {\n \"path\": \".gitignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"c071ba35b0e49899bab6d610a68eef667dbbf157\",\n \"size\": 169,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/c071ba35b0e49899bab6d610a68eef667dbbf157\"\n },\n {\n \"path\": \".prettierignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"393f050e123d998cf8c8b362ff95cc8ac4d250e5\",\n \"size\": 45,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/393f050e123d998cf8c8b362ff95cc8ac4d250e5\"\n },\n {\n \"path\": \".prettierrc\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e52ad05bb13b084d7949dd76e1b2517455162150\",\n \"size\": 223,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/e52ad05bb13b084d7949dd76e1b2517455162150\"\n },\n {\n \"path\": \".stylelintrc.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"4b4c9698d10d756f5faa025659b86375428ed0a7\",\n \"size\": 718,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/4b4c9698d10d756f5faa025659b86375428ed0a7\"\n },\n {\n \"path\": \".vscode\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"286e97ec0113ea8242b41ac222e2c3e8077e6f1e\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/286e97ec0113ea8242b41ac222e2c3e8077e6f1e\"\n },\n {\n \"path\": \"CHANGELOG.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"070a5d4f0eacd2dc0be81ae8996f8982de43046e\",\n \"size\": 2113,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/070a5d4f0eacd2dc0be81ae8996f8982de43046e\"\n },\n {\n \"path\": \"CODE_OF_CONDUCT.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"92bc7565ff0ee145a0041b5179a820f14f39ab22\",\n \"size\": 3355,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/92bc7565ff0ee145a0041b5179a820f14f39ab22\"\n },\n {\n \"path\": \"CONTRIBUTING.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"8552aa241254a61258e1ff9666ab36f32fb1e3b9\",\n \"size\": 3548,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/8552aa241254a61258e1ff9666ab36f32fb1e3b9\"\n },\n {\n \"path\": \"LICENSE\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"42d85938357b49977c126ca03b199129082d4fb8\",\n \"size\": 1091,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/42d85938357b49977c126ca03b199129082d4fb8\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"19df50a78654c8d757ca7f38447aa3d09c7abcce\",\n \"size\": 3698,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/19df50a78654c8d757ca7f38447aa3d09c7abcce\"\n },\n {\n \"path\": \"backend\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\"\n },\n {\n \"path\": \"config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"58afd573bbb69fcca000efd0f5d90b93c93a98dd\",\n \"size\": 853,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/58afd573bbb69fcca000efd0f5d90b93c93a98dd\"\n },\n {\n \"path\": \"content\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/0294ef106c58743907a5c855da1eb0f87b0b6dfc\"\n },\n {\n \"path\": \"flow-typed\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"86c32fd6c3118be5e0dbbb231a834447357236c6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/86c32fd6c3118be5e0dbbb231a834447357236c6\"\n },\n {\n \"path\": \"flow\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"0af45ad00d155c8d8c7407d913ff85278244c9ce\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/0af45ad00d155c8d8c7407d913ff85278244c9ce\"\n },\n {\n \"path\": \"gatsby-browser.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9bd2c9dce175f04980e91cd9dc295a299e3cdb80\",\n \"size\": 90,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9bd2c9dce175f04980e91cd9dc295a299e3cdb80\"\n },\n {\n \"path\": \"gatsby-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"353a109dad62e3f25bf9f5e6a2167f21a6c8b459\",\n \"size\": 7228,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/353a109dad62e3f25bf9f5e6a2167f21a6c8b459\"\n },\n {\n \"path\": \"gatsby-node.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14a207883c2093d2cc071bc5a464e165bcc1fead\",\n \"size\": 409,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14a207883c2093d2cc071bc5a464e165bcc1fead\"\n },\n {\n \"path\": \"gatsby\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4f23c06cd1740bf78304d2c0b29bf6bfdf427981\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4f23c06cd1740bf78304d2c0b29bf6bfdf427981\"\n },\n {\n \"path\": \"jest\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\"\n },\n {\n \"path\": \"netlify.toml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"599b99cc5700404fde316a7ede829776f23e7d45\",\n \"size\": 137,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/599b99cc5700404fde316a7ede829776f23e7d45\"\n },\n {\n \"path\": \"package.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9d777616438b90a18f1a4ebfd5f114b4c06c6f17\",\n \"size\": 6855,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9d777616438b90a18f1a4ebfd5f114b4c06c6f17\"\n },\n {\n \"path\": \"postcss-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d216501e9b351a72e00ba0b7459a6500e27e7da2\",\n \"size\": 703,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d216501e9b351a72e00ba0b7459a6500e27e7da2\"\n },\n {\n \"path\": \"renovate.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"dcc309398785698b8870545c32051a3d72dd8271\",\n \"size\": 460,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/dcc309398785698b8870545c32051a3d72dd8271\"\n },\n {\n \"path\": \"serverless-scripts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ee3701f2fbfc7196ba340f6481d1387d20527898\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ee3701f2fbfc7196ba340f6481d1387d20527898\"\n },\n {\n \"path\": \"serverless-single-page-app-plugin\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"08763fcfba643a06a452398517019bea4a5850ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/08763fcfba643a06a452398517019bea4a5850ba\"\n },\n {\n \"path\": \"serverless.yml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"20b22c5fad229f35d029bf6614d333d82fe8a987\",\n \"size\": 7803,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/20b22c5fad229f35d029bf6614d333d82fe8a987\"\n },\n {\n \"path\": \"src\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"8cdb35a88232c0f32f12f130c92c7cc55f97f471\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/8cdb35a88232c0f32f12f130c92c7cc55f97f471\"\n },\n {\n \"path\": \"static\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"53c6380a600a030d3722bff7ecde36f749fb6964\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/53c6380a600a030d3722bff7ecde36f749fb6964\"\n },\n {\n \"path\": \"utils\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"a592549c9f74db40b51efefcda2fd76810405f27\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/a592549c9f74db40b51efefcda2fd76810405f27\"\n },\n {\n \"path\": \"yarn.lock\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"475c9c1924ca752a0686303e2fdeb7b13ad75f57\",\n \"size\": 793903,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/475c9c1924ca752a0686303e2fdeb7b13ad75f57\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/trees/0294ef106c58743907a5c855da1eb0f87b0b6dfc?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:05:15 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4134", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"7d6ed23edb93fdd710127003bd99d3e3\"", + "Last-Modified": "Tue, 10 Sep 2019 14:04:59 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7AD3:1510F:126AD6C:165B822:5D77AD9B", + "content-length": "831", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\n \"tree\": [\n {\n \"path\": \"pages\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\"\n },\n {\n \"path\": \"posts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"34892575e216c06e757093f036bd8e057c78a52f\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/34892575e216c06e757093f036bd8e057c78a52f\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/trees/34892575e216c06e757093f036bd8e057c78a52f?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:05:16 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4133", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"9485ec7bb0224060380d07454fc25c0a\"", + "Last-Modified": "Tue, 10 Sep 2019 14:04:59 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7AD4:9D21:17814BD:1CA4B1F:5D77AD9B", + "content-length": "2030", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"34892575e216c06e757093f036bd8e057c78a52f\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/34892575e216c06e757093f036bd8e057c78a52f\",\n \"tree\": [\n {\n \"path\": \"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"size\": 1707,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\"\n },\n {\n \"path\": \"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"size\": 2565,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\"\n },\n {\n \"path\": \"2016-02-02---A-Brief-History-of-Typography.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"0eea554365f002d0f1572af9a58522d335a794d5\",\n \"size\": 2786,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\"\n },\n {\n \"path\": \"2017-18-08---The-Birth-of-Movable-Type.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"44f78c474d04273185a95821426f75affc9b0044\",\n \"size\": 16071,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\"\n },\n {\n \"path\": \"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"size\": 7465,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 200 + }, + { + "body": "{\"base_tree\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"tree\":[{\"path\":\"1970-01-01-first-title.md\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"a041245814892e3f73f63ca54333fda649b7fc0b\"}]}", + "method": "POST", + "url": "/repos/owner/repo/git/trees?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:05:16 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "2362", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4132", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"ec28ace732cd92ce67ac2d4bb75b73a8\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7AD6:244E7:11DC914:15CD0E5:5D77AD9C", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a041245814892e3f73f63ca54333fda649b7fc0b\",\n \"size\": 167,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b\"\n },\n {\n \"path\": \"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"size\": 1707,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\"\n },\n {\n \"path\": \"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"size\": 2565,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\"\n },\n {\n \"path\": \"2016-02-02---A-Brief-History-of-Typography.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"0eea554365f002d0f1572af9a58522d335a794d5\",\n \"size\": 2786,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\"\n },\n {\n \"path\": \"2017-18-08---The-Birth-of-Movable-Type.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"44f78c474d04273185a95821426f75affc9b0044\",\n \"size\": 16071,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\"\n },\n {\n \"path\": \"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"size\": 7465,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"base_tree\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\"tree\":[{\"path\":\"posts\",\"mode\":\"040000\",\"type\":\"tree\",\"sha\":\"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\"parentSha\":\"34892575e216c06e757093f036bd8e057c78a52f\"}]}", + "method": "POST", + "url": "/repos/owner/repo/git/trees?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:05:17 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "831", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4131", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"8a08d49c75e6316b7eedd97658f5dd3d\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7ADD:9D1D:19EAFD:1FA59F:5D77AD9D", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"tree\": [\n {\n \"path\": \"pages\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\"\n },\n {\n \"path\": \"posts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"base_tree\":\"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\"tree\":[{\"path\":\"content\",\"mode\":\"040000\",\"type\":\"tree\",\"sha\":\"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\"parentSha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\"}]}", + "method": "POST", + "url": "/repos/owner/repo/git/trees?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:05:18 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "11769", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4130", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"fb9e1158542ab7bb09a23b22e7f7dbd8\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/trees/daee8d5d15d144e8779955166a2afeccde2770e1", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7AE0:15110:18CC1B4:1E221F4:5D77AD9D", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"daee8d5d15d144e8779955166a2afeccde2770e1\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/daee8d5d15d144e8779955166a2afeccde2770e1\",\n \"tree\": [\n {\n \"path\": \".circleci\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"e5e9af3301cac61f120b8e4d40b1733c7a45685a\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/e5e9af3301cac61f120b8e4d40b1733c7a45685a\"\n },\n {\n \"path\": \".eslintignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"80b4531b026d19f8fa589efd122e76199d23f967\",\n \"size\": 39,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/80b4531b026d19f8fa589efd122e76199d23f967\"\n },\n {\n \"path\": \".eslintrc.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"370684994aaed5b858da3a006f48cfa57e88fd27\",\n \"size\": 414,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/370684994aaed5b858da3a006f48cfa57e88fd27\"\n },\n {\n \"path\": \".flowconfig\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14aa2ac4cc0e15223ad98630a6f1325fc81f8043\",\n \"size\": 283,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14aa2ac4cc0e15223ad98630a6f1325fc81f8043\"\n },\n {\n \"path\": \".gitattributes\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"10a369ddf4f603337cabc6f21646508323941ce1\",\n \"size\": 135,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/10a369ddf4f603337cabc6f21646508323941ce1\"\n },\n {\n \"path\": \".github\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4ebeece548b52b20af59622354530a6d33b50b43\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4ebeece548b52b20af59622354530a6d33b50b43\"\n },\n {\n \"path\": \".gitignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"c071ba35b0e49899bab6d610a68eef667dbbf157\",\n \"size\": 169,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/c071ba35b0e49899bab6d610a68eef667dbbf157\"\n },\n {\n \"path\": \".prettierignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"393f050e123d998cf8c8b362ff95cc8ac4d250e5\",\n \"size\": 45,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/393f050e123d998cf8c8b362ff95cc8ac4d250e5\"\n },\n {\n \"path\": \".prettierrc\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e52ad05bb13b084d7949dd76e1b2517455162150\",\n \"size\": 223,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/e52ad05bb13b084d7949dd76e1b2517455162150\"\n },\n {\n \"path\": \".stylelintrc.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"4b4c9698d10d756f5faa025659b86375428ed0a7\",\n \"size\": 718,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/4b4c9698d10d756f5faa025659b86375428ed0a7\"\n },\n {\n \"path\": \".vscode\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"286e97ec0113ea8242b41ac222e2c3e8077e6f1e\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/286e97ec0113ea8242b41ac222e2c3e8077e6f1e\"\n },\n {\n \"path\": \"CHANGELOG.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"070a5d4f0eacd2dc0be81ae8996f8982de43046e\",\n \"size\": 2113,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/070a5d4f0eacd2dc0be81ae8996f8982de43046e\"\n },\n {\n \"path\": \"CODE_OF_CONDUCT.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"92bc7565ff0ee145a0041b5179a820f14f39ab22\",\n \"size\": 3355,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/92bc7565ff0ee145a0041b5179a820f14f39ab22\"\n },\n {\n \"path\": \"CONTRIBUTING.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"8552aa241254a61258e1ff9666ab36f32fb1e3b9\",\n \"size\": 3548,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/8552aa241254a61258e1ff9666ab36f32fb1e3b9\"\n },\n {\n \"path\": \"LICENSE\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"42d85938357b49977c126ca03b199129082d4fb8\",\n \"size\": 1091,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/42d85938357b49977c126ca03b199129082d4fb8\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"19df50a78654c8d757ca7f38447aa3d09c7abcce\",\n \"size\": 3698,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/19df50a78654c8d757ca7f38447aa3d09c7abcce\"\n },\n {\n \"path\": \"backend\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\"\n },\n {\n \"path\": \"config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"58afd573bbb69fcca000efd0f5d90b93c93a98dd\",\n \"size\": 853,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/58afd573bbb69fcca000efd0f5d90b93c93a98dd\"\n },\n {\n \"path\": \"content\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639\"\n },\n {\n \"path\": \"flow-typed\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"86c32fd6c3118be5e0dbbb231a834447357236c6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/86c32fd6c3118be5e0dbbb231a834447357236c6\"\n },\n {\n \"path\": \"flow\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"0af45ad00d155c8d8c7407d913ff85278244c9ce\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/0af45ad00d155c8d8c7407d913ff85278244c9ce\"\n },\n {\n \"path\": \"gatsby-browser.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9bd2c9dce175f04980e91cd9dc295a299e3cdb80\",\n \"size\": 90,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9bd2c9dce175f04980e91cd9dc295a299e3cdb80\"\n },\n {\n \"path\": \"gatsby-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"353a109dad62e3f25bf9f5e6a2167f21a6c8b459\",\n \"size\": 7228,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/353a109dad62e3f25bf9f5e6a2167f21a6c8b459\"\n },\n {\n \"path\": \"gatsby-node.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14a207883c2093d2cc071bc5a464e165bcc1fead\",\n \"size\": 409,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14a207883c2093d2cc071bc5a464e165bcc1fead\"\n },\n {\n \"path\": \"gatsby\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4f23c06cd1740bf78304d2c0b29bf6bfdf427981\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4f23c06cd1740bf78304d2c0b29bf6bfdf427981\"\n },\n {\n \"path\": \"jest\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\"\n },\n {\n \"path\": \"netlify.toml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"599b99cc5700404fde316a7ede829776f23e7d45\",\n \"size\": 137,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/599b99cc5700404fde316a7ede829776f23e7d45\"\n },\n {\n \"path\": \"package.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9d777616438b90a18f1a4ebfd5f114b4c06c6f17\",\n \"size\": 6855,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9d777616438b90a18f1a4ebfd5f114b4c06c6f17\"\n },\n {\n \"path\": \"postcss-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d216501e9b351a72e00ba0b7459a6500e27e7da2\",\n \"size\": 703,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d216501e9b351a72e00ba0b7459a6500e27e7da2\"\n },\n {\n \"path\": \"renovate.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"dcc309398785698b8870545c32051a3d72dd8271\",\n \"size\": 460,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/dcc309398785698b8870545c32051a3d72dd8271\"\n },\n {\n \"path\": \"serverless-scripts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ee3701f2fbfc7196ba340f6481d1387d20527898\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ee3701f2fbfc7196ba340f6481d1387d20527898\"\n },\n {\n \"path\": \"serverless-single-page-app-plugin\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"08763fcfba643a06a452398517019bea4a5850ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/08763fcfba643a06a452398517019bea4a5850ba\"\n },\n {\n \"path\": \"serverless.yml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"20b22c5fad229f35d029bf6614d333d82fe8a987\",\n \"size\": 7803,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/20b22c5fad229f35d029bf6614d333d82fe8a987\"\n },\n {\n \"path\": \"src\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"8cdb35a88232c0f32f12f130c92c7cc55f97f471\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/8cdb35a88232c0f32f12f130c92c7cc55f97f471\"\n },\n {\n \"path\": \"static\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"53c6380a600a030d3722bff7ecde36f749fb6964\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/53c6380a600a030d3722bff7ecde36f749fb6964\"\n },\n {\n \"path\": \"utils\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"a592549c9f74db40b51efefcda2fd76810405f27\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/a592549c9f74db40b51efefcda2fd76810405f27\"\n },\n {\n \"path\": \"yarn.lock\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"475c9c1924ca752a0686303e2fdeb7b13ad75f57\",\n \"size\": 793903,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/475c9c1924ca752a0686303e2fdeb7b13ad75f57\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"message\":\"Create Post “1970-01-01-first-title”\",\"tree\":\"daee8d5d15d144e8779955166a2afeccde2770e1\",\"parents\":[\"726172deae99c8a2cea4c71e734a02a793d4d9e5\"]}", + "method": "POST", + "url": "/repos/owner/repo/git/commits?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:05:19 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "1504", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4129", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"dfd24bd9781db5ec8bd97b3894a45d05\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/commits/ef44ecdd1927324e393a861b654c32f07267e7a5", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7AE1:2B19:ABAD14:D0FD8B:5D77AD9E", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"ef44ecdd1927324e393a861b654c32f07267e7a5\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NTc1Mjc2OmVmNDRlY2RkMTkyNzMyNGUzOTNhODYxYjY1NGMzMmYwNzI2N2U3YTU=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/ef44ecdd1927324e393a861b654c32f07267e7a5\",\n \"html_url\": \"https://github.com/owner/repo/commit/ef44ecdd1927324e393a861b654c32f07267e7a5\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T14:05:18Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T14:05:18Z\"\n },\n \"tree\": {\n \"sha\": \"daee8d5d15d144e8779955166a2afeccde2770e1\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/daee8d5d15d144e8779955166a2afeccde2770e1\"\n },\n \"message\": \"Create Post “1970-01-01-first-title”\",\n \"parents\": [\n {\n \"sha\": \"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"html_url\": \"https://github.com/owner/repo/commit/726172deae99c8a2cea4c71e734a02a793d4d9e5\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "status": 201 + }, + { + "body": "{\"ref\":\"refs/heads/cms/1970-01-01-first-title\",\"sha\":\"ef44ecdd1927324e393a861b654c32f07267e7a5\"}", + "method": "POST", + "url": "/repos/owner/repo/git/refs?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:05:20 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "518", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4128", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"526f10d25bb707f54e83ea57495c89bc\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "Location": "https://api.github.com/repos/owner/repo/git/refs/heads/cms/1970-01-01-first-title", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7AE2:15110:18CC41C:1E22501:5D77AD9F", + "connection": "keep-alive" + }, + "response": "{\n \"ref\": \"refs/heads/cms/1970-01-01-first-title\",\n \"node_id\": \"MDM6UmVmMjA3NTc1Mjc2OmNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxl\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/heads/cms/1970-01-01-first-title\",\n \"object\": {\n \"sha\": \"ef44ecdd1927324e393a861b654c32f07267e7a5\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/ef44ecdd1927324e393a861b654c32f07267e7a5\"\n }\n}\n", + "status": 201 + }, + { + "body": "{\"title\":\"Create Post “1970-01-01-first-title”\",\"body\":\"Automatically generated by Netlify CMS\",\"head\":\"cms/1970-01-01-first-title\",\"base\":\"master\"}", + "method": "POST", + "url": "/repos/owner/repo/pulls?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:05:21 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "21715", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4127", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"30c9169be3a658727e6f1cd00b6ff596\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/pulls/4", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7AE5:244EB:1852DFC:1D8D1A7:5D77ADA0", + "connection": "keep-alive" + }, + "response": "{\n \"url\": \"https://api.github.com/repos/owner/repo/pulls/4\",\n \"id\": 316012485,\n \"node_id\": \"MDExOlB1bGxSZXF1ZXN0MzE2MDEyNDg1\",\n \"html_url\": \"https://github.com/owner/repo/pull/4\",\n \"diff_url\": \"https://github.com/owner/repo/pull/4.diff\",\n \"patch_url\": \"https://github.com/owner/repo/pull/4.patch\",\n \"issue_url\": \"https://api.github.com/repos/owner/repo/issues/4\",\n \"number\": 4,\n \"state\": \"open\",\n \"locked\": false,\n \"title\": \"Create Post “1970-01-01-first-title”\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Automatically generated by Netlify CMS\",\n \"created_at\": \"2019-09-10T14:05:21Z\",\n \"updated_at\": \"2019-09-10T14:05:21Z\",\n \"closed_at\": null,\n \"merged_at\": null,\n \"merge_commit_sha\": null,\n \"assignee\": null,\n \"assignees\": [\n\n ],\n \"requested_reviewers\": [\n\n ],\n \"requested_teams\": [\n\n ],\n \"labels\": [\n\n ],\n \"milestone\": null,\n \"commits_url\": \"https://api.github.com/repos/owner/repo/pulls/4/commits\",\n \"review_comments_url\": \"https://api.github.com/repos/owner/repo/pulls/4/comments\",\n \"review_comment_url\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/issues/4/comments\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/ef44ecdd1927324e393a861b654c32f07267e7a5\",\n \"head\": {\n \"label\": \"owner:cms/1970-01-01-first-title\",\n \"ref\": \"cms/1970-01-01-first-title\",\n \"sha\": \"ef44ecdd1927324e393a861b654c32f07267e7a5\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 207575276,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NzUyNzY=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-10T14:01:42Z\",\n \"updated_at\": \"2019-09-10T14:04:59Z\",\n \"pushed_at\": \"2019-09-10T14:05:20Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 1,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 1,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"base\": {\n \"label\": \"owner:master\",\n \"ref\": \"master\",\n \"sha\": \"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 207575276,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NzUyNzY=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-10T14:01:42Z\",\n \"updated_at\": \"2019-09-10T14:04:59Z\",\n \"pushed_at\": \"2019-09-10T14:05:20Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 1,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 1,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/4\"\n },\n \"html\": {\n \"href\": \"https://github.com/owner/repo/pull/4\"\n },\n \"issue\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/4\"\n },\n \"comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/4/comments\"\n },\n \"review_comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/4/comments\"\n },\n \"review_comment\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\"\n },\n \"commits\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/4/commits\"\n },\n \"statuses\": {\n \"href\": \"https://api.github.com/repos/owner/repo/statuses/ef44ecdd1927324e393a861b654c32f07267e7a5\"\n }\n },\n \"author_association\": \"OWNER\",\n \"merged\": false,\n \"mergeable\": null,\n \"rebaseable\": null,\n \"mergeable_state\": \"unknown\",\n \"merged_by\": null,\n \"comments\": 0,\n \"review_comments\": 0,\n \"maintainer_can_modify\": false,\n \"commits\": 1,\n \"additions\": 11,\n \"deletions\": 0,\n \"changed_files\": 1\n}\n", + "status": 201 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:05:22 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4126", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"707e80d46b2bb7a482fe662906717299\"", + "Last-Modified": "Tue, 10 Sep 2019 14:04:59 GMT", + "X-Poll-Interval": "300", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7AE6:9D1F:A52853:C98FA2:5D77ADA1", + "content-length": "484", + "connection": "keep-alive" + }, + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NTc1Mjc2OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"7608b9572ad48763308d6110ca472cb24034fce8\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/7608b9572ad48763308d6110ca472cb24034fce8\"\n }\n}\n", + "status": 200 + }, + { + "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjQsImhlYWQiOiJlZjQ0ZWNkZDE5MjczMjRlMzkzYTg2MWI2NTRjMzJmMDcyNjdlN2E1In0sInVzZXIiOiJvd25lciIsInN0YXR1cyI6ImRyYWZ0IiwiYnJhbmNoIjoiY21zLzE5NzAtMDEtMDEtZmlyc3QtdGl0bGUiLCJjb2xsZWN0aW9uIjoicG9zdHMiLCJjb21taXRNZXNzYWdlIjoiQ3JlYXRlIFBvc3Qg4oCcMTk3MC0wMS0wMS1maXJzdC10aXRsZeKAnSIsInRpdGxlIjoiZmlyc3QgdGl0bGUiLCJkZXNjcmlwdGlvbiI6ImZpcnN0IGRlc2NyaXB0aW9uIiwib2JqZWN0cyI6eyJlbnRyeSI6eyJwYXRoIjoiY29udGVudC9wb3N0cy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxlLm1kIiwic2hhIjoiYTA0MTI0NTgxNDg5MmUzZjczZjYzY2E1NDMzM2ZkYTY0OWI3ZmMwYiJ9LCJmaWxlcyI6W119LCJ0aW1lU3RhbXAiOiIxOTcwLTAxLTAxVDAwOjAwOjAwLjMwMFoifQ==\",\"encoding\":\"base64\"}", + "method": "POST", + "url": "/repos/owner/repo/git/blobs?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:05:23 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "207", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4125", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"f9e2ac953e16bf997e18236a26e7922f\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/blobs/da49698b9d7fb2daec1e3aea831fda81017ef760", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7AE9:9D1D:19EC4E:1FA73E:5D77ADA2", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"da49698b9d7fb2daec1e3aea831fda81017ef760\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/da49698b9d7fb2daec1e3aea831fda81017ef760\"\n}\n", + "status": 201 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/trees/7608b9572ad48763308d6110ca472cb24034fce8?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:05:23 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4124", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"7a4fbdc873ee13afead93882b4f1fc79\"", + "Last-Modified": "Tue, 10 Sep 2019 14:04:59 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7AEA:244EB:18532F9:1D8D7EE:5D77ADA3", + "content-length": "895", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"7608b9572ad48763308d6110ca472cb24034fce8\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/7608b9572ad48763308d6110ca472cb24034fce8\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"bf6c79e0c8e853cedd2614b5777ee6f35ac21beb\",\n \"size\": 472,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/bf6c79e0c8e853cedd2614b5777ee6f35ac21beb\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 200 + }, + { + "body": "{\"base_tree\":\"7608b9572ad48763308d6110ca472cb24034fce8\",\"tree\":[{\"path\":\"1970-01-01-first-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"da49698b9d7fb2daec1e3aea831fda81017ef760\"}]}", + "method": "POST", + "url": "/repos/owner/repo/git/trees?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:05:24 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "895", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4123", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"c4fc2e435958eb786346f2e260624b01\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/trees/7119c07f4926027a72e81f5fe7d35b7279200e57", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7AEE:3ED77:ADDF5D:D2D059:5D77ADA4", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"7119c07f4926027a72e81f5fe7d35b7279200e57\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/7119c07f4926027a72e81f5fe7d35b7279200e57\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"da49698b9d7fb2daec1e3aea831fda81017ef760\",\n \"size\": 462,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/da49698b9d7fb2daec1e3aea831fda81017ef760\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"message\":\"Updating “1970-01-01-first-title” metadata\",\"tree\":\"7119c07f4926027a72e81f5fe7d35b7279200e57\",\"parents\":[\"7608b9572ad48763308d6110ca472cb24034fce8\"]}", + "method": "POST", + "url": "/repos/owner/repo/git/commits?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:05:25 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "1510", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4122", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"ca5565df4df7b12a87c446da541aa9e5\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/commits/c39fa7223f7b427926941d7be8cca70fa0ffcdae", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7AF0:2B19:ABB284:D10460:5D77ADA4", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"c39fa7223f7b427926941d7be8cca70fa0ffcdae\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NTc1Mjc2OmMzOWZhNzIyM2Y3YjQyNzkyNjk0MWQ3YmU4Y2NhNzBmYTBmZmNkYWU=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/c39fa7223f7b427926941d7be8cca70fa0ffcdae\",\n \"html_url\": \"https://github.com/owner/repo/commit/c39fa7223f7b427926941d7be8cca70fa0ffcdae\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T14:05:25Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T14:05:25Z\"\n },\n \"tree\": {\n \"sha\": \"7119c07f4926027a72e81f5fe7d35b7279200e57\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/7119c07f4926027a72e81f5fe7d35b7279200e57\"\n },\n \"message\": \"Updating “1970-01-01-first-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"7608b9572ad48763308d6110ca472cb24034fce8\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/7608b9572ad48763308d6110ca472cb24034fce8\",\n \"html_url\": \"https://github.com/owner/repo/commit/7608b9572ad48763308d6110ca472cb24034fce8\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "status": 201 + }, + { + "body": "{\"sha\":\"c39fa7223f7b427926941d7be8cca70fa0ffcdae\",\"force\":false}", + "method": "PATCH", + "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:05:26 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4121", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"d773c99c27130e098d9beca5bd3aabe7\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7AF2:2B24:1815FDA:1D48ACD:5D77ADA5", + "content-length": "484", + "connection": "keep-alive" + }, + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NTc1Mjc2OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"c39fa7223f7b427926941d7be8cca70fa0ffcdae\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/c39fa7223f7b427926941d7be8cca70fa0ffcdae\"\n }\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=cms/1970-01-01-first-title", + "headers": { + "Date": "Tue, 10 Sep 2019 14:05:27 GMT", + "Content-Type": "application/vnd.github.VERSION.raw; charset=utf-8", + "Content-Length": "167", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4120", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"a041245814892e3f73f63ca54333fda649b7fc0b\"", + "Last-Modified": "Tue, 10 Sep 2019 14:05:18 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7AF4:B4DC:ADE765:D39E02:5D77ADA7", + "connection": "keep-alive" + }, + "response": "---\ntemplate: post\ntitle: first title\ndraft: true\ndate: 1970-01-01T00:00:00.000Z\ndescription: first description\ncategory: first category\ntags:\n - tag1\n---\nfirst body\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=master", + "headers": { + "Date": "Tue, 10 Sep 2019 14:05:27 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "404 Not Found", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4119", + "X-RateLimit-Reset": "1568126651", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7AF6:1510C:1850C0:1DC8B2:5D77ADA7", + "content-length": "116", + "connection": "keep-alive" + }, + "response": "{\n \"message\": \"Not Found\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/#get-contents\"\n}\n", + "status": 404 + }, + { + "method": "GET", + "url": "/repos/owner/repo/commits/ef44ecdd1927324e393a861b654c32f07267e7a5/status?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:05:28 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4118", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"d9f2bcf32d10d4731f46bad758f58167\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo, repo:status", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7AF8:B4E0:1701B45:1C01643:5D77ADA8", + "content-length": "6574", + "connection": "keep-alive" + }, + "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"ef44ecdd1927324e393a861b654c32f07267e7a5\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 207575276,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NzUyNzY=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/ef44ecdd1927324e393a861b654c32f07267e7a5\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/ef44ecdd1927324e393a861b654c32f07267e7a5/status\"\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/refs/heads/cms?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:05:28 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4117", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"293e41ef281105d384c359ab72433629\"", + "Last-Modified": "Tue, 10 Sep 2019 14:04:59 GMT", + "X-Poll-Interval": "300", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7AFA:9D21:1782888:1CA63CF:5D77ADA8", + "content-length": "542", + "connection": "keep-alive" + }, + "response": "[\n {\n \"ref\": \"refs/heads/cms/1970-01-01-first-title\",\n \"node_id\": \"MDM6UmVmMjA3NTc1Mjc2OmNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxl\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/heads/cms/1970-01-01-first-title\",\n \"object\": {\n \"sha\": \"ef44ecdd1927324e393a861b654c32f07267e7a5\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/ef44ecdd1927324e393a861b654c32f07267e7a5\"\n }\n }\n]\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/pulls?ts=300&head=cms/1970-01-01-first-title&state=open&base=master", + "headers": { + "Date": "Tue, 10 Sep 2019 14:05:29 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4116", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"62cd00f49631f742c6faec9525dfcdc6\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7AFC:B4E0:1701CA5:1C017E6:5D77ADA8", + "content-length": "22154", + "connection": "keep-alive" + }, + "response": "[\n {\n \"url\": \"https://api.github.com/repos/owner/repo/pulls/4\",\n \"id\": 316012485,\n \"node_id\": \"MDExOlB1bGxSZXF1ZXN0MzE2MDEyNDg1\",\n \"html_url\": \"https://github.com/owner/repo/pull/4\",\n \"diff_url\": \"https://github.com/owner/repo/pull/4.diff\",\n \"patch_url\": \"https://github.com/owner/repo/pull/4.patch\",\n \"issue_url\": \"https://api.github.com/repos/owner/repo/issues/4\",\n \"number\": 4,\n \"state\": \"open\",\n \"locked\": false,\n \"title\": \"Create Post “1970-01-01-first-title”\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Automatically generated by Netlify CMS\",\n \"created_at\": \"2019-09-10T14:05:21Z\",\n \"updated_at\": \"2019-09-10T14:05:21Z\",\n \"closed_at\": null,\n \"merged_at\": null,\n \"merge_commit_sha\": \"53de7d8163d48f3d7376e0ef002d30621dda0dfb\",\n \"assignee\": null,\n \"assignees\": [\n\n ],\n \"requested_reviewers\": [\n\n ],\n \"requested_teams\": [\n\n ],\n \"labels\": [\n\n ],\n \"milestone\": null,\n \"commits_url\": \"https://api.github.com/repos/owner/repo/pulls/4/commits\",\n \"review_comments_url\": \"https://api.github.com/repos/owner/repo/pulls/4/comments\",\n \"review_comment_url\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/issues/4/comments\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/ef44ecdd1927324e393a861b654c32f07267e7a5\",\n \"head\": {\n \"label\": \"owner:cms/1970-01-01-first-title\",\n \"ref\": \"cms/1970-01-01-first-title\",\n \"sha\": \"ef44ecdd1927324e393a861b654c32f07267e7a5\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 207575276,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NzUyNzY=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-10T14:01:42Z\",\n \"updated_at\": \"2019-09-10T14:04:59Z\",\n \"pushed_at\": \"2019-09-10T14:05:26Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 1,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 1,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"base\": {\n \"label\": \"owner:master\",\n \"ref\": \"master\",\n \"sha\": \"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 207575276,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NzUyNzY=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-10T14:01:42Z\",\n \"updated_at\": \"2019-09-10T14:04:59Z\",\n \"pushed_at\": \"2019-09-10T14:05:26Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 1,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 1,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/4\"\n },\n \"html\": {\n \"href\": \"https://github.com/owner/repo/pull/4\"\n },\n \"issue\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/4\"\n },\n \"comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/4/comments\"\n },\n \"review_comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/4/comments\"\n },\n \"review_comment\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\"\n },\n \"commits\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/4/commits\"\n },\n \"statuses\": {\n \"href\": \"https://api.github.com/repos/owner/repo/statuses/ef44ecdd1927324e393a861b654c32f07267e7a5\"\n }\n },\n \"author_association\": \"OWNER\"\n }\n]\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=cms/1970-01-01-first-title", + "headers": { + "Date": "Tue, 10 Sep 2019 14:05:30 GMT", + "Content-Type": "application/vnd.github.VERSION.raw; charset=utf-8", + "Content-Length": "167", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4115", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"a041245814892e3f73f63ca54333fda649b7fc0b\"", + "Last-Modified": "Tue, 10 Sep 2019 14:05:18 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7AFE:3ED76:498F90:5A2CA1:5D77ADA9", + "connection": "keep-alive" + }, + "response": "---\ntemplate: post\ntitle: first title\ndraft: true\ndate: 1970-01-01T00:00:00.000Z\ndescription: first description\ncategory: first category\ntags:\n - tag1\n---\nfirst body\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=master", + "headers": { + "Date": "Tue, 10 Sep 2019 14:05:30 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "404 Not Found", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4114", + "X-RateLimit-Reset": "1568126651", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B00:1510E:AEC73A:D4FF8F:5D77ADA9", + "content-length": "116", + "connection": "keep-alive" + }, + "response": "{\n \"message\": \"Not Found\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/#get-contents\"\n}\n", + "status": 404 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:05:31 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4113", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"d773c99c27130e098d9beca5bd3aabe7\"", + "Last-Modified": "Tue, 10 Sep 2019 14:04:59 GMT", + "X-Poll-Interval": "300", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B03:3ED7B:129DB5C:169E369:5D77ADAA", + "content-length": "484", + "connection": "keep-alive" + }, + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NTc1Mjc2OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"c39fa7223f7b427926941d7be8cca70fa0ffcdae\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/c39fa7223f7b427926941d7be8cca70fa0ffcdae\"\n }\n}\n", + "status": 200 + }, + { + "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjQsImhlYWQiOiJlZjQ0ZWNkZDE5MjczMjRlMzkzYTg2MWI2NTRjMzJmMDcyNjdlN2E1In0sInVzZXIiOiJvd25lciIsInN0YXR1cyI6InBlbmRpbmdfcmV2aWV3IiwiYnJhbmNoIjoiY21zLzE5NzAtMDEtMDEtZmlyc3QtdGl0bGUiLCJjb2xsZWN0aW9uIjoicG9zdHMiLCJjb21taXRNZXNzYWdlIjoiQ3JlYXRlIFBvc3Qg4oCcMTk3MC0wMS0wMS1maXJzdC10aXRsZeKAnSIsInRpdGxlIjoiZmlyc3QgdGl0bGUiLCJkZXNjcmlwdGlvbiI6ImZpcnN0IGRlc2NyaXB0aW9uIiwib2JqZWN0cyI6eyJlbnRyeSI6eyJwYXRoIjoiY29udGVudC9wb3N0cy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxlLm1kIiwic2hhIjoiYTA0MTI0NTgxNDg5MmUzZjczZjYzY2E1NDMzM2ZkYTY0OWI3ZmMwYiJ9LCJmaWxlcyI6W119LCJ0aW1lU3RhbXAiOiIxOTcwLTAxLTAxVDAwOjAwOjAwLjMwMFoifQ==\",\"encoding\":\"base64\"}", + "method": "POST", + "url": "/repos/owner/repo/git/blobs?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:05:31 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "207", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4112", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"ea824c29e37a2ec5f2ff5114cd1859e1\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/blobs/91ab206cbd21d556d2d4ede0300567ef11a59a79", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B04:15110:18CD7BF:1E23D70:5D77ADAB", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"91ab206cbd21d556d2d4ede0300567ef11a59a79\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/91ab206cbd21d556d2d4ede0300567ef11a59a79\"\n}\n", + "status": 201 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/trees/c39fa7223f7b427926941d7be8cca70fa0ffcdae?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:05:32 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4111", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"7ce242728b8caf28e60c16105bf20be0\"", + "Last-Modified": "Tue, 10 Sep 2019 14:04:59 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B06:B4DC:ADEB76:D3A30D:5D77ADAB", + "content-length": "895", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"c39fa7223f7b427926941d7be8cca70fa0ffcdae\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/c39fa7223f7b427926941d7be8cca70fa0ffcdae\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"da49698b9d7fb2daec1e3aea831fda81017ef760\",\n \"size\": 462,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/da49698b9d7fb2daec1e3aea831fda81017ef760\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 200 + }, + { + "body": "{\"base_tree\":\"c39fa7223f7b427926941d7be8cca70fa0ffcdae\",\"tree\":[{\"path\":\"1970-01-01-first-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"91ab206cbd21d556d2d4ede0300567ef11a59a79\"}]}", + "method": "POST", + "url": "/repos/owner/repo/git/trees?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:05:33 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "895", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4110", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"ea406eb51129140cecb05c0060a2a129\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/trees/ae61c835d834b0871af5da1837e53687431b3948", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B08:9D21:1782FCE:1CA6CDA:5D77ADAC", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"ae61c835d834b0871af5da1837e53687431b3948\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ae61c835d834b0871af5da1837e53687431b3948\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"91ab206cbd21d556d2d4ede0300567ef11a59a79\",\n \"size\": 471,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/91ab206cbd21d556d2d4ede0300567ef11a59a79\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"message\":\"Updating “1970-01-01-first-title” metadata\",\"tree\":\"ae61c835d834b0871af5da1837e53687431b3948\",\"parents\":[\"c39fa7223f7b427926941d7be8cca70fa0ffcdae\"]}", + "method": "POST", + "url": "/repos/owner/repo/git/commits?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:05:34 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "1510", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4109", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"d12fdf00ed9a30ab2dee6fd681d7bd40\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/commits/80203d729edaad68e0825d22b1ab00443c305aea", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B0A:3ED82:18C7979:1E27577:5D77ADAD", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"80203d729edaad68e0825d22b1ab00443c305aea\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NTc1Mjc2OjgwMjAzZDcyOWVkYWFkNjhlMDgyNWQyMmIxYWIwMDQ0M2MzMDVhZWE=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/80203d729edaad68e0825d22b1ab00443c305aea\",\n \"html_url\": \"https://github.com/owner/repo/commit/80203d729edaad68e0825d22b1ab00443c305aea\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T14:05:33Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T14:05:33Z\"\n },\n \"tree\": {\n \"sha\": \"ae61c835d834b0871af5da1837e53687431b3948\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ae61c835d834b0871af5da1837e53687431b3948\"\n },\n \"message\": \"Updating “1970-01-01-first-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"c39fa7223f7b427926941d7be8cca70fa0ffcdae\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/c39fa7223f7b427926941d7be8cca70fa0ffcdae\",\n \"html_url\": \"https://github.com/owner/repo/commit/c39fa7223f7b427926941d7be8cca70fa0ffcdae\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "status": 201 + }, + { + "method": "GET", + "url": "/repos/owner/repo/commits/ef44ecdd1927324e393a861b654c32f07267e7a5/status?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:05:34 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4108", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"d9f2bcf32d10d4731f46bad758f58167\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo, repo:status", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B0C:244EB:185438C:1D8EC8A:5D77ADAD", + "content-length": "6574", + "connection": "keep-alive" + }, + "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"ef44ecdd1927324e393a861b654c32f07267e7a5\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 207575276,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NzUyNzY=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/ef44ecdd1927324e393a861b654c32f07267e7a5\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/ef44ecdd1927324e393a861b654c32f07267e7a5/status\"\n}\n", + "status": 200 + }, + { + "body": "{\"sha\":\"80203d729edaad68e0825d22b1ab00443c305aea\",\"force\":false}", + "method": "PATCH", + "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:05:35 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4107", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"917541c1f67bac4c6c8523a95bf41b2e\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B0E:2B15:4F5DB7:605A83:5D77ADAE", + "content-length": "484", + "connection": "keep-alive" + }, + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NTc1Mjc2OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"80203d729edaad68e0825d22b1ab00443c305aea\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/80203d729edaad68e0825d22b1ab00443c305aea\"\n }\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:05:38 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4105", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"917541c1f67bac4c6c8523a95bf41b2e\"", + "Last-Modified": "Tue, 10 Sep 2019 14:04:59 GMT", + "X-Poll-Interval": "300", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B10:9D20:1188E37:157268F:5D77ADB1", + "content-length": "484", + "connection": "keep-alive" + }, + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NTc1Mjc2OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"80203d729edaad68e0825d22b1ab00443c305aea\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/80203d729edaad68e0825d22b1ab00443c305aea\"\n }\n}\n", + "status": 200 + }, + { + "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjQsImhlYWQiOiJlZjQ0ZWNkZDE5MjczMjRlMzkzYTg2MWI2NTRjMzJmMDcyNjdlN2E1In0sInVzZXIiOiJvd25lciIsInN0YXR1cyI6InBlbmRpbmdfcHVibGlzaCIsImJyYW5jaCI6ImNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxlIiwiY29sbGVjdGlvbiI6InBvc3RzIiwiY29tbWl0TWVzc2FnZSI6IkNyZWF0ZSBQb3N0IOKAnDE5NzAtMDEtMDEtZmlyc3QtdGl0bGXigJ0iLCJ0aXRsZSI6ImZpcnN0IHRpdGxlIiwiZGVzY3JpcHRpb24iOiJmaXJzdCBkZXNjcmlwdGlvbiIsIm9iamVjdHMiOnsiZW50cnkiOnsicGF0aCI6ImNvbnRlbnQvcG9zdHMvMTk3MC0wMS0wMS1maXJzdC10aXRsZS5tZCIsInNoYSI6ImEwNDEyNDU4MTQ4OTJlM2Y3M2Y2M2NhNTQzMzNmZGE2NDliN2ZjMGIifSwiZmlsZXMiOltdfSwidGltZVN0YW1wIjoiMTk3MC0wMS0wMVQwMDowMDowMC4zMDBaIn0=\",\"encoding\":\"base64\"}", + "method": "POST", + "url": "/repos/owner/repo/git/blobs?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:05:39 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "207", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4103", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"8e34e6609d519fdd17c5759723261b02\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/blobs/a7f2c4d035d67e35903af48b04b9a3e101a60fc5", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B16:1510F:126CADB:165DC93:5D77ADB2", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"a7f2c4d035d67e35903af48b04b9a3e101a60fc5\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a7f2c4d035d67e35903af48b04b9a3e101a60fc5\"\n}\n", + "status": 201 + }, + { + "method": "GET", + "url": "/repos/owner/repo/commits/ef44ecdd1927324e393a861b654c32f07267e7a5/status?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:05:39 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4101", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"d9f2bcf32d10d4731f46bad758f58167\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo, repo:status", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B1A:B4DE:122B882:161FD74:5D77ADB3", + "content-length": "6574", + "connection": "keep-alive" + }, + "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"ef44ecdd1927324e393a861b654c32f07267e7a5\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 207575276,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NzUyNzY=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/ef44ecdd1927324e393a861b654c32f07267e7a5\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/ef44ecdd1927324e393a861b654c32f07267e7a5/status\"\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/trees/80203d729edaad68e0825d22b1ab00443c305aea?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:05:40 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4100", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"45c28e91ac9e899b1b0e34f231b9da7c\"", + "Last-Modified": "Tue, 10 Sep 2019 14:04:59 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B1C:B4D3:B3671:CE79B:5D77ADB3", + "content-length": "895", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"80203d729edaad68e0825d22b1ab00443c305aea\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/80203d729edaad68e0825d22b1ab00443c305aea\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"91ab206cbd21d556d2d4ede0300567ef11a59a79\",\n \"size\": 471,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/91ab206cbd21d556d2d4ede0300567ef11a59a79\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 200 + }, + { + "body": "{\"base_tree\":\"80203d729edaad68e0825d22b1ab00443c305aea\",\"tree\":[{\"path\":\"1970-01-01-first-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"a7f2c4d035d67e35903af48b04b9a3e101a60fc5\"}]}", + "method": "POST", + "url": "/repos/owner/repo/git/trees?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:05:40 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "895", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4098", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"1bc7d0a158d5705cd61071acf81092f5\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/trees/5936e633465b3470b56007dc49271258ffde4531", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B20:244EB:1854E3D:1D8F9C6:5D77ADB4", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"5936e633465b3470b56007dc49271258ffde4531\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/5936e633465b3470b56007dc49271258ffde4531\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a7f2c4d035d67e35903af48b04b9a3e101a60fc5\",\n \"size\": 472,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a7f2c4d035d67e35903af48b04b9a3e101a60fc5\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"message\":\"Updating “1970-01-01-first-title” metadata\",\"tree\":\"5936e633465b3470b56007dc49271258ffde4531\",\"parents\":[\"80203d729edaad68e0825d22b1ab00443c305aea\"]}", + "method": "POST", + "url": "/repos/owner/repo/git/commits?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:05:41 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "1510", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4097", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"e6800d525addf15b93a96bedf91dd3ce\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/commits/af577d2b115a514fe902d8f7bb5cc652a06e9656", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B26:15110:18CE778:1E25109:5D77ADB5", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"af577d2b115a514fe902d8f7bb5cc652a06e9656\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NTc1Mjc2OmFmNTc3ZDJiMTE1YTUxNGZlOTAyZDhmN2JiNWNjNjUyYTA2ZTk2NTY=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/af577d2b115a514fe902d8f7bb5cc652a06e9656\",\n \"html_url\": \"https://github.com/owner/repo/commit/af577d2b115a514fe902d8f7bb5cc652a06e9656\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T14:05:41Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T14:05:41Z\"\n },\n \"tree\": {\n \"sha\": \"5936e633465b3470b56007dc49271258ffde4531\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/5936e633465b3470b56007dc49271258ffde4531\"\n },\n \"message\": \"Updating “1970-01-01-first-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"80203d729edaad68e0825d22b1ab00443c305aea\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/80203d729edaad68e0825d22b1ab00443c305aea\",\n \"html_url\": \"https://github.com/owner/repo/commit/80203d729edaad68e0825d22b1ab00443c305aea\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "status": 201 + }, + { + "body": "{\"sha\":\"af577d2b115a514fe902d8f7bb5cc652a06e9656\",\"force\":false}", + "method": "PATCH", + "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:05:42 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4096", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"a7bbed77edfed69439cd4e6b0b2646e3\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B2A:2B19:ABC124:D11666:5D77ADB5", + "content-length": "484", + "connection": "keep-alive" + }, + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NTc1Mjc2OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"af577d2b115a514fe902d8f7bb5cc652a06e9656\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/af577d2b115a514fe902d8f7bb5cc652a06e9656\"\n }\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:05:43 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4095", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"a7bbed77edfed69439cd4e6b0b2646e3\"", + "Last-Modified": "Tue, 10 Sep 2019 14:04:59 GMT", + "X-Poll-Interval": "300", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B2E:15110:18CEAA7:1E254FE:5D77ADB6", + "content-length": "484", + "connection": "keep-alive" + }, + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NTc1Mjc2OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"af577d2b115a514fe902d8f7bb5cc652a06e9656\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/af577d2b115a514fe902d8f7bb5cc652a06e9656\"\n }\n}\n", + "status": 200 + } +] \ No newline at end of file diff --git a/cypress/fixtures/Github Backend Editorial Workflow - REST API__can create an entry.json b/cypress/fixtures/Github Backend Editorial Workflow - REST API__can create an entry.json new file mode 100644 index 00000000..284c74d9 --- /dev/null +++ b/cypress/fixtures/Github Backend Editorial Workflow - REST API__can create an entry.json @@ -0,0 +1,1181 @@ +[ + { + "method": "GET", + "url": "/user?ts=0", + "headers": { + "Date": "Tue, 10 Sep 2019 14:02:28 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4323", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"fb606f875be1d23b690ea5f5e26b9fe9\"", + "Last-Modified": "Wed, 28 Aug 2019 04:48:54 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A52:244E1:528C70:63A6CF:5D77ACF4", + "content-length": "1321", + "connection": "keep-alive" + }, + "response": "{\"login\":\"owner\",\"id\":1,\"avatar_url\":\"https://avatars1.githubusercontent.com/u/7892489?v=4\",\"name\":\"owner\"}", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo?ts=0", + "headers": { + "Date": "Tue, 10 Sep 2019 14:02:29 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4322", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"4b1653e80c157aefbf0eb777912a8dff\"", + "Last-Modified": "Tue, 10 Sep 2019 14:02:10 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A55:2B24:18025DE:1D309E7:5D77ACF4", + "content-length": "7296", + "connection": "keep-alive" + }, + "response": "{\n \"id\": 207575276,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NzUyNzY=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-10T14:01:42Z\",\n \"updated_at\": \"2019-09-10T14:02:10Z\",\n \"pushed_at\": \"2019-09-10T14:02:06Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\",\n \"permissions\": {\n \"admin\": true,\n \"push\": true,\n \"pull\": true\n },\n \"allow_squash_merge\": true,\n \"allow_merge_commit\": true,\n \"allow_rebase_merge\": true,\n \"network_count\": 0,\n \"subscribers_count\": 1\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/content/posts?ts=0&ref=master", + "headers": { + "Date": "Tue, 10 Sep 2019 14:02:29 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4321", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"c5b7f6d674ba193bb7b4a5fcf4933034e1b7f2b7\"", + "Last-Modified": "Tue, 10 Sep 2019 14:02:10 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A56:244E7:11CF14C:15BC5A8:5D77ACF5", + "content-length": "7422", + "connection": "keep-alive" + }, + "response": "[\n {\n \"name\": \"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"path\": \"content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"sha\": \"6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"size\": 1707,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"html\": \"https://github.com/owner/repo/blob/master/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md\"\n }\n },\n {\n \"name\": \"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"path\": \"content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"sha\": \"d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"size\": 2565,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"html\": \"https://github.com/owner/repo/blob/master/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\"\n }\n },\n {\n \"name\": \"2016-02-02---A-Brief-History-of-Typography.md\",\n \"path\": \"content/posts/2016-02-02---A-Brief-History-of-Typography.md\",\n \"sha\": \"0eea554365f002d0f1572af9a58522d335a794d5\",\n \"size\": 2786,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2016-02-02---A-Brief-History-of-Typography.md?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/content/posts/2016-02-02---A-Brief-History-of-Typography.md\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/content/posts/2016-02-02---A-Brief-History-of-Typography.md\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2016-02-02---A-Brief-History-of-Typography.md?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\",\n \"html\": \"https://github.com/owner/repo/blob/master/content/posts/2016-02-02---A-Brief-History-of-Typography.md\"\n }\n },\n {\n \"name\": \"2017-18-08---The-Birth-of-Movable-Type.md\",\n \"path\": \"content/posts/2017-18-08---The-Birth-of-Movable-Type.md\",\n \"sha\": \"44f78c474d04273185a95821426f75affc9b0044\",\n \"size\": 16071,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2017-18-08---The-Birth-of-Movable-Type.md?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/content/posts/2017-18-08---The-Birth-of-Movable-Type.md\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/content/posts/2017-18-08---The-Birth-of-Movable-Type.md\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2017-18-08---The-Birth-of-Movable-Type.md?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\",\n \"html\": \"https://github.com/owner/repo/blob/master/content/posts/2017-18-08---The-Birth-of-Movable-Type.md\"\n }\n },\n {\n \"name\": \"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"path\": \"content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"sha\": \"a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"size\": 7465,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"html\": \"https://github.com/owner/repo/blob/master/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md\"\n }\n }\n]\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/static/media?ts=0&ref=master", + "headers": { + "Date": "Tue, 10 Sep 2019 14:02:30 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4320", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"c5b7f6d674ba193bb7b4a5fcf4933034e1b7f2b7\"", + "Last-Modified": "Tue, 10 Sep 2019 14:02:10 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A59:9D1F:A4972C:C8DB9C:5D77ACF5", + "content-length": "12362", + "connection": "keep-alive" + }, + "response": "[\n {\n \"name\": \"42-line-bible.jpg\",\n \"path\": \"static/media/42-line-bible.jpg\",\n \"sha\": \"41c8d12f9ca5864beb827c381fbeff935209d5fb\",\n \"size\": 671242,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/static/media/42-line-bible.jpg?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/static/media/42-line-bible.jpg\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/41c8d12f9ca5864beb827c381fbeff935209d5fb\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/static/media/42-line-bible.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/static/media/42-line-bible.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/41c8d12f9ca5864beb827c381fbeff935209d5fb\",\n \"html\": \"https://github.com/owner/repo/blob/master/static/media/42-line-bible.jpg\"\n }\n },\n {\n \"name\": \"gutenberg.jpg\",\n \"path\": \"static/media/gutenberg.jpg\",\n \"sha\": \"04315e355873ea5d358d9c371c39a6845c1ae4ae\",\n \"size\": 155002,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/static/media/gutenberg.jpg?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/static/media/gutenberg.jpg\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/04315e355873ea5d358d9c371c39a6845c1ae4ae\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/static/media/gutenberg.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/static/media/gutenberg.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/04315e355873ea5d358d9c371c39a6845c1ae4ae\",\n \"html\": \"https://github.com/owner/repo/blob/master/static/media/gutenberg.jpg\"\n }\n },\n {\n \"name\": \"image-0.jpg\",\n \"path\": \"static/media/image-0.jpg\",\n \"sha\": \"b70a1b64fd4fa9635823231a0ba92c6dc9393f16\",\n \"size\": 660287,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/static/media/image-0.jpg?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/static/media/image-0.jpg\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/b70a1b64fd4fa9635823231a0ba92c6dc9393f16\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/static/media/image-0.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/static/media/image-0.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/b70a1b64fd4fa9635823231a0ba92c6dc9393f16\",\n \"html\": \"https://github.com/owner/repo/blob/master/static/media/image-0.jpg\"\n }\n },\n {\n \"name\": \"image-1.jpg\",\n \"path\": \"static/media/image-1.jpg\",\n \"sha\": \"05eedae372b829c62501ac751b2d42dcc432541b\",\n \"size\": 392411,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/static/media/image-1.jpg?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/static/media/image-1.jpg\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/05eedae372b829c62501ac751b2d42dcc432541b\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/static/media/image-1.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/static/media/image-1.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/05eedae372b829c62501ac751b2d42dcc432541b\",\n \"html\": \"https://github.com/owner/repo/blob/master/static/media/image-1.jpg\"\n }\n },\n {\n \"name\": \"image-2.jpg\",\n \"path\": \"static/media/image-2.jpg\",\n \"sha\": \"53845ed35faf8939bea242bb85eda7c324b1be0b\",\n \"size\": 99147,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/static/media/image-2.jpg?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/static/media/image-2.jpg\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/53845ed35faf8939bea242bb85eda7c324b1be0b\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/static/media/image-2.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/static/media/image-2.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/53845ed35faf8939bea242bb85eda7c324b1be0b\",\n \"html\": \"https://github.com/owner/repo/blob/master/static/media/image-2.jpg\"\n }\n },\n {\n \"name\": \"image-3.jpg\",\n \"path\": \"static/media/image-3.jpg\",\n \"sha\": \"8b2339d97069e826fae1f156212e40ae458454e3\",\n \"size\": 358022,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/static/media/image-3.jpg?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/static/media/image-3.jpg\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/8b2339d97069e826fae1f156212e40ae458454e3\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/static/media/image-3.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/static/media/image-3.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/8b2339d97069e826fae1f156212e40ae458454e3\",\n \"html\": \"https://github.com/owner/repo/blob/master/static/media/image-3.jpg\"\n }\n },\n {\n \"name\": \"image-4.jpg\",\n \"path\": \"static/media/image-4.jpg\",\n \"sha\": \"a8f6f21253a67a4284b5a953b2fe633d44152ecd\",\n \"size\": 114837,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/static/media/image-4.jpg?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/static/media/image-4.jpg\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/a8f6f21253a67a4284b5a953b2fe633d44152ecd\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/static/media/image-4.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/static/media/image-4.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/a8f6f21253a67a4284b5a953b2fe633d44152ecd\",\n \"html\": \"https://github.com/owner/repo/blob/master/static/media/image-4.jpg\"\n }\n },\n {\n \"name\": \"movable-type.jpg\",\n \"path\": \"static/media/movable-type.jpg\",\n \"sha\": \"57b4e925ea00bd8e195cf4418eb6eb2995ea5f10\",\n \"size\": 559028,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/static/media/movable-type.jpg?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/static/media/movable-type.jpg\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/57b4e925ea00bd8e195cf4418eb6eb2995ea5f10\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/static/media/movable-type.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/static/media/movable-type.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/57b4e925ea00bd8e195cf4418eb6eb2995ea5f10\",\n \"html\": \"https://github.com/owner/repo/blob/master/static/media/movable-type.jpg\"\n }\n },\n {\n \"name\": \"printing-press.jpg\",\n \"path\": \"static/media/printing-press.jpg\",\n \"sha\": \"d27f56c9437d9becd2f56cc627c9322c2f1f61f6\",\n \"size\": 279283,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/static/media/printing-press.jpg?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/static/media/printing-press.jpg\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/d27f56c9437d9becd2f56cc627c9322c2f1f61f6\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/static/media/printing-press.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/static/media/printing-press.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/d27f56c9437d9becd2f56cc627c9322c2f1f61f6\",\n \"html\": \"https://github.com/owner/repo/blob/master/static/media/printing-press.jpg\"\n }\n },\n {\n \"name\": \"type-through-time.jpg\",\n \"path\": \"static/media/type-through-time.jpg\",\n \"sha\": \"3f08366a805c51a60ec5056010f22de4ba08abaa\",\n \"size\": 117689,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/static/media/type-through-time.jpg?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/static/media/type-through-time.jpg\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/3f08366a805c51a60ec5056010f22de4ba08abaa\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/static/media/type-through-time.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/static/media/type-through-time.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/3f08366a805c51a60ec5056010f22de4ba08abaa\",\n \"html\": \"https://github.com/owner/repo/blob/master/static/media/type-through-time.jpg\"\n }\n }\n]\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043?ts=0", + "headers": { + "Date": "Tue, 10 Sep 2019 14:02:30 GMT", + "Content-Type": "text/plain; charset=iso-8859-1", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4319", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"b11610ec1fe2f13ce388952c3fdf3423\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A5C:1510E:AE1F3D:D4309B:5D77ACF6", + "content-length": "1707", + "connection": "keep-alive" + }, + "response": "---\ntitle: Perfecting the Art of Perfection\ndate: \"2016-09-01T23:46:37.121Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Design Inspiration\"\ntags:\n - \"Handwriting\"\n - \"Learning to write\"\ndescription: \"Quisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\"\ncanonical: ''\n---\n\nQuisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\n\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-2.jpg)\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. \n\nPraesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5?ts=0", + "headers": { + "Date": "Tue, 10 Sep 2019 14:02:30 GMT", + "Content-Type": "text/plain; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4318", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"733ab4cffe213d8db3be254e7fee8f69\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A64:1510D:47D923:581F82:5D77ACF6", + "content-length": "2786", + "connection": "keep-alive" + }, + "response": "---\ntitle: \"A Brief History of Typography\"\ndate: \"2016-02-02T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Design Inspiration\"\ntags:\n - \"Linotype\"\n - \"Monotype\"\n - \"History of typography\"\n - \"Helvetica\"\ndescription: \"Morbi in sem quis dui placerat ornare. Pellentesque odio nisi, euismod in, pharetra a, ultricies in, diam. Sed arcu. Cras consequat.\"\ncanonical: ''\n---\n\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\n\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-0.jpg)\n\n## Header Level 2\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \n\n
\n\t
\n\t\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\n\t\t
\n\t\t\t— Aliquam tincidunt mauris eu risus.\n\t\t
\n\t
\n
\n\n### Header Level 3\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\n\n```css\n#header h1 a {\n display: block;\n width: 300px;\n height: 80px;\n}\n```\n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9?ts=0", + "headers": { + "Date": "Tue, 10 Sep 2019 14:02:31 GMT", + "Content-Type": "text/plain; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4317", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"f9b97e27090d24f9b7c773ede73acd0c\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A5E:244E7:11CF260:15BC70B:5D77ACF6", + "content-length": "2565", + "connection": "keep-alive" + }, + "response": "---\ntitle: The Origins of Social Stationery Lettering\ndate: \"2016-12-01T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Design Culture\"\ndescription: \"Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante.\"\ncanonical: ''\n---\n\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\n\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-3.jpg)\n\n## Header Level 2\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \n\n
\n\t
\n\t\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\n\t\t
\n\t\t\t— Aliquam tincidunt mauris eu risus.\n\t\t
\n\t
\n
\n\n### Header Level 3\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\n\n```css\n#header h1 a {\n display: block;\n width: 300px;\n height: 80px;\n}\n```\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044?ts=0", + "headers": { + "Date": "Tue, 10 Sep 2019 14:02:31 GMT", + "Content-Type": "text/plain; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4316", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"6e2453f34250f47bb0adc4ff2f6887a8\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A66:3ED82:18B4757:1E0F963:5D77ACF6", + "content-length": "16071", + "connection": "keep-alive" + }, + "response": "---\ntitle: \"Johannes Gutenberg: The Birth of Movable Type\"\ndate: \"2017-08-18T22:12:03.284Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Typography\"\ntags:\n - \"Open source\"\n - \"Gatsby\"\n - \"Typography\"\ndescription: \"German inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\"\ncanonical: ''\n---\n\nGerman inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\n\n**Johannes Gensfleisch zur Laden zum Gutenberg** (c. 1398 – 1468) was a German blacksmith, goldsmith, printer, and publisher who introduced printing to Europe. His invention of mechanical movable type printing started the Printing Revolution and is widely regarded as the most important event of the modern period. It played a key role in the development of the Renaissance, Reformation, the Age of Enlightenment, and the Scientific revolution and laid the material basis for the modern knowledge-based economy and the spread of learning to the masses.\n\n
\n\t\"Gutenberg\"\n\t
Johannes Gutenberg
\n
\n\nWith his invention of the printing press, Gutenberg was the first European to use movable type printing, in around 1439. Among his many contributions to printing are: the invention of a process for mass-producing movable type; the use of oil-based ink; and the use of a wooden printing press similar to the agricultural screw presses of the period. His truly epochal invention was the combination of these elements into a practical system that allowed the mass production of printed books and was economically viable for printers and readers alike. Gutenberg's method for making type is traditionally considered to have included a type metal alloy and a hand mould for casting type. The alloy was a mixture of lead, tin, and antimony that melted at a relatively low temperature for faster and more economical casting, cast well, and created a durable type.\n\nIn Renaissance Europe, the arrival of mechanical movable type printing introduced the era of mass communication which permanently altered the structure of society. The relatively unrestricted circulation of information — including revolutionary ideas — transcended borders, captured the masses in the Reformation and threatened the power of political and religious authorities; the sharp increase in literacy broke the monopoly of the literate elite on education and learning and bolstered the emerging middle class. Across Europe, the increasing cultural self-awareness of its people led to the rise of proto-nationalism, accelerated by the flowering of the European vernacular languages to the detriment of Latin's status as lingua franca. In the 19th century, the replacement of the hand-operated Gutenberg-style press by steam-powered rotary presses allowed printing on an industrial scale, while Western-style printing was adopted all over the world, becoming practically the sole medium for modern bulk printing.\n\nThe use of movable type was a marked improvement on the handwritten manuscript, which was the existing method of book production in Europe, and upon woodblock printing, and revolutionized European book-making. Gutenberg's printing technology spread rapidly throughout Europe and later the world.\n\nHis major work, the Gutenberg Bible (also known as the 42-line Bible), has been acclaimed for its high aesthetic and technical quality.\n\n## Printing Press\n\nAround 1439, Gutenberg was involved in a financial misadventure making polished metal mirrors (which were believed to capture holy light from religious relics) for sale to pilgrims to Aachen: in 1439 the city was planning to exhibit its collection of relics from Emperor Charlemagne but the event was delayed by one year due to a severe flood and the capital already spent could not be repaid. When the question of satisfying the investors came up, Gutenberg is said to have promised to share a “secret”. It has been widely speculated that this secret may have been the idea of printing with movable type. Also around 1439–1440, the Dutch Laurens Janszoon Coster came up with the idea of printing. Legend has it that the idea came to him “like a ray of light”.\n\n
\n\t\"Early\n\t
Early wooden printing press as depicted in 1568.
\n
\n\nUntil at least 1444 he lived in Strasbourg, most likely in the St. Arbogast parish. It was in Strasbourg in 1440 that Gutenberg is said to have perfected and unveiled the secret of printing based on his research, mysteriously entitled Kunst und Aventur (art and enterprise). It is not clear what work he was engaged in, or whether some early trials with printing from movable type may have been conducted there. After this, there is a gap of four years in the record. In 1448, he was back in Mainz, where he took out a loan from his brother-in-law Arnold Gelthus, quite possibly for a printing press or related paraphernalia. By this date, Gutenberg may have been familiar with intaglio printing; it is claimed that he had worked on copper engravings with an artist known as the Master of Playing Cards.\n\nBy 1450, the press was in operation, and a German poem had been printed, possibly the first item to be printed there. Gutenberg was able to convince the wealthy moneylender Johann Fust for a loan of 800 guilders. Peter Schöffer, who became Fust’s son-in-law, also joined the enterprise. Schöffer had worked as a scribe in Paris and is believed to have designed some of the first typefaces.\n\n
\n\t
\n\t\t

All that has been written to me about that marvelous man seen at Frankfurt is true. I have not seen complete Bibles but only a number of quires of various books of the Bible. The script was very neat and legible, not at all difficult to follow—your grace would be able to read it without effort, and indeed without glasses.

\n\t\t
\n\t\t\t—Future pope Pius II in a letter to Cardinal Carvajal, March 1455\n\t\t
\n\t
\n
\n\nGutenberg's workshop was set up at Hof Humbrecht, a property belonging to a distant relative. It is not clear when Gutenberg conceived the Bible project, but for this he borrowed another 800 guilders from Fust, and work commenced in 1452. At the same time, the press was also printing other, more lucrative texts (possibly Latin grammars). There is also some speculation that there may have been two presses, one for the pedestrian texts, and one for the Bible. One of the profit-making enterprises of the new press was the printing of thousands of indulgences for the church, documented from 1454–55.\n\nIn 1455 Gutenberg completed his 42-line Bible, known as the Gutenberg Bible. About 180 copies were printed, most on paper and some on vellum.\n\n## Court Case\n\nSome time in 1456, there was a dispute between Gutenberg and Fust, and Fust demanded his money back, accusing Gutenberg of misusing the funds. Meanwhile the expenses of the Bible project had proliferated, and Gutenberg's debt now exceeded 20,000 guilders. Fust sued at the archbishop's court. A November 1455 legal document records that there was a partnership for a \"project of the books,\" the funds for which Gutenberg had used for other purposes, according to Fust. The court decided in favor of Fust, giving him control over the Bible printing workshop and half of all printed Bibles.\n\nThus Gutenberg was effectively bankrupt, but it appears he retained (or re-started) a small printing shop, and participated in the printing of a Bible in the town of Bamberg around 1459, for which he seems at least to have supplied the type. But since his printed books never carry his name or a date, it is difficult to be certain, and there is consequently a considerable scholarly debate on this subject. It is also possible that the large Catholicon dictionary, 300 copies of 754 pages, printed in Mainz in 1460, may have been executed in his workshop.\n\nMeanwhile, the Fust–Schöffer shop was the first in Europe to bring out a book with the printer's name and date, the Mainz Psalter of August 1457, and while proudly proclaiming the mechanical process by which it had been produced, it made no mention of Gutenberg.\n\n## Later Life\n\nIn 1462, during a conflict between two archbishops, Mainz was sacked by archbishop Adolph von Nassau, and Gutenberg was exiled. An old man by now, he moved to Eltville where he may have initiated and supervised a new printing press belonging to the brothers Bechtermünze.\n\nIn January 1465, Gutenberg's achievements were recognized and he was given the title Hofmann (gentleman of the court) by von Nassau. This honor included a stipend, an annual court outfit, as well as 2,180 litres of grain and 2,000 litres of wine tax-free. It is believed he may have moved back to Mainz around this time, but this is not certain.\n\n***\n\nGutenberg died in 1468 and was buried in the Franciscan church at Mainz, his contributions largely unknown. This church and the cemetery were later destroyed, and Gutenberg's grave is now lost.\n\nIn 1504, he was mentioned as the inventor of typography in a book by Professor Ivo Wittig. It was not until 1567 that the first portrait of Gutenberg, almost certainly an imaginary reconstruction, appeared in Heinrich Pantaleon's biography of famous Germans.\n\n## Printing Method With Movable Type\n\nGutenberg's early printing process, and what tests he may have made with movable type, are not known in great detail. His later Bibles were printed in such a way as to have required large quantities of type, some estimates suggesting as many as 100,000 individual sorts. Setting each page would take, perhaps, half a day, and considering all the work in loading the press, inking the type, pulling the impressions, hanging up the sheets, distributing the type, etc., it is thought that the Gutenberg–Fust shop might have employed as many as 25 craftsmen.\n\n![Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5](/media/movable-type.jpg)\n\n*Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5*\n\nGutenberg's technique of making movable type remains unclear. In the following decades, punches and copper matrices became standardized in the rapidly disseminating printing presses across Europe. Whether Gutenberg used this sophisticated technique or a somewhat primitive version has been the subject of considerable debate.\n\nIn the standard process of making type, a hard metal punch (made by punchcutting, with the letter carved back to front) is hammered into a softer copper bar, creating a matrix. This is then placed into a hand-held mould and a piece of type, or \"sort\", is cast by filling the mould with molten type-metal; this cools almost at once, and the resulting piece of type can be removed from the mould. The matrix can be reused to create hundreds, or thousands, of identical sorts so that the same character appearing anywhere within the book will appear very uniform, giving rise, over time, to the development of distinct styles of typefaces or fonts. After casting, the sorts are arranged into type-cases, and used to make up pages which are inked and printed, a procedure which can be repeated hundreds, or thousands, of times. The sorts can be reused in any combination, earning the process the name of “movable type”.\n\nThe invention of the making of types with punch, matrix and mold has been widely attributed to Gutenberg. However, recent evidence suggests that Gutenberg's process was somewhat different. If he used the punch and matrix approach, all his letters should have been nearly identical, with some variations due to miscasting and inking. However, the type used in Gutenberg's earliest work shows other variations.\n\n
\n\t
\n\t\t

It is a press, certainly, but a press from which shall flow in inexhaustible streams… Through it, god will spread his word.

\n\t\t
\n\t\t\t—Johannes Gutenberg\n\t\t
\n\t
\n
\n\nIn 2001, the physicist Blaise Agüera y Arcas and Princeton librarian Paul Needham, used digital scans of a Papal bull in the Scheide Library, Princeton, to carefully compare the same letters (types) appearing in different parts of the printed text. The irregularities in Gutenberg's type, particularly in simple characters such as the hyphen, suggested that the variations could not have come from either ink smear or from wear and damage on the pieces of metal on the types themselves. While some identical types are clearly used on other pages, other variations, subjected to detailed image analysis, suggested that they could not have been produced from the same matrix. Transmitted light pictures of the page also appeared to reveal substructures in the type that could not arise from traditional punchcutting techniques. They hypothesized that the method may have involved impressing simple shapes to create alphabets in “cuneiform” style in a matrix made of some soft material, perhaps sand. Casting the type would destroy the mould, and the matrix would need to be recreated to make each additional sort. This could explain the variations in the type, as well as the substructures observed in the printed images.\n\nThus, they feel that “the decisive factor for the birth of typography”, the use of reusable moulds for casting type, might have been a more progressive process than was previously thought. They suggest that the additional step of using the punch to create a mould that could be reused many times was not taken until twenty years later, in the 1470s. Others have not accepted some or all of their suggestions, and have interpreted the evidence in other ways, and the truth of the matter remains very uncertain.\n\nA 1568 history by Hadrianus Junius of Holland claims that the basic idea of the movable type came to Gutenberg from Laurens Janszoon Coster via Fust, who was apprenticed to Coster in the 1430s and may have brought some of his equipment from Haarlem to Mainz. While Coster appears to have experimented with moulds and castable metal type, there is no evidence that he had actually printed anything with this technology. He was an inventor and a goldsmith. However, there is one indirect supporter of the claim that Coster might be the inventor. The author of the Cologne Chronicle of 1499 quotes Ulrich Zell, the first printer of Cologne, that printing was performed in Mainz in 1450, but that some type of printing of lower quality had previously occurred in the Netherlands. However, the chronicle does not mention the name of Coster, while it actually credits Gutenberg as the \"first inventor of printing\" in the very same passage (fol. 312). The first securely dated book by Dutch printers is from 1471, and the Coster connection is today regarded as a mere legend.\n\nThe 19th century printer and typefounder Fournier Le Jeune suggested that Gutenberg might not have been using type cast with a reusable matrix, but possibly wooden types that were carved individually. A similar suggestion was made by Nash in 2004. This remains possible, albeit entirely unproven.\n\nIt has also been questioned whether Gutenberg used movable types at all. In 2004, Italian professor Bruno Fabbiani claimed that examination of the 42-line Bible revealed an overlapping of letters, suggesting that Gutenberg did not in fact use movable type (individual cast characters) but rather used whole plates made from a system somewhat like a modern typewriter, whereby the letters were stamped successively into the plate and then printed. However, most specialists regard the occasional overlapping of type as caused by paper movement over pieces of type of slightly unequal height.", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774?ts=0", + "headers": { + "Date": "Tue, 10 Sep 2019 14:02:31 GMT", + "Content-Type": "text/plain; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4315", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"d2bb4e67afce9cad20457cc0c72b8a41\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A6C:2B1F:1250936:165B0E7:5D77ACF7", + "content-length": "7465", + "connection": "keep-alive" + }, + "response": "---\ntitle: Humane Typography in the Digital Age\ndate: \"2017-08-19T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Typography\"\ntags:\n - \"Design\"\n - \"Typography\"\n - \"Web Development\"\ndescription: \"An Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\"\ncanonical: ''\n---\n\n- [The first transition](#the-first-transition)\n- [The digital age](#the-digital-age)\n- [Loss of humanity through transitions](#loss-of-humanity-through-transitions)\n- [Chasing perfection](#chasing-perfection)\n\nAn Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\n\nThe typography of this industrial age was no longer handcrafted. Mass production and profit became more important. Quantity mattered more than the quality. The books and printed works in general lost a part of its humanity. The typefaces were not produced by craftsmen anymore. It was the machines printing and tying the books together now. The craftsmen had to let go of their craft and became a cog in the process. An extension of the industrial machine.\n\nBut the victory of the industrialism didn’t mean that the craftsmen were completely extinct. The two worlds continued to coexist independently. Each recognising the good in the other — the power of industrialism and the humanity of craftsmanship. This was the second transition that would strip typography of a part of its humanity. We have to go 500 years back in time to meet the first one.\n\n## The first transition\n\nA similar conflict emerged after the invention of the first printing press in Europe. Johannes Gutenberg invented movable type and used it to produce different compositions. His workshop could print up to 240 impressions per hour. Until then, the books were being copied by hand. All the books were handwritten and decorated with hand drawn ornaments and figures. A process of copying a book was long but each book, even a copy, was a work of art.\n\nThe first printed books were, at first, perceived as inferior to the handwritten ones. They were smaller and cheaper to produce. Movable type provided the printers with flexibility that allowed them to print books in languages other than Latin. Gill describes the transition to industrialism as something that people needed and wanted. Something similar happened after the first printed books emerged. People wanted books in a language they understood and they wanted books they could take with them. They were hungry for knowledge and printed books satisfied this hunger.\n\n![42-line-bible.jpg](/media/42-line-bible.jpg)\n\n*The 42–Line Bible, printed by Gutenberg.*\n\nBut, through this transition, the book lost a large part of its humanity. The machine took over most of the process but craftsmanship was still a part of it. The typefaces were cut manually by the first punch cutters. The paper was made by hand. The illustrations and ornaments were still being hand drawn. These were the remains of the craftsmanship that went almost extinct in the times of Eric Gill.\n\n## The digital age\n\nThe first transition took away a large part of humanity from written communication. Industrialisation, the second transition described by Eric Gill, took away most of what was left. But it’s the third transition that stripped it naked. Typefaces are faceless these days. They’re just fonts on our computers. Hardly anyone knows their stories. Hardly anyone cares. Flicking through thousands of typefaces and finding the “right one” is a matter of minutes.\n\n> In the new computer age the proliferation of typefaces and type manipulations represents a new level of visual pollution threatening our culture. Out of thousands of typefaces, all we need are a few basic ones, and trash the rest.\n>\n— Massimo Vignelli\n\nTypography is not about typefaces. It’s not about what looks best, it’s about what feels right. What communicates the message best. Typography, in its essence, is about the message. “Typographical design should perform optically what the speaker creates through voice and gesture of his thoughts.”, as El Lissitzky, a famous Russian typographer, put it.\n\n## Loss of humanity through transitions\n\nEach transition took away a part of humanity from written language. Handwritten books being the most humane form and the digital typefaces being the least. Overuse of Helvetica is a good example. Messages are being told in a typeface just because it’s a safe option. It’s always there. Everyone knows it but yet, nobody knows it. Stop someone on the street and ask him what Helvetica is? Ask a designer the same question. Ask him where it came from, when, why and who designed it. Most of them will fail to answer these questions. Most of them used it in their precious projects but they still don’t spot it in the street.\n\n
\n\t
\n\t\t

Knowledge of the quality of a typeface is of the greatest importance for the functional, aesthetic and psychological effect.

\n\t\t
\n\t\t\t— Josef Mueller-Brockmann\n\t\t
\n\t
\n
\n\nTypefaces don’t look handmade these days. And that’s all right. They don’t have to. Industrialism took that away from them and we’re fine with it. We’ve traded that part of humanity for a process that produces more books that are easier to read. That can’t be bad. And it isn’t.\n\n> Humane typography will often be comparatively rough and even uncouth; but while a certain uncouthness does not seriously matter in humane works, uncouthness has no excuse whatever in the productions of the machine.\n>\n> — Eric Gill\n\nWe’ve come close to “perfection” in the last five centuries. The letters are crisp and without rough edges. We print our compositions with high–precision printers on a high quality, machine made paper.\n\n![type-through-time.jpg](/media/type-through-time.jpg)\n\n*Type through 5 centuries.*\n\nWe lost a part of ourselves because of this chase after perfection. We forgot about the craftsmanship along the way. And the worst part is that we don’t care. The transition to the digital age made that clear. We choose typefaces like clueless zombies. There’s no meaning in our work. Type sizes, leading, margins… It’s all just a few clicks or lines of code. The message isn’t important anymore. There’s no more “why” behind the “what”.\n\n## Chasing perfection\n\nHuman beings aren’t perfect. Perfection is something that will always elude us. There will always be a small part of humanity in everything we do. No matter how small that part, we should make sure that it transcends the limits of the medium. We have to think about the message first. What typeface should we use and why? Does the typeface match the message and what we want to communicate with it? What will be the leading and why? Will there be more typefaces in our design? On what ground will they be combined? What makes our design unique and why? This is the part of humanity that is left in typography. It might be the last part. Are we really going to give it up?\n\n*Originally published by [Matej Latin](http://matejlatin.co.uk/) on [Medium](https://medium.com/design-notes/humane-typography-in-the-digital-age-9bd5c16199bd?ref=webdesignernews.com#.lygo82z0x).*", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/1970-01-01-first-title.json?ts=300&ref=refs/meta/_netlify_cms", + "headers": { + "Date": "Tue, 10 Sep 2019 14:02:34 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "404 Not Found", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4314", + "X-RateLimit-Reset": "1568126651", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A70:1510F:125D648:164AD3F:5D77ACFA", + "content-length": "144", + "connection": "keep-alive" + }, + "response": "{\n \"message\": \"No commit found for the ref refs/meta/_netlify_cms\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/\"\n}\n", + "status": 404 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=master", + "headers": { + "Date": "Tue, 10 Sep 2019 14:02:35 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "404 Not Found", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4313", + "X-RateLimit-Reset": "1568126651", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A72:244E7:11CF8CB:15BCEFB:5D77ACFB", + "content-length": "116", + "connection": "keep-alive" + }, + "response": "{\n \"message\": \"Not Found\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/#get-contents\"\n}\n", + "status": 404 + }, + { + "body": "{\"content\":\"LS0tCnRlbXBsYXRlOiBwb3N0CnRpdGxlOiBmaXJzdCB0aXRsZQpkcmFmdDogdHJ1ZQpkYXRlOiAxOTcwLTAxLTAxVDAwOjAwOjAwLjAwMFoKZGVzY3JpcHRpb246IGZpcnN0IGRlc2NyaXB0aW9uCmNhdGVnb3J5OiBmaXJzdCBjYXRlZ29yeQp0YWdzOgogIC0gdGFnMQotLS0KZmlyc3QgYm9keQo=\",\"encoding\":\"base64\"}", + "method": "POST", + "url": "/repos/owner/repo/git/blobs?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:02:36 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "207", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4312", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"cb99eafe6ceb0316a6aa5e0717f30f21\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A74:B4DC:AD59F2:D2ECBF:5D77ACFB", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"a041245814892e3f73f63ca54333fda649b7fc0b\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b\"\n}\n", + "status": 201 + }, + { + "method": "GET", + "url": "/repos/owner/repo/branches/master?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:02:36 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4311", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"80c77d2f81ab07f51b5d129d0995389d\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A78:1510E:AE252E:D437FD:5D77ACFC", + "content-length": "5961", + "connection": "keep-alive" + }, + "response": "{\n \"name\": \"master\",\n \"commit\": {\n \"sha\": \"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NTc1Mjc2OjcyNjE3MmRlYWU5OWM4YTJjZWE0YzcxZTczNGEwMmE3OTNkNGQ5ZTU=\",\n \"commit\": {\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-08T09:08:14Z\"\n },\n \"committer\": {\n \"name\": \"GitHub\",\n \"email\": \"noreply@github.com\",\n \"date\": \"2019-09-08T09:08:14Z\"\n },\n \"message\": \"Merge pull request #10 from owner/chore/update_dependencies\\n\\nChore: update dependencies\",\n \"tree\": {\n \"sha\": \"c5b7f6d674ba193bb7b4a5fcf4933034e1b7f2b7\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/c5b7f6d674ba193bb7b4a5fcf4933034e1b7f2b7\"\n },\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"comment_count\": 0,\n \"verification\": {\n \"verified\": true,\n \"reason\": \"valid\",\n \"signature\": \"-----BEGIN PGP SIGNATURE-----\\n\\nwsBcBAABCAAQBQJddMT+CRBK7hj4Ov3rIwAAdHIIABWcobVYZFMuqSPezceRaKDr\\npXGqxvB3WLiIrvsQiBz2si9SvufXxLUdq72iaYTbXMCqIAAIBDNwHLltOKcbUF9J\\nKa8pD6cq7jpNyZfhI8xlapMwEZPu53as0tSvwdOnl/0iL+WYjUZUFQR+vrWEmllu\\nhIES9QxU2nk5zcS7t8sFRA+sJdll8GzzhoWYkpw3wgqpxCzJdf5HJS0tWyVCZM5U\\nCgSpSgTvz9bALnQxu7YVrfLGEvi8S7LaOEz5HQc+TV1hNR2dfl5hhiHhWQ1Rsx5w\\nUECV01vItNWhx2dyMn77hIu/G+bTH89WZDU+CmifsNkmvkq90fk4eNt8Hg1mxn4=\\n=6ayM\\n-----END PGP SIGNATURE-----\\n\",\n \"payload\": \"tree c5b7f6d674ba193bb7b4a5fcf4933034e1b7f2b7\\nparent 8ade583d7c02e7769dd685ca64c10851c09f51cf\\nparent 4940957ff42b034d8c47d64b383c34548a34fbb5\\nauthor owner 1567933694 +0300\\ncommitter GitHub 1567933694 +0300\\n\\nMerge pull request #10 from owner/chore/update_dependencies\\n\\nChore: update dependencies\"\n }\n },\n \"url\": \"https://api.github.com/repos/owner/repo/commits/726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"html_url\": \"https://github.com/owner/repo/commit/726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/commits/726172deae99c8a2cea4c71e734a02a793d4d9e5/comments\",\n \"author\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"committer\": {\n \"login\": \"web-flow\",\n \"id\": 19864447,\n \"node_id\": \"MDQ6VXNlcjE5ODY0NDQ3\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/web-flow\",\n \"html_url\": \"https://github.com/web-flow\",\n \"followers_url\": \"https://api.github.com/users/web-flow/followers\",\n \"following_url\": \"https://api.github.com/users/web-flow/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/web-flow/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/web-flow/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/web-flow/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/web-flow/orgs\",\n \"repos_url\": \"https://api.github.com/users/web-flow/repos\",\n \"events_url\": \"https://api.github.com/users/web-flow/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/web-flow/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"parents\": [\n {\n \"sha\": \"8ade583d7c02e7769dd685ca64c10851c09f51cf\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/8ade583d7c02e7769dd685ca64c10851c09f51cf\",\n \"html_url\": \"https://github.com/owner/repo/commit/8ade583d7c02e7769dd685ca64c10851c09f51cf\"\n },\n {\n \"sha\": \"4940957ff42b034d8c47d64b383c34548a34fbb5\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/4940957ff42b034d8c47d64b383c34548a34fbb5\",\n \"html_url\": \"https://github.com/owner/repo/commit/4940957ff42b034d8c47d64b383c34548a34fbb5\"\n }\n ]\n },\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/branches/master\",\n \"html\": \"https://github.com/owner/repo/tree/master\"\n },\n \"protected\": false,\n \"protection\": {\n \"enabled\": false,\n \"required_status_checks\": {\n \"enforcement_level\": \"off\",\n \"contexts\": [\n\n ]\n }\n },\n \"protection_url\": \"https://api.github.com/repos/owner/repo/branches/master/protection\"\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/trees/726172deae99c8a2cea4c71e734a02a793d4d9e5?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:02:37 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4310", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"7a035f3359b977cd956a086f27ff138d\"", + "Last-Modified": "Tue, 10 Sep 2019 14:02:10 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A7A:2B0A:6A5D4:82187:5D77ACFD", + "content-length": "11769", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"tree\": [\n {\n \"path\": \".circleci\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"e5e9af3301cac61f120b8e4d40b1733c7a45685a\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/e5e9af3301cac61f120b8e4d40b1733c7a45685a\"\n },\n {\n \"path\": \".eslintignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"80b4531b026d19f8fa589efd122e76199d23f967\",\n \"size\": 39,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/80b4531b026d19f8fa589efd122e76199d23f967\"\n },\n {\n \"path\": \".eslintrc.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"370684994aaed5b858da3a006f48cfa57e88fd27\",\n \"size\": 414,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/370684994aaed5b858da3a006f48cfa57e88fd27\"\n },\n {\n \"path\": \".flowconfig\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14aa2ac4cc0e15223ad98630a6f1325fc81f8043\",\n \"size\": 283,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14aa2ac4cc0e15223ad98630a6f1325fc81f8043\"\n },\n {\n \"path\": \".gitattributes\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"10a369ddf4f603337cabc6f21646508323941ce1\",\n \"size\": 135,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/10a369ddf4f603337cabc6f21646508323941ce1\"\n },\n {\n \"path\": \".github\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4ebeece548b52b20af59622354530a6d33b50b43\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4ebeece548b52b20af59622354530a6d33b50b43\"\n },\n {\n \"path\": \".gitignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"c071ba35b0e49899bab6d610a68eef667dbbf157\",\n \"size\": 169,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/c071ba35b0e49899bab6d610a68eef667dbbf157\"\n },\n {\n \"path\": \".prettierignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"393f050e123d998cf8c8b362ff95cc8ac4d250e5\",\n \"size\": 45,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/393f050e123d998cf8c8b362ff95cc8ac4d250e5\"\n },\n {\n \"path\": \".prettierrc\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e52ad05bb13b084d7949dd76e1b2517455162150\",\n \"size\": 223,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/e52ad05bb13b084d7949dd76e1b2517455162150\"\n },\n {\n \"path\": \".stylelintrc.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"4b4c9698d10d756f5faa025659b86375428ed0a7\",\n \"size\": 718,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/4b4c9698d10d756f5faa025659b86375428ed0a7\"\n },\n {\n \"path\": \".vscode\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"286e97ec0113ea8242b41ac222e2c3e8077e6f1e\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/286e97ec0113ea8242b41ac222e2c3e8077e6f1e\"\n },\n {\n \"path\": \"CHANGELOG.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"070a5d4f0eacd2dc0be81ae8996f8982de43046e\",\n \"size\": 2113,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/070a5d4f0eacd2dc0be81ae8996f8982de43046e\"\n },\n {\n \"path\": \"CODE_OF_CONDUCT.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"92bc7565ff0ee145a0041b5179a820f14f39ab22\",\n \"size\": 3355,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/92bc7565ff0ee145a0041b5179a820f14f39ab22\"\n },\n {\n \"path\": \"CONTRIBUTING.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"8552aa241254a61258e1ff9666ab36f32fb1e3b9\",\n \"size\": 3548,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/8552aa241254a61258e1ff9666ab36f32fb1e3b9\"\n },\n {\n \"path\": \"LICENSE\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"42d85938357b49977c126ca03b199129082d4fb8\",\n \"size\": 1091,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/42d85938357b49977c126ca03b199129082d4fb8\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"19df50a78654c8d757ca7f38447aa3d09c7abcce\",\n \"size\": 3698,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/19df50a78654c8d757ca7f38447aa3d09c7abcce\"\n },\n {\n \"path\": \"backend\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\"\n },\n {\n \"path\": \"config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"58afd573bbb69fcca000efd0f5d90b93c93a98dd\",\n \"size\": 853,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/58afd573bbb69fcca000efd0f5d90b93c93a98dd\"\n },\n {\n \"path\": \"content\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/0294ef106c58743907a5c855da1eb0f87b0b6dfc\"\n },\n {\n \"path\": \"flow-typed\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"86c32fd6c3118be5e0dbbb231a834447357236c6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/86c32fd6c3118be5e0dbbb231a834447357236c6\"\n },\n {\n \"path\": \"flow\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"0af45ad00d155c8d8c7407d913ff85278244c9ce\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/0af45ad00d155c8d8c7407d913ff85278244c9ce\"\n },\n {\n \"path\": \"gatsby-browser.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9bd2c9dce175f04980e91cd9dc295a299e3cdb80\",\n \"size\": 90,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9bd2c9dce175f04980e91cd9dc295a299e3cdb80\"\n },\n {\n \"path\": \"gatsby-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"353a109dad62e3f25bf9f5e6a2167f21a6c8b459\",\n \"size\": 7228,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/353a109dad62e3f25bf9f5e6a2167f21a6c8b459\"\n },\n {\n \"path\": \"gatsby-node.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14a207883c2093d2cc071bc5a464e165bcc1fead\",\n \"size\": 409,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14a207883c2093d2cc071bc5a464e165bcc1fead\"\n },\n {\n \"path\": \"gatsby\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4f23c06cd1740bf78304d2c0b29bf6bfdf427981\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4f23c06cd1740bf78304d2c0b29bf6bfdf427981\"\n },\n {\n \"path\": \"jest\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\"\n },\n {\n \"path\": \"netlify.toml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"599b99cc5700404fde316a7ede829776f23e7d45\",\n \"size\": 137,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/599b99cc5700404fde316a7ede829776f23e7d45\"\n },\n {\n \"path\": \"package.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9d777616438b90a18f1a4ebfd5f114b4c06c6f17\",\n \"size\": 6855,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9d777616438b90a18f1a4ebfd5f114b4c06c6f17\"\n },\n {\n \"path\": \"postcss-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d216501e9b351a72e00ba0b7459a6500e27e7da2\",\n \"size\": 703,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d216501e9b351a72e00ba0b7459a6500e27e7da2\"\n },\n {\n \"path\": \"renovate.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"dcc309398785698b8870545c32051a3d72dd8271\",\n \"size\": 460,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/dcc309398785698b8870545c32051a3d72dd8271\"\n },\n {\n \"path\": \"serverless-scripts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ee3701f2fbfc7196ba340f6481d1387d20527898\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ee3701f2fbfc7196ba340f6481d1387d20527898\"\n },\n {\n \"path\": \"serverless-single-page-app-plugin\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"08763fcfba643a06a452398517019bea4a5850ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/08763fcfba643a06a452398517019bea4a5850ba\"\n },\n {\n \"path\": \"serverless.yml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"20b22c5fad229f35d029bf6614d333d82fe8a987\",\n \"size\": 7803,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/20b22c5fad229f35d029bf6614d333d82fe8a987\"\n },\n {\n \"path\": \"src\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"8cdb35a88232c0f32f12f130c92c7cc55f97f471\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/8cdb35a88232c0f32f12f130c92c7cc55f97f471\"\n },\n {\n \"path\": \"static\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"53c6380a600a030d3722bff7ecde36f749fb6964\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/53c6380a600a030d3722bff7ecde36f749fb6964\"\n },\n {\n \"path\": \"utils\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"a592549c9f74db40b51efefcda2fd76810405f27\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/a592549c9f74db40b51efefcda2fd76810405f27\"\n },\n {\n \"path\": \"yarn.lock\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"475c9c1924ca752a0686303e2fdeb7b13ad75f57\",\n \"size\": 793903,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/475c9c1924ca752a0686303e2fdeb7b13ad75f57\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/trees/0294ef106c58743907a5c855da1eb0f87b0b6dfc?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:02:38 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4309", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"7d6ed23edb93fdd710127003bd99d3e3\"", + "Last-Modified": "Tue, 10 Sep 2019 14:02:10 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A7C:2B24:180373D:1D31F2B:5D77ACFE", + "content-length": "831", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\n \"tree\": [\n {\n \"path\": \"pages\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\"\n },\n {\n \"path\": \"posts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"34892575e216c06e757093f036bd8e057c78a52f\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/34892575e216c06e757093f036bd8e057c78a52f\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/trees/34892575e216c06e757093f036bd8e057c78a52f?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:02:39 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4308", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"9485ec7bb0224060380d07454fc25c0a\"", + "Last-Modified": "Tue, 10 Sep 2019 14:02:10 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A7E:9D20:117B175:15612B1:5D77ACFE", + "content-length": "2030", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"34892575e216c06e757093f036bd8e057c78a52f\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/34892575e216c06e757093f036bd8e057c78a52f\",\n \"tree\": [\n {\n \"path\": \"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"size\": 1707,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\"\n },\n {\n \"path\": \"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"size\": 2565,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\"\n },\n {\n \"path\": \"2016-02-02---A-Brief-History-of-Typography.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"0eea554365f002d0f1572af9a58522d335a794d5\",\n \"size\": 2786,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\"\n },\n {\n \"path\": \"2017-18-08---The-Birth-of-Movable-Type.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"44f78c474d04273185a95821426f75affc9b0044\",\n \"size\": 16071,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\"\n },\n {\n \"path\": \"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"size\": 7465,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 200 + }, + { + "body": "{\"base_tree\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"tree\":[{\"path\":\"1970-01-01-first-title.md\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"a041245814892e3f73f63ca54333fda649b7fc0b\"}]}", + "method": "POST", + "url": "/repos/owner/repo/git/trees?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:02:39 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "2362", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4307", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"ec28ace732cd92ce67ac2d4bb75b73a8\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A80:B4DA:5394E3:65F6AF:5D77ACFF", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a041245814892e3f73f63ca54333fda649b7fc0b\",\n \"size\": 167,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b\"\n },\n {\n \"path\": \"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"size\": 1707,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\"\n },\n {\n \"path\": \"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"size\": 2565,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\"\n },\n {\n \"path\": \"2016-02-02---A-Brief-History-of-Typography.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"0eea554365f002d0f1572af9a58522d335a794d5\",\n \"size\": 2786,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\"\n },\n {\n \"path\": \"2017-18-08---The-Birth-of-Movable-Type.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"44f78c474d04273185a95821426f75affc9b0044\",\n \"size\": 16071,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\"\n },\n {\n \"path\": \"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"size\": 7465,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"base_tree\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\"tree\":[{\"path\":\"posts\",\"mode\":\"040000\",\"type\":\"tree\",\"sha\":\"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\"parentSha\":\"34892575e216c06e757093f036bd8e057c78a52f\"}]}", + "method": "POST", + "url": "/repos/owner/repo/git/trees?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:02:40 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "831", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4306", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"8a08d49c75e6316b7eedd97658f5dd3d\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A82:1510D:47DD71:5824E3:5D77AD00", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"tree\": [\n {\n \"path\": \"pages\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\"\n },\n {\n \"path\": \"posts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"base_tree\":\"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\"tree\":[{\"path\":\"content\",\"mode\":\"040000\",\"type\":\"tree\",\"sha\":\"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\"parentSha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\"}]}", + "method": "POST", + "url": "/repos/owner/repo/git/trees?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:02:41 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "11769", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4305", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"fb9e1158542ab7bb09a23b22e7f7dbd8\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/trees/daee8d5d15d144e8779955166a2afeccde2770e1", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A84:3ED77:AD476D:D21657:5D77AD00", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"daee8d5d15d144e8779955166a2afeccde2770e1\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/daee8d5d15d144e8779955166a2afeccde2770e1\",\n \"tree\": [\n {\n \"path\": \".circleci\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"e5e9af3301cac61f120b8e4d40b1733c7a45685a\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/e5e9af3301cac61f120b8e4d40b1733c7a45685a\"\n },\n {\n \"path\": \".eslintignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"80b4531b026d19f8fa589efd122e76199d23f967\",\n \"size\": 39,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/80b4531b026d19f8fa589efd122e76199d23f967\"\n },\n {\n \"path\": \".eslintrc.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"370684994aaed5b858da3a006f48cfa57e88fd27\",\n \"size\": 414,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/370684994aaed5b858da3a006f48cfa57e88fd27\"\n },\n {\n \"path\": \".flowconfig\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14aa2ac4cc0e15223ad98630a6f1325fc81f8043\",\n \"size\": 283,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14aa2ac4cc0e15223ad98630a6f1325fc81f8043\"\n },\n {\n \"path\": \".gitattributes\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"10a369ddf4f603337cabc6f21646508323941ce1\",\n \"size\": 135,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/10a369ddf4f603337cabc6f21646508323941ce1\"\n },\n {\n \"path\": \".github\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4ebeece548b52b20af59622354530a6d33b50b43\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4ebeece548b52b20af59622354530a6d33b50b43\"\n },\n {\n \"path\": \".gitignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"c071ba35b0e49899bab6d610a68eef667dbbf157\",\n \"size\": 169,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/c071ba35b0e49899bab6d610a68eef667dbbf157\"\n },\n {\n \"path\": \".prettierignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"393f050e123d998cf8c8b362ff95cc8ac4d250e5\",\n \"size\": 45,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/393f050e123d998cf8c8b362ff95cc8ac4d250e5\"\n },\n {\n \"path\": \".prettierrc\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e52ad05bb13b084d7949dd76e1b2517455162150\",\n \"size\": 223,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/e52ad05bb13b084d7949dd76e1b2517455162150\"\n },\n {\n \"path\": \".stylelintrc.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"4b4c9698d10d756f5faa025659b86375428ed0a7\",\n \"size\": 718,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/4b4c9698d10d756f5faa025659b86375428ed0a7\"\n },\n {\n \"path\": \".vscode\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"286e97ec0113ea8242b41ac222e2c3e8077e6f1e\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/286e97ec0113ea8242b41ac222e2c3e8077e6f1e\"\n },\n {\n \"path\": \"CHANGELOG.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"070a5d4f0eacd2dc0be81ae8996f8982de43046e\",\n \"size\": 2113,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/070a5d4f0eacd2dc0be81ae8996f8982de43046e\"\n },\n {\n \"path\": \"CODE_OF_CONDUCT.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"92bc7565ff0ee145a0041b5179a820f14f39ab22\",\n \"size\": 3355,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/92bc7565ff0ee145a0041b5179a820f14f39ab22\"\n },\n {\n \"path\": \"CONTRIBUTING.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"8552aa241254a61258e1ff9666ab36f32fb1e3b9\",\n \"size\": 3548,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/8552aa241254a61258e1ff9666ab36f32fb1e3b9\"\n },\n {\n \"path\": \"LICENSE\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"42d85938357b49977c126ca03b199129082d4fb8\",\n \"size\": 1091,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/42d85938357b49977c126ca03b199129082d4fb8\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"19df50a78654c8d757ca7f38447aa3d09c7abcce\",\n \"size\": 3698,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/19df50a78654c8d757ca7f38447aa3d09c7abcce\"\n },\n {\n \"path\": \"backend\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\"\n },\n {\n \"path\": \"config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"58afd573bbb69fcca000efd0f5d90b93c93a98dd\",\n \"size\": 853,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/58afd573bbb69fcca000efd0f5d90b93c93a98dd\"\n },\n {\n \"path\": \"content\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639\"\n },\n {\n \"path\": \"flow-typed\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"86c32fd6c3118be5e0dbbb231a834447357236c6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/86c32fd6c3118be5e0dbbb231a834447357236c6\"\n },\n {\n \"path\": \"flow\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"0af45ad00d155c8d8c7407d913ff85278244c9ce\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/0af45ad00d155c8d8c7407d913ff85278244c9ce\"\n },\n {\n \"path\": \"gatsby-browser.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9bd2c9dce175f04980e91cd9dc295a299e3cdb80\",\n \"size\": 90,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9bd2c9dce175f04980e91cd9dc295a299e3cdb80\"\n },\n {\n \"path\": \"gatsby-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"353a109dad62e3f25bf9f5e6a2167f21a6c8b459\",\n \"size\": 7228,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/353a109dad62e3f25bf9f5e6a2167f21a6c8b459\"\n },\n {\n \"path\": \"gatsby-node.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14a207883c2093d2cc071bc5a464e165bcc1fead\",\n \"size\": 409,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14a207883c2093d2cc071bc5a464e165bcc1fead\"\n },\n {\n \"path\": \"gatsby\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4f23c06cd1740bf78304d2c0b29bf6bfdf427981\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4f23c06cd1740bf78304d2c0b29bf6bfdf427981\"\n },\n {\n \"path\": \"jest\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\"\n },\n {\n \"path\": \"netlify.toml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"599b99cc5700404fde316a7ede829776f23e7d45\",\n \"size\": 137,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/599b99cc5700404fde316a7ede829776f23e7d45\"\n },\n {\n \"path\": \"package.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9d777616438b90a18f1a4ebfd5f114b4c06c6f17\",\n \"size\": 6855,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9d777616438b90a18f1a4ebfd5f114b4c06c6f17\"\n },\n {\n \"path\": \"postcss-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d216501e9b351a72e00ba0b7459a6500e27e7da2\",\n \"size\": 703,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d216501e9b351a72e00ba0b7459a6500e27e7da2\"\n },\n {\n \"path\": \"renovate.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"dcc309398785698b8870545c32051a3d72dd8271\",\n \"size\": 460,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/dcc309398785698b8870545c32051a3d72dd8271\"\n },\n {\n \"path\": \"serverless-scripts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ee3701f2fbfc7196ba340f6481d1387d20527898\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ee3701f2fbfc7196ba340f6481d1387d20527898\"\n },\n {\n \"path\": \"serverless-single-page-app-plugin\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"08763fcfba643a06a452398517019bea4a5850ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/08763fcfba643a06a452398517019bea4a5850ba\"\n },\n {\n \"path\": \"serverless.yml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"20b22c5fad229f35d029bf6614d333d82fe8a987\",\n \"size\": 7803,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/20b22c5fad229f35d029bf6614d333d82fe8a987\"\n },\n {\n \"path\": \"src\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"8cdb35a88232c0f32f12f130c92c7cc55f97f471\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/8cdb35a88232c0f32f12f130c92c7cc55f97f471\"\n },\n {\n \"path\": \"static\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"53c6380a600a030d3722bff7ecde36f749fb6964\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/53c6380a600a030d3722bff7ecde36f749fb6964\"\n },\n {\n \"path\": \"utils\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"a592549c9f74db40b51efefcda2fd76810405f27\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/a592549c9f74db40b51efefcda2fd76810405f27\"\n },\n {\n \"path\": \"yarn.lock\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"475c9c1924ca752a0686303e2fdeb7b13ad75f57\",\n \"size\": 793903,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/475c9c1924ca752a0686303e2fdeb7b13ad75f57\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"message\":\"Create Post “1970-01-01-first-title”\",\"tree\":\"daee8d5d15d144e8779955166a2afeccde2770e1\",\"parents\":[\"726172deae99c8a2cea4c71e734a02a793d4d9e5\"]}", + "method": "POST", + "url": "/repos/owner/repo/git/commits?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:02:42 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "1504", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4304", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"159074408df578ce72b3bc1478374c2a\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/commits/18133e07aaa33f5ea6de572d751655e103b9ce5a", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A86:9D1F:A4A121:C8E800:5D77AD01", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"18133e07aaa33f5ea6de572d751655e103b9ce5a\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NTc1Mjc2OjE4MTMzZTA3YWFhMzNmNWVhNmRlNTcyZDc1MTY1NWUxMDNiOWNlNWE=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/18133e07aaa33f5ea6de572d751655e103b9ce5a\",\n \"html_url\": \"https://github.com/owner/repo/commit/18133e07aaa33f5ea6de572d751655e103b9ce5a\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T14:02:42Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T14:02:42Z\"\n },\n \"tree\": {\n \"sha\": \"daee8d5d15d144e8779955166a2afeccde2770e1\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/daee8d5d15d144e8779955166a2afeccde2770e1\"\n },\n \"message\": \"Create Post “1970-01-01-first-title”\",\n \"parents\": [\n {\n \"sha\": \"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"html_url\": \"https://github.com/owner/repo/commit/726172deae99c8a2cea4c71e734a02a793d4d9e5\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "status": 201 + }, + { + "body": "{\"ref\":\"refs/heads/cms/1970-01-01-first-title\",\"sha\":\"18133e07aaa33f5ea6de572d751655e103b9ce5a\"}", + "method": "POST", + "url": "/repos/owner/repo/git/refs?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:02:43 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "518", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4303", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"52f8fe95a82417df3f7ebe53df0e6e0a\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "Location": "https://api.github.com/repos/owner/repo/git/refs/heads/cms/1970-01-01-first-title", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A88:244EB:18424C7:1D78AB5:5D77AD02", + "connection": "keep-alive" + }, + "response": "{\n \"ref\": \"refs/heads/cms/1970-01-01-first-title\",\n \"node_id\": \"MDM6UmVmMjA3NTc1Mjc2OmNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxl\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/heads/cms/1970-01-01-first-title\",\n \"object\": {\n \"sha\": \"18133e07aaa33f5ea6de572d751655e103b9ce5a\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/18133e07aaa33f5ea6de572d751655e103b9ce5a\"\n }\n}\n", + "status": 201 + }, + { + "body": "{\"title\":\"Create Post “1970-01-01-first-title”\",\"body\":\"Automatically generated by Netlify CMS\",\"head\":\"cms/1970-01-01-first-title\",\"base\":\"master\"}", + "method": "POST", + "url": "/repos/owner/repo/pulls?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:02:44 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "21715", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4302", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"b125fcac77297a0868b03d5a13bc1a7a\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/pulls/1", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A8A:1510F:125E248:164BC5B:5D77AD03", + "connection": "keep-alive" + }, + "response": "{\n \"url\": \"https://api.github.com/repos/owner/repo/pulls/1\",\n \"id\": 316011206,\n \"node_id\": \"MDExOlB1bGxSZXF1ZXN0MzE2MDExMjA2\",\n \"html_url\": \"https://github.com/owner/repo/pull/1\",\n \"diff_url\": \"https://github.com/owner/repo/pull/1.diff\",\n \"patch_url\": \"https://github.com/owner/repo/pull/1.patch\",\n \"issue_url\": \"https://api.github.com/repos/owner/repo/issues/1\",\n \"number\": 1,\n \"state\": \"open\",\n \"locked\": false,\n \"title\": \"Create Post “1970-01-01-first-title”\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Automatically generated by Netlify CMS\",\n \"created_at\": \"2019-09-10T14:02:44Z\",\n \"updated_at\": \"2019-09-10T14:02:44Z\",\n \"closed_at\": null,\n \"merged_at\": null,\n \"merge_commit_sha\": null,\n \"assignee\": null,\n \"assignees\": [\n\n ],\n \"requested_reviewers\": [\n\n ],\n \"requested_teams\": [\n\n ],\n \"labels\": [\n\n ],\n \"milestone\": null,\n \"commits_url\": \"https://api.github.com/repos/owner/repo/pulls/1/commits\",\n \"review_comments_url\": \"https://api.github.com/repos/owner/repo/pulls/1/comments\",\n \"review_comment_url\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/issues/1/comments\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/18133e07aaa33f5ea6de572d751655e103b9ce5a\",\n \"head\": {\n \"label\": \"owner:cms/1970-01-01-first-title\",\n \"ref\": \"cms/1970-01-01-first-title\",\n \"sha\": \"18133e07aaa33f5ea6de572d751655e103b9ce5a\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 207575276,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NzUyNzY=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-10T14:01:42Z\",\n \"updated_at\": \"2019-09-10T14:02:10Z\",\n \"pushed_at\": \"2019-09-10T14:02:43Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 1,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 1,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"base\": {\n \"label\": \"owner:master\",\n \"ref\": \"master\",\n \"sha\": \"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 207575276,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NzUyNzY=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-10T14:01:42Z\",\n \"updated_at\": \"2019-09-10T14:02:10Z\",\n \"pushed_at\": \"2019-09-10T14:02:43Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 1,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 1,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/1\"\n },\n \"html\": {\n \"href\": \"https://github.com/owner/repo/pull/1\"\n },\n \"issue\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/1\"\n },\n \"comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/1/comments\"\n },\n \"review_comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/1/comments\"\n },\n \"review_comment\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\"\n },\n \"commits\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/1/commits\"\n },\n \"statuses\": {\n \"href\": \"https://api.github.com/repos/owner/repo/statuses/18133e07aaa33f5ea6de572d751655e103b9ce5a\"\n }\n },\n \"author_association\": \"OWNER\",\n \"merged\": false,\n \"mergeable\": null,\n \"rebaseable\": null,\n \"mergeable_state\": \"unknown\",\n \"merged_by\": null,\n \"comments\": 0,\n \"review_comments\": 0,\n \"maintainer_can_modify\": false,\n \"commits\": 1,\n \"additions\": 11,\n \"deletions\": 0,\n \"changed_files\": 1\n}\n", + "status": 201 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:02:45 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "404 Not Found", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4301", + "X-RateLimit-Reset": "1568126651", + "X-Poll-Interval": "300", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A8F:3ED7B:128FE6B:168D0D8:5D77AD04", + "content-length": "113", + "connection": "keep-alive" + }, + "response": "{\n \"message\": \"Not Found\",\n \"documentation_url\": \"https://developer.github.com/v3/git/refs/#get-a-reference\"\n}\n", + "status": 404 + }, + { + "body": "{\"content\":\"IyBOZXRsaWZ5IENNUwoKVGhpcyB0cmVlIGlzIHVzZWQgYnkgdGhlIE5ldGxpZnkgQ01TIHRvIHN0b3JlIG1ldGFkYXRhIGluZm9ybWF0aW9uIGZvciBzcGVjaWZpYyBmaWxlcyBhbmQgYnJhbmNoZXMu\",\"encoding\":\"base64\"}", + "method": "POST", + "url": "/repos/owner/repo/git/blobs?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:02:46 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "207", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4300", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"4d970257b38ac0bddbac9707edbebe4a\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B24:3ED77:AD4BE0:D21B95:5D77AD05", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n}\n", + "status": 201 + }, + { + "body": "{\"tree\":[{\"path\":\"README.md\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"98787d1bd948850444433e91a43091a76c4eb455\"}]}", + "method": "POST", + "url": "/repos/owner/repo/git/trees?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:02:46 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "561", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4299", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"ba4ffaea5e20fbefdc461c820fe5b217\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/trees/77d01c8bf1e79f9fb17c60fe405ce741bb4eb0a6", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B26:1510F:125E60D:164C100:5D77AD06", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"77d01c8bf1e79f9fb17c60fe405ce741bb4eb0a6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/77d01c8bf1e79f9fb17c60fe405ce741bb4eb0a6\",\n \"tree\": [\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"message\":\"First Commit\",\"tree\":\"77d01c8bf1e79f9fb17c60fe405ce741bb4eb0a6\",\"parents\":[]}", + "method": "POST", + "url": "/repos/owner/repo/git/commits?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:02:47 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "1105", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4298", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"ccbc64e51c73fbc36f1b17941a997bb2\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/commits/456081778a9cd055088503fe155584262c71e754", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B28:2B24:18046C0:1D3320C:5D77AD06", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"456081778a9cd055088503fe155584262c71e754\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NTc1Mjc2OjQ1NjA4MTc3OGE5Y2QwNTUwODg1MDNmZTE1NTU4NDI2MmM3MWU3NTQ=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/456081778a9cd055088503fe155584262c71e754\",\n \"html_url\": \"https://github.com/owner/repo/commit/456081778a9cd055088503fe155584262c71e754\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T14:02:47Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T14:02:47Z\"\n },\n \"tree\": {\n \"sha\": \"77d01c8bf1e79f9fb17c60fe405ce741bb4eb0a6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/77d01c8bf1e79f9fb17c60fe405ce741bb4eb0a6\"\n },\n \"message\": \"First Commit\",\n \"parents\": [\n\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "status": 201 + }, + { + "body": "{\"ref\":\"refs/meta/_netlify_cms\",\"sha\":\"456081778a9cd055088503fe155584262c71e754\"}", + "method": "POST", + "url": "/repos/owner/repo/git/refs?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:02:48 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "484", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4297", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"493c2ddb00443087c5976d9cb39cd765\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "Location": "https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B2A:2B1F:1251D9F:165CAAE:5D77AD07", + "connection": "keep-alive" + }, + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NTc1Mjc2OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"456081778a9cd055088503fe155584262c71e754\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/456081778a9cd055088503fe155584262c71e754\"\n }\n}\n", + "status": 201 + }, + { + "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjEsImhlYWQiOiIxODEzM2UwN2FhYTMzZjVlYTZkZTU3MmQ3NTE2NTVlMTAzYjljZTVhIn0sInVzZXIiOiJvd25lciIsInN0YXR1cyI6ImRyYWZ0IiwiYnJhbmNoIjoiY21zLzE5NzAtMDEtMDEtZmlyc3QtdGl0bGUiLCJjb2xsZWN0aW9uIjoicG9zdHMiLCJjb21taXRNZXNzYWdlIjoiQ3JlYXRlIFBvc3Qg4oCcMTk3MC0wMS0wMS1maXJzdC10aXRsZeKAnSIsInRpdGxlIjoiZmlyc3QgdGl0bGUiLCJkZXNjcmlwdGlvbiI6ImZpcnN0IGRlc2NyaXB0aW9uIiwib2JqZWN0cyI6eyJlbnRyeSI6eyJwYXRoIjoiY29udGVudC9wb3N0cy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxlLm1kIiwic2hhIjoiYTA0MTI0NTgxNDg5MmUzZjczZjYzY2E1NDMzM2ZkYTY0OWI3ZmMwYiJ9LCJmaWxlcyI6W119LCJ0aW1lU3RhbXAiOiIxOTcwLTAxLTAxVDAwOjAwOjAwLjMwMFoifQ==\",\"encoding\":\"base64\"}", + "method": "POST", + "url": "/repos/owner/repo/git/blobs?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:02:49 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "207", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4296", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"1114277cae02910aa7e7dbe9ef093460\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/blobs/8786a8f396427d4acbff359e9b8d70e8997e7e0f", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B2C:9D1F:A4A71E:C8EF61:5D77AD08", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"8786a8f396427d4acbff359e9b8d70e8997e7e0f\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/8786a8f396427d4acbff359e9b8d70e8997e7e0f\"\n}\n", + "status": 201 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/trees/456081778a9cd055088503fe155584262c71e754?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:02:50 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4295", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"a5dcf3d8f77bfbb1fd20bae52385cf56\"", + "Last-Modified": "Tue, 10 Sep 2019 14:02:10 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B2E:15110:18BC048:1E0E502:5D77AD09", + "content-length": "561", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"456081778a9cd055088503fe155584262c71e754\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/456081778a9cd055088503fe155584262c71e754\",\n \"tree\": [\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 200 + }, + { + "body": "{\"base_tree\":\"456081778a9cd055088503fe155584262c71e754\",\"tree\":[{\"path\":\"1970-01-01-first-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"8786a8f396427d4acbff359e9b8d70e8997e7e0f\"}]}", + "method": "POST", + "url": "/repos/owner/repo/git/trees?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:02:50 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "895", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4294", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"c9bd0e593f9ffccb5c9ec433319346dd\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/trees/e5ecc7b3337daef17cb2736c8fe082abb16306b3", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B30:9D20:117BEBC:1562363:5D77AD0A", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"e5ecc7b3337daef17cb2736c8fe082abb16306b3\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/e5ecc7b3337daef17cb2736c8fe082abb16306b3\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"8786a8f396427d4acbff359e9b8d70e8997e7e0f\",\n \"size\": 462,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/8786a8f396427d4acbff359e9b8d70e8997e7e0f\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"message\":\"Updating “1970-01-01-first-title” metadata\",\"tree\":\"e5ecc7b3337daef17cb2736c8fe082abb16306b3\",\"parents\":[\"456081778a9cd055088503fe155584262c71e754\"]}", + "method": "POST", + "url": "/repos/owner/repo/git/commits?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:02:51 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "1510", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4293", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"fe5aabf2edc50639614ba539494c4af9\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/commits/913f86327dbd4d4e8decf74015ab0085dfb37803", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B32:2B19:AB232A:D054C5:5D77AD0B", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"913f86327dbd4d4e8decf74015ab0085dfb37803\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NTc1Mjc2OjkxM2Y4NjMyN2RiZDRkNGU4ZGVjZjc0MDE1YWIwMDg1ZGZiMzc4MDM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/913f86327dbd4d4e8decf74015ab0085dfb37803\",\n \"html_url\": \"https://github.com/owner/repo/commit/913f86327dbd4d4e8decf74015ab0085dfb37803\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T14:02:51Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T14:02:51Z\"\n },\n \"tree\": {\n \"sha\": \"e5ecc7b3337daef17cb2736c8fe082abb16306b3\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/e5ecc7b3337daef17cb2736c8fe082abb16306b3\"\n },\n \"message\": \"Updating “1970-01-01-first-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"456081778a9cd055088503fe155584262c71e754\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/456081778a9cd055088503fe155584262c71e754\",\n \"html_url\": \"https://github.com/owner/repo/commit/456081778a9cd055088503fe155584262c71e754\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "status": 201 + }, + { + "body": "{\"sha\":\"913f86327dbd4d4e8decf74015ab0085dfb37803\",\"force\":false}", + "method": "PATCH", + "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:02:53 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4292", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"663d408185bd74cc1a8e77efebaa57e3\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B36:15110:18BC470:1E0EA47:5D77AD0C", + "content-length": "484", + "connection": "keep-alive" + }, + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NTc1Mjc2OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"913f86327dbd4d4e8decf74015ab0085dfb37803\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/913f86327dbd4d4e8decf74015ab0085dfb37803\"\n }\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=master", + "headers": { + "Date": "Tue, 10 Sep 2019 14:02:54 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "404 Not Found", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4291", + "X-RateLimit-Reset": "1568126651", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B38:244EB:184380B:1D7A259:5D77AD0D", + "content-length": "116", + "connection": "keep-alive" + }, + "response": "{\n \"message\": \"Not Found\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/#get-contents\"\n}\n", + "status": 404 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=cms/1970-01-01-first-title", + "headers": { + "Date": "Tue, 10 Sep 2019 14:02:54 GMT", + "Content-Type": "application/vnd.github.VERSION.raw; charset=utf-8", + "Content-Length": "167", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4290", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"a041245814892e3f73f63ca54333fda649b7fc0b\"", + "Last-Modified": "Tue, 10 Sep 2019 14:02:42 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B3A:244DF:1AC1E2:209793:5D77AD0D", + "connection": "keep-alive" + }, + "response": "---\ntemplate: post\ntitle: first title\ndraft: true\ndate: 1970-01-01T00:00:00.000Z\ndescription: first description\ncategory: first category\ntags:\n - tag1\n---\nfirst body\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/commits/18133e07aaa33f5ea6de572d751655e103b9ce5a/status?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:02:55 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4289", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"bb56e37c03183c28887a97f8e997c66c\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo, repo:status", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B42:2B0F:1A50C2:203CCC:5D77AD0E", + "content-length": "6574", + "connection": "keep-alive" + }, + "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"18133e07aaa33f5ea6de572d751655e103b9ce5a\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 207575276,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NzUyNzY=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/18133e07aaa33f5ea6de572d751655e103b9ce5a\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/18133e07aaa33f5ea6de572d751655e103b9ce5a/status\"\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/commits/18133e07aaa33f5ea6de572d751655e103b9ce5a/status?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:03:00 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4284", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"bb56e37c03183c28887a97f8e997c66c\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo, repo:status", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B56:15110:18BD26E:1E0FB89:5D77AD14", + "content-length": "6574", + "connection": "keep-alive" + }, + "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"18133e07aaa33f5ea6de572d751655e103b9ce5a\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 207575276,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NzUyNzY=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/18133e07aaa33f5ea6de572d751655e103b9ce5a\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/18133e07aaa33f5ea6de572d751655e103b9ce5a/status\"\n}\n", + "status": 200 + } +] \ No newline at end of file diff --git a/cypress/fixtures/Github Backend Editorial Workflow - REST API__can delete an entry.json b/cypress/fixtures/Github Backend Editorial Workflow - REST API__can delete an entry.json new file mode 100644 index 00000000..56d23532 --- /dev/null +++ b/cypress/fixtures/Github Backend Editorial Workflow - REST API__can delete an entry.json @@ -0,0 +1,1174 @@ +[ + { + "method": "GET", + "url": "/user?ts=0", + "headers": { + "Date": "Tue, 10 Sep 2019 14:08:03 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3962", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"fb606f875be1d23b690ea5f5e26b9fe9\"", + "Last-Modified": "Wed, 28 Aug 2019 04:48:54 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B5A:9D1F:A5A32F:CA29D3:5D77AE41", + "content-length": "1321", + "connection": "keep-alive" + }, + "response": "{\"login\":\"owner\",\"id\":1,\"avatar_url\":\"https://avatars1.githubusercontent.com/u/7892489?v=4\",\"name\":\"owner\"}", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo?ts=0", + "headers": { + "Date": "Tue, 10 Sep 2019 14:08:04 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3961", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"9c80c7adc2ece197c97eda7f4235d600\"", + "Last-Modified": "Tue, 10 Sep 2019 14:07:57 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B5C:B4E0:1711D61:1C15413:5D77AE43", + "content-length": "7296", + "connection": "keep-alive" + }, + "response": "{\n \"id\": 207575276,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NzUyNzY=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-10T14:01:42Z\",\n \"updated_at\": \"2019-09-10T14:07:57Z\",\n \"pushed_at\": \"2019-09-10T14:07:55Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\",\n \"permissions\": {\n \"admin\": true,\n \"push\": true,\n \"pull\": true\n },\n \"allow_squash_merge\": true,\n \"allow_merge_commit\": true,\n \"allow_rebase_merge\": true,\n \"network_count\": 0,\n \"subscribers_count\": 1\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/static/media?ts=0&ref=master", + "headers": { + "Date": "Tue, 10 Sep 2019 14:08:05 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3960", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"c5b7f6d674ba193bb7b4a5fcf4933034e1b7f2b7\"", + "Last-Modified": "Tue, 10 Sep 2019 14:07:57 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B68:3ED82:18D6F44:1E3A88F:5D77AE44", + "content-length": "12362", + "connection": "keep-alive" + }, + "response": "[\n {\n \"name\": \"42-line-bible.jpg\",\n \"path\": \"static/media/42-line-bible.jpg\",\n \"sha\": \"41c8d12f9ca5864beb827c381fbeff935209d5fb\",\n \"size\": 671242,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/static/media/42-line-bible.jpg?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/static/media/42-line-bible.jpg\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/41c8d12f9ca5864beb827c381fbeff935209d5fb\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/static/media/42-line-bible.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/static/media/42-line-bible.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/41c8d12f9ca5864beb827c381fbeff935209d5fb\",\n \"html\": \"https://github.com/owner/repo/blob/master/static/media/42-line-bible.jpg\"\n }\n },\n {\n \"name\": \"gutenberg.jpg\",\n \"path\": \"static/media/gutenberg.jpg\",\n \"sha\": \"04315e355873ea5d358d9c371c39a6845c1ae4ae\",\n \"size\": 155002,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/static/media/gutenberg.jpg?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/static/media/gutenberg.jpg\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/04315e355873ea5d358d9c371c39a6845c1ae4ae\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/static/media/gutenberg.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/static/media/gutenberg.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/04315e355873ea5d358d9c371c39a6845c1ae4ae\",\n \"html\": \"https://github.com/owner/repo/blob/master/static/media/gutenberg.jpg\"\n }\n },\n {\n \"name\": \"image-0.jpg\",\n \"path\": \"static/media/image-0.jpg\",\n \"sha\": \"b70a1b64fd4fa9635823231a0ba92c6dc9393f16\",\n \"size\": 660287,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/static/media/image-0.jpg?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/static/media/image-0.jpg\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/b70a1b64fd4fa9635823231a0ba92c6dc9393f16\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/static/media/image-0.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/static/media/image-0.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/b70a1b64fd4fa9635823231a0ba92c6dc9393f16\",\n \"html\": \"https://github.com/owner/repo/blob/master/static/media/image-0.jpg\"\n }\n },\n {\n \"name\": \"image-1.jpg\",\n \"path\": \"static/media/image-1.jpg\",\n \"sha\": \"05eedae372b829c62501ac751b2d42dcc432541b\",\n \"size\": 392411,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/static/media/image-1.jpg?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/static/media/image-1.jpg\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/05eedae372b829c62501ac751b2d42dcc432541b\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/static/media/image-1.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/static/media/image-1.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/05eedae372b829c62501ac751b2d42dcc432541b\",\n \"html\": \"https://github.com/owner/repo/blob/master/static/media/image-1.jpg\"\n }\n },\n {\n \"name\": \"image-2.jpg\",\n \"path\": \"static/media/image-2.jpg\",\n \"sha\": \"53845ed35faf8939bea242bb85eda7c324b1be0b\",\n \"size\": 99147,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/static/media/image-2.jpg?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/static/media/image-2.jpg\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/53845ed35faf8939bea242bb85eda7c324b1be0b\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/static/media/image-2.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/static/media/image-2.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/53845ed35faf8939bea242bb85eda7c324b1be0b\",\n \"html\": \"https://github.com/owner/repo/blob/master/static/media/image-2.jpg\"\n }\n },\n {\n \"name\": \"image-3.jpg\",\n \"path\": \"static/media/image-3.jpg\",\n \"sha\": \"8b2339d97069e826fae1f156212e40ae458454e3\",\n \"size\": 358022,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/static/media/image-3.jpg?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/static/media/image-3.jpg\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/8b2339d97069e826fae1f156212e40ae458454e3\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/static/media/image-3.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/static/media/image-3.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/8b2339d97069e826fae1f156212e40ae458454e3\",\n \"html\": \"https://github.com/owner/repo/blob/master/static/media/image-3.jpg\"\n }\n },\n {\n \"name\": \"image-4.jpg\",\n \"path\": \"static/media/image-4.jpg\",\n \"sha\": \"a8f6f21253a67a4284b5a953b2fe633d44152ecd\",\n \"size\": 114837,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/static/media/image-4.jpg?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/static/media/image-4.jpg\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/a8f6f21253a67a4284b5a953b2fe633d44152ecd\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/static/media/image-4.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/static/media/image-4.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/a8f6f21253a67a4284b5a953b2fe633d44152ecd\",\n \"html\": \"https://github.com/owner/repo/blob/master/static/media/image-4.jpg\"\n }\n },\n {\n \"name\": \"movable-type.jpg\",\n \"path\": \"static/media/movable-type.jpg\",\n \"sha\": \"57b4e925ea00bd8e195cf4418eb6eb2995ea5f10\",\n \"size\": 559028,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/static/media/movable-type.jpg?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/static/media/movable-type.jpg\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/57b4e925ea00bd8e195cf4418eb6eb2995ea5f10\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/static/media/movable-type.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/static/media/movable-type.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/57b4e925ea00bd8e195cf4418eb6eb2995ea5f10\",\n \"html\": \"https://github.com/owner/repo/blob/master/static/media/movable-type.jpg\"\n }\n },\n {\n \"name\": \"printing-press.jpg\",\n \"path\": \"static/media/printing-press.jpg\",\n \"sha\": \"d27f56c9437d9becd2f56cc627c9322c2f1f61f6\",\n \"size\": 279283,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/static/media/printing-press.jpg?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/static/media/printing-press.jpg\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/d27f56c9437d9becd2f56cc627c9322c2f1f61f6\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/static/media/printing-press.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/static/media/printing-press.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/d27f56c9437d9becd2f56cc627c9322c2f1f61f6\",\n \"html\": \"https://github.com/owner/repo/blob/master/static/media/printing-press.jpg\"\n }\n },\n {\n \"name\": \"type-through-time.jpg\",\n \"path\": \"static/media/type-through-time.jpg\",\n \"sha\": \"3f08366a805c51a60ec5056010f22de4ba08abaa\",\n \"size\": 117689,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/static/media/type-through-time.jpg?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/static/media/type-through-time.jpg\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/3f08366a805c51a60ec5056010f22de4ba08abaa\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/static/media/type-through-time.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/static/media/type-through-time.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/3f08366a805c51a60ec5056010f22de4ba08abaa\",\n \"html\": \"https://github.com/owner/repo/blob/master/static/media/type-through-time.jpg\"\n }\n }\n]\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/content/posts?ts=0&ref=master", + "headers": { + "Date": "Tue, 10 Sep 2019 14:08:05 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3959", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"c5b7f6d674ba193bb7b4a5fcf4933034e1b7f2b7\"", + "Last-Modified": "Tue, 10 Sep 2019 14:07:57 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B66:244EB:1863415:1DA184A:5D77AE44", + "content-length": "7422", + "connection": "keep-alive" + }, + "response": "[\n {\n \"name\": \"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"path\": \"content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"sha\": \"6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"size\": 1707,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"html\": \"https://github.com/owner/repo/blob/master/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md\"\n }\n },\n {\n \"name\": \"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"path\": \"content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"sha\": \"d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"size\": 2565,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"html\": \"https://github.com/owner/repo/blob/master/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\"\n }\n },\n {\n \"name\": \"2016-02-02---A-Brief-History-of-Typography.md\",\n \"path\": \"content/posts/2016-02-02---A-Brief-History-of-Typography.md\",\n \"sha\": \"0eea554365f002d0f1572af9a58522d335a794d5\",\n \"size\": 2786,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2016-02-02---A-Brief-History-of-Typography.md?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/content/posts/2016-02-02---A-Brief-History-of-Typography.md\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/content/posts/2016-02-02---A-Brief-History-of-Typography.md\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2016-02-02---A-Brief-History-of-Typography.md?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\",\n \"html\": \"https://github.com/owner/repo/blob/master/content/posts/2016-02-02---A-Brief-History-of-Typography.md\"\n }\n },\n {\n \"name\": \"2017-18-08---The-Birth-of-Movable-Type.md\",\n \"path\": \"content/posts/2017-18-08---The-Birth-of-Movable-Type.md\",\n \"sha\": \"44f78c474d04273185a95821426f75affc9b0044\",\n \"size\": 16071,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2017-18-08---The-Birth-of-Movable-Type.md?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/content/posts/2017-18-08---The-Birth-of-Movable-Type.md\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/content/posts/2017-18-08---The-Birth-of-Movable-Type.md\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2017-18-08---The-Birth-of-Movable-Type.md?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\",\n \"html\": \"https://github.com/owner/repo/blob/master/content/posts/2017-18-08---The-Birth-of-Movable-Type.md\"\n }\n },\n {\n \"name\": \"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"path\": \"content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"sha\": \"a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"size\": 7465,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"html\": \"https://github.com/owner/repo/blob/master/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md\"\n }\n }\n]\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043?ts=0", + "headers": { + "Date": "Tue, 10 Sep 2019 14:08:06 GMT", + "Content-Type": "text/plain; charset=iso-8859-1", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3958", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"b11610ec1fe2f13ce388952c3fdf3423\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B70:244EB:18635A5:1DA1A30:5D77AE45", + "content-length": "1707", + "connection": "keep-alive" + }, + "response": "---\ntitle: Perfecting the Art of Perfection\ndate: \"2016-09-01T23:46:37.121Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Design Inspiration\"\ntags:\n - \"Handwriting\"\n - \"Learning to write\"\ndescription: \"Quisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\"\ncanonical: ''\n---\n\nQuisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\n\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-2.jpg)\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. \n\nPraesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774?ts=0", + "headers": { + "Date": "Tue, 10 Sep 2019 14:08:06 GMT", + "Content-Type": "text/plain; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3957", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"d2bb4e67afce9cad20457cc0c72b8a41\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B76:15110:18DD7D6:1E37C6C:5D77AE45", + "content-length": "7465", + "connection": "keep-alive" + }, + "response": "---\ntitle: Humane Typography in the Digital Age\ndate: \"2017-08-19T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Typography\"\ntags:\n - \"Design\"\n - \"Typography\"\n - \"Web Development\"\ndescription: \"An Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\"\ncanonical: ''\n---\n\n- [The first transition](#the-first-transition)\n- [The digital age](#the-digital-age)\n- [Loss of humanity through transitions](#loss-of-humanity-through-transitions)\n- [Chasing perfection](#chasing-perfection)\n\nAn Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\n\nThe typography of this industrial age was no longer handcrafted. Mass production and profit became more important. Quantity mattered more than the quality. The books and printed works in general lost a part of its humanity. The typefaces were not produced by craftsmen anymore. It was the machines printing and tying the books together now. The craftsmen had to let go of their craft and became a cog in the process. An extension of the industrial machine.\n\nBut the victory of the industrialism didn’t mean that the craftsmen were completely extinct. The two worlds continued to coexist independently. Each recognising the good in the other — the power of industrialism and the humanity of craftsmanship. This was the second transition that would strip typography of a part of its humanity. We have to go 500 years back in time to meet the first one.\n\n## The first transition\n\nA similar conflict emerged after the invention of the first printing press in Europe. Johannes Gutenberg invented movable type and used it to produce different compositions. His workshop could print up to 240 impressions per hour. Until then, the books were being copied by hand. All the books were handwritten and decorated with hand drawn ornaments and figures. A process of copying a book was long but each book, even a copy, was a work of art.\n\nThe first printed books were, at first, perceived as inferior to the handwritten ones. They were smaller and cheaper to produce. Movable type provided the printers with flexibility that allowed them to print books in languages other than Latin. Gill describes the transition to industrialism as something that people needed and wanted. Something similar happened after the first printed books emerged. People wanted books in a language they understood and they wanted books they could take with them. They were hungry for knowledge and printed books satisfied this hunger.\n\n![42-line-bible.jpg](/media/42-line-bible.jpg)\n\n*The 42–Line Bible, printed by Gutenberg.*\n\nBut, through this transition, the book lost a large part of its humanity. The machine took over most of the process but craftsmanship was still a part of it. The typefaces were cut manually by the first punch cutters. The paper was made by hand. The illustrations and ornaments were still being hand drawn. These were the remains of the craftsmanship that went almost extinct in the times of Eric Gill.\n\n## The digital age\n\nThe first transition took away a large part of humanity from written communication. Industrialisation, the second transition described by Eric Gill, took away most of what was left. But it’s the third transition that stripped it naked. Typefaces are faceless these days. They’re just fonts on our computers. Hardly anyone knows their stories. Hardly anyone cares. Flicking through thousands of typefaces and finding the “right one” is a matter of minutes.\n\n> In the new computer age the proliferation of typefaces and type manipulations represents a new level of visual pollution threatening our culture. Out of thousands of typefaces, all we need are a few basic ones, and trash the rest.\n>\n— Massimo Vignelli\n\nTypography is not about typefaces. It’s not about what looks best, it’s about what feels right. What communicates the message best. Typography, in its essence, is about the message. “Typographical design should perform optically what the speaker creates through voice and gesture of his thoughts.”, as El Lissitzky, a famous Russian typographer, put it.\n\n## Loss of humanity through transitions\n\nEach transition took away a part of humanity from written language. Handwritten books being the most humane form and the digital typefaces being the least. Overuse of Helvetica is a good example. Messages are being told in a typeface just because it’s a safe option. It’s always there. Everyone knows it but yet, nobody knows it. Stop someone on the street and ask him what Helvetica is? Ask a designer the same question. Ask him where it came from, when, why and who designed it. Most of them will fail to answer these questions. Most of them used it in their precious projects but they still don’t spot it in the street.\n\n
\n\t
\n\t\t

Knowledge of the quality of a typeface is of the greatest importance for the functional, aesthetic and psychological effect.

\n\t\t
\n\t\t\t— Josef Mueller-Brockmann\n\t\t
\n\t
\n
\n\nTypefaces don’t look handmade these days. And that’s all right. They don’t have to. Industrialism took that away from them and we’re fine with it. We’ve traded that part of humanity for a process that produces more books that are easier to read. That can’t be bad. And it isn’t.\n\n> Humane typography will often be comparatively rough and even uncouth; but while a certain uncouthness does not seriously matter in humane works, uncouthness has no excuse whatever in the productions of the machine.\n>\n> — Eric Gill\n\nWe’ve come close to “perfection” in the last five centuries. The letters are crisp and without rough edges. We print our compositions with high–precision printers on a high quality, machine made paper.\n\n![type-through-time.jpg](/media/type-through-time.jpg)\n\n*Type through 5 centuries.*\n\nWe lost a part of ourselves because of this chase after perfection. We forgot about the craftsmanship along the way. And the worst part is that we don’t care. The transition to the digital age made that clear. We choose typefaces like clueless zombies. There’s no meaning in our work. Type sizes, leading, margins… It’s all just a few clicks or lines of code. The message isn’t important anymore. There’s no more “why” behind the “what”.\n\n## Chasing perfection\n\nHuman beings aren’t perfect. Perfection is something that will always elude us. There will always be a small part of humanity in everything we do. No matter how small that part, we should make sure that it transcends the limits of the medium. We have to think about the message first. What typeface should we use and why? Does the typeface match the message and what we want to communicate with it? What will be the leading and why? Will there be more typefaces in our design? On what ground will they be combined? What makes our design unique and why? This is the part of humanity that is left in typography. It might be the last part. Are we really going to give it up?\n\n*Originally published by [Matej Latin](http://matejlatin.co.uk/) on [Medium](https://medium.com/design-notes/humane-typography-in-the-digital-age-9bd5c16199bd?ref=webdesignernews.com#.lygo82z0x).*", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044?ts=0", + "headers": { + "Date": "Tue, 10 Sep 2019 14:08:06 GMT", + "Content-Type": "text/plain; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3956", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"6e2453f34250f47bb0adc4ff2f6887a8\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B75:9D20:1194700:1580D39:5D77AE45", + "content-length": "16071", + "connection": "keep-alive" + }, + "response": "---\ntitle: \"Johannes Gutenberg: The Birth of Movable Type\"\ndate: \"2017-08-18T22:12:03.284Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Typography\"\ntags:\n - \"Open source\"\n - \"Gatsby\"\n - \"Typography\"\ndescription: \"German inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\"\ncanonical: ''\n---\n\nGerman inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\n\n**Johannes Gensfleisch zur Laden zum Gutenberg** (c. 1398 – 1468) was a German blacksmith, goldsmith, printer, and publisher who introduced printing to Europe. His invention of mechanical movable type printing started the Printing Revolution and is widely regarded as the most important event of the modern period. It played a key role in the development of the Renaissance, Reformation, the Age of Enlightenment, and the Scientific revolution and laid the material basis for the modern knowledge-based economy and the spread of learning to the masses.\n\n
\n\t\"Gutenberg\"\n\t
Johannes Gutenberg
\n
\n\nWith his invention of the printing press, Gutenberg was the first European to use movable type printing, in around 1439. Among his many contributions to printing are: the invention of a process for mass-producing movable type; the use of oil-based ink; and the use of a wooden printing press similar to the agricultural screw presses of the period. His truly epochal invention was the combination of these elements into a practical system that allowed the mass production of printed books and was economically viable for printers and readers alike. Gutenberg's method for making type is traditionally considered to have included a type metal alloy and a hand mould for casting type. The alloy was a mixture of lead, tin, and antimony that melted at a relatively low temperature for faster and more economical casting, cast well, and created a durable type.\n\nIn Renaissance Europe, the arrival of mechanical movable type printing introduced the era of mass communication which permanently altered the structure of society. The relatively unrestricted circulation of information — including revolutionary ideas — transcended borders, captured the masses in the Reformation and threatened the power of political and religious authorities; the sharp increase in literacy broke the monopoly of the literate elite on education and learning and bolstered the emerging middle class. Across Europe, the increasing cultural self-awareness of its people led to the rise of proto-nationalism, accelerated by the flowering of the European vernacular languages to the detriment of Latin's status as lingua franca. In the 19th century, the replacement of the hand-operated Gutenberg-style press by steam-powered rotary presses allowed printing on an industrial scale, while Western-style printing was adopted all over the world, becoming practically the sole medium for modern bulk printing.\n\nThe use of movable type was a marked improvement on the handwritten manuscript, which was the existing method of book production in Europe, and upon woodblock printing, and revolutionized European book-making. Gutenberg's printing technology spread rapidly throughout Europe and later the world.\n\nHis major work, the Gutenberg Bible (also known as the 42-line Bible), has been acclaimed for its high aesthetic and technical quality.\n\n## Printing Press\n\nAround 1439, Gutenberg was involved in a financial misadventure making polished metal mirrors (which were believed to capture holy light from religious relics) for sale to pilgrims to Aachen: in 1439 the city was planning to exhibit its collection of relics from Emperor Charlemagne but the event was delayed by one year due to a severe flood and the capital already spent could not be repaid. When the question of satisfying the investors came up, Gutenberg is said to have promised to share a “secret”. It has been widely speculated that this secret may have been the idea of printing with movable type. Also around 1439–1440, the Dutch Laurens Janszoon Coster came up with the idea of printing. Legend has it that the idea came to him “like a ray of light”.\n\n
\n\t\"Early\n\t
Early wooden printing press as depicted in 1568.
\n
\n\nUntil at least 1444 he lived in Strasbourg, most likely in the St. Arbogast parish. It was in Strasbourg in 1440 that Gutenberg is said to have perfected and unveiled the secret of printing based on his research, mysteriously entitled Kunst und Aventur (art and enterprise). It is not clear what work he was engaged in, or whether some early trials with printing from movable type may have been conducted there. After this, there is a gap of four years in the record. In 1448, he was back in Mainz, where he took out a loan from his brother-in-law Arnold Gelthus, quite possibly for a printing press or related paraphernalia. By this date, Gutenberg may have been familiar with intaglio printing; it is claimed that he had worked on copper engravings with an artist known as the Master of Playing Cards.\n\nBy 1450, the press was in operation, and a German poem had been printed, possibly the first item to be printed there. Gutenberg was able to convince the wealthy moneylender Johann Fust for a loan of 800 guilders. Peter Schöffer, who became Fust’s son-in-law, also joined the enterprise. Schöffer had worked as a scribe in Paris and is believed to have designed some of the first typefaces.\n\n
\n\t
\n\t\t

All that has been written to me about that marvelous man seen at Frankfurt is true. I have not seen complete Bibles but only a number of quires of various books of the Bible. The script was very neat and legible, not at all difficult to follow—your grace would be able to read it without effort, and indeed without glasses.

\n\t\t
\n\t\t\t—Future pope Pius II in a letter to Cardinal Carvajal, March 1455\n\t\t
\n\t
\n
\n\nGutenberg's workshop was set up at Hof Humbrecht, a property belonging to a distant relative. It is not clear when Gutenberg conceived the Bible project, but for this he borrowed another 800 guilders from Fust, and work commenced in 1452. At the same time, the press was also printing other, more lucrative texts (possibly Latin grammars). There is also some speculation that there may have been two presses, one for the pedestrian texts, and one for the Bible. One of the profit-making enterprises of the new press was the printing of thousands of indulgences for the church, documented from 1454–55.\n\nIn 1455 Gutenberg completed his 42-line Bible, known as the Gutenberg Bible. About 180 copies were printed, most on paper and some on vellum.\n\n## Court Case\n\nSome time in 1456, there was a dispute between Gutenberg and Fust, and Fust demanded his money back, accusing Gutenberg of misusing the funds. Meanwhile the expenses of the Bible project had proliferated, and Gutenberg's debt now exceeded 20,000 guilders. Fust sued at the archbishop's court. A November 1455 legal document records that there was a partnership for a \"project of the books,\" the funds for which Gutenberg had used for other purposes, according to Fust. The court decided in favor of Fust, giving him control over the Bible printing workshop and half of all printed Bibles.\n\nThus Gutenberg was effectively bankrupt, but it appears he retained (or re-started) a small printing shop, and participated in the printing of a Bible in the town of Bamberg around 1459, for which he seems at least to have supplied the type. But since his printed books never carry his name or a date, it is difficult to be certain, and there is consequently a considerable scholarly debate on this subject. It is also possible that the large Catholicon dictionary, 300 copies of 754 pages, printed in Mainz in 1460, may have been executed in his workshop.\n\nMeanwhile, the Fust–Schöffer shop was the first in Europe to bring out a book with the printer's name and date, the Mainz Psalter of August 1457, and while proudly proclaiming the mechanical process by which it had been produced, it made no mention of Gutenberg.\n\n## Later Life\n\nIn 1462, during a conflict between two archbishops, Mainz was sacked by archbishop Adolph von Nassau, and Gutenberg was exiled. An old man by now, he moved to Eltville where he may have initiated and supervised a new printing press belonging to the brothers Bechtermünze.\n\nIn January 1465, Gutenberg's achievements were recognized and he was given the title Hofmann (gentleman of the court) by von Nassau. This honor included a stipend, an annual court outfit, as well as 2,180 litres of grain and 2,000 litres of wine tax-free. It is believed he may have moved back to Mainz around this time, but this is not certain.\n\n***\n\nGutenberg died in 1468 and was buried in the Franciscan church at Mainz, his contributions largely unknown. This church and the cemetery were later destroyed, and Gutenberg's grave is now lost.\n\nIn 1504, he was mentioned as the inventor of typography in a book by Professor Ivo Wittig. It was not until 1567 that the first portrait of Gutenberg, almost certainly an imaginary reconstruction, appeared in Heinrich Pantaleon's biography of famous Germans.\n\n## Printing Method With Movable Type\n\nGutenberg's early printing process, and what tests he may have made with movable type, are not known in great detail. His later Bibles were printed in such a way as to have required large quantities of type, some estimates suggesting as many as 100,000 individual sorts. Setting each page would take, perhaps, half a day, and considering all the work in loading the press, inking the type, pulling the impressions, hanging up the sheets, distributing the type, etc., it is thought that the Gutenberg–Fust shop might have employed as many as 25 craftsmen.\n\n![Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5](/media/movable-type.jpg)\n\n*Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5*\n\nGutenberg's technique of making movable type remains unclear. In the following decades, punches and copper matrices became standardized in the rapidly disseminating printing presses across Europe. Whether Gutenberg used this sophisticated technique or a somewhat primitive version has been the subject of considerable debate.\n\nIn the standard process of making type, a hard metal punch (made by punchcutting, with the letter carved back to front) is hammered into a softer copper bar, creating a matrix. This is then placed into a hand-held mould and a piece of type, or \"sort\", is cast by filling the mould with molten type-metal; this cools almost at once, and the resulting piece of type can be removed from the mould. The matrix can be reused to create hundreds, or thousands, of identical sorts so that the same character appearing anywhere within the book will appear very uniform, giving rise, over time, to the development of distinct styles of typefaces or fonts. After casting, the sorts are arranged into type-cases, and used to make up pages which are inked and printed, a procedure which can be repeated hundreds, or thousands, of times. The sorts can be reused in any combination, earning the process the name of “movable type”.\n\nThe invention of the making of types with punch, matrix and mold has been widely attributed to Gutenberg. However, recent evidence suggests that Gutenberg's process was somewhat different. If he used the punch and matrix approach, all his letters should have been nearly identical, with some variations due to miscasting and inking. However, the type used in Gutenberg's earliest work shows other variations.\n\n
\n\t
\n\t\t

It is a press, certainly, but a press from which shall flow in inexhaustible streams… Through it, god will spread his word.

\n\t\t
\n\t\t\t—Johannes Gutenberg\n\t\t
\n\t
\n
\n\nIn 2001, the physicist Blaise Agüera y Arcas and Princeton librarian Paul Needham, used digital scans of a Papal bull in the Scheide Library, Princeton, to carefully compare the same letters (types) appearing in different parts of the printed text. The irregularities in Gutenberg's type, particularly in simple characters such as the hyphen, suggested that the variations could not have come from either ink smear or from wear and damage on the pieces of metal on the types themselves. While some identical types are clearly used on other pages, other variations, subjected to detailed image analysis, suggested that they could not have been produced from the same matrix. Transmitted light pictures of the page also appeared to reveal substructures in the type that could not arise from traditional punchcutting techniques. They hypothesized that the method may have involved impressing simple shapes to create alphabets in “cuneiform” style in a matrix made of some soft material, perhaps sand. Casting the type would destroy the mould, and the matrix would need to be recreated to make each additional sort. This could explain the variations in the type, as well as the substructures observed in the printed images.\n\nThus, they feel that “the decisive factor for the birth of typography”, the use of reusable moulds for casting type, might have been a more progressive process than was previously thought. They suggest that the additional step of using the punch to create a mould that could be reused many times was not taken until twenty years later, in the 1470s. Others have not accepted some or all of their suggestions, and have interpreted the evidence in other ways, and the truth of the matter remains very uncertain.\n\nA 1568 history by Hadrianus Junius of Holland claims that the basic idea of the movable type came to Gutenberg from Laurens Janszoon Coster via Fust, who was apprenticed to Coster in the 1430s and may have brought some of his equipment from Haarlem to Mainz. While Coster appears to have experimented with moulds and castable metal type, there is no evidence that he had actually printed anything with this technology. He was an inventor and a goldsmith. However, there is one indirect supporter of the claim that Coster might be the inventor. The author of the Cologne Chronicle of 1499 quotes Ulrich Zell, the first printer of Cologne, that printing was performed in Mainz in 1450, but that some type of printing of lower quality had previously occurred in the Netherlands. However, the chronicle does not mention the name of Coster, while it actually credits Gutenberg as the \"first inventor of printing\" in the very same passage (fol. 312). The first securely dated book by Dutch printers is from 1471, and the Coster connection is today regarded as a mere legend.\n\nThe 19th century printer and typefounder Fournier Le Jeune suggested that Gutenberg might not have been using type cast with a reusable matrix, but possibly wooden types that were carved individually. A similar suggestion was made by Nash in 2004. This remains possible, albeit entirely unproven.\n\nIt has also been questioned whether Gutenberg used movable types at all. In 2004, Italian professor Bruno Fabbiani claimed that examination of the 42-line Bible revealed an overlapping of letters, suggesting that Gutenberg did not in fact use movable type (individual cast characters) but rather used whole plates made from a system somewhat like a modern typewriter, whereby the letters were stamped successively into the plate and then printed. However, most specialists regard the occasional overlapping of type as caused by paper movement over pieces of type of slightly unequal height.", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9?ts=0", + "headers": { + "Date": "Tue, 10 Sep 2019 14:08:06 GMT", + "Content-Type": "text/plain; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3955", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"f9b97e27090d24f9b7c773ede73acd0c\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B6C:3ED82:18D70BB:1E3AA68:5D77AE45", + "content-length": "2565", + "connection": "keep-alive" + }, + "response": "---\ntitle: The Origins of Social Stationery Lettering\ndate: \"2016-12-01T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Design Culture\"\ndescription: \"Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante.\"\ncanonical: ''\n---\n\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\n\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-3.jpg)\n\n## Header Level 2\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \n\n
\n\t
\n\t\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\n\t\t
\n\t\t\t— Aliquam tincidunt mauris eu risus.\n\t\t
\n\t
\n
\n\n### Header Level 3\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\n\n```css\n#header h1 a {\n display: block;\n width: 300px;\n height: 80px;\n}\n```\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/1970-01-01-first-title.json?ts=300&ref=refs/meta/_netlify_cms", + "headers": { + "Date": "Tue, 10 Sep 2019 14:08:09 GMT", + "Content-Type": "application/vnd.github.VERSION.raw; charset=utf-8", + "Content-Length": "472", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3954", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"d40f5ba5095bfea7ef60a90c29dfd2ab2d134b8d\"", + "Last-Modified": "Tue, 10 Sep 2019 14:07:20 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B7A:2B19:AC4840:D1BB6D:5D77AE48", + "connection": "keep-alive" + }, + "response": "{\"type\":\"PR\",\"pr\":{\"number\":5,\"head\":\"ee3f2e3b2419f259b0041057f371dfce5cbed2be\"},\"user\":\"owner\",\"status\":\"pending_publish\",\"branch\":\"cms/1970-01-01-first-title\",\"collection\":\"posts\",\"commitMessage\":\"Create Post “1970-01-01-first-title”\",\"title\":\"first title\",\"description\":\"first description\",\"objects\":{\"entry\":{\"path\":\"content/posts/1970-01-01-first-title.md\",\"sha\":\"a041245814892e3f73f63ca54333fda649b7fc0b\"},\"files\":[]},\"timeStamp\":\"1970-01-01T00:00:00.300Z\"}", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5?ts=0", + "headers": { + "Date": "Tue, 10 Sep 2019 14:08:09 GMT", + "Content-Type": "text/plain; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3953", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"733ab4cffe213d8db3be254e7fee8f69\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B6E:2B15:4F9DE8:60AABB:5D77AE45", + "content-length": "2786", + "connection": "keep-alive" + }, + "response": "---\ntitle: \"A Brief History of Typography\"\ndate: \"2016-02-02T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Design Inspiration\"\ntags:\n - \"Linotype\"\n - \"Monotype\"\n - \"History of typography\"\n - \"Helvetica\"\ndescription: \"Morbi in sem quis dui placerat ornare. Pellentesque odio nisi, euismod in, pharetra a, ultricies in, diam. Sed arcu. Cras consequat.\"\ncanonical: ''\n---\n\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\n\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-0.jpg)\n\n## Header Level 2\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \n\n
\n\t
\n\t\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\n\t\t
\n\t\t\t— Aliquam tincidunt mauris eu risus.\n\t\t
\n\t
\n
\n\n### Header Level 3\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\n\n```css\n#header h1 a {\n display: block;\n width: 300px;\n height: 80px;\n}\n```\n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=master", + "headers": { + "Date": "Tue, 10 Sep 2019 14:08:09 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "404 Not Found", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3952", + "X-RateLimit-Reset": "1568126651", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B7C:9D20:1194B71:15812B9:5D77AE49", + "content-length": "116", + "connection": "keep-alive" + }, + "response": "{\n \"message\": \"Not Found\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/#get-contents\"\n}\n", + "status": 404 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=cms/1970-01-01-first-title", + "headers": { + "Date": "Tue, 10 Sep 2019 14:08:09 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "404 Not Found", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3951", + "X-RateLimit-Reset": "1568126651", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B7E:1510C:186AB2:1DE973:5D77AE49", + "content-length": "148", + "connection": "keep-alive" + }, + "response": "{\n \"message\": \"No commit found for the ref cms/1970-01-01-first-title\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/\"\n}\n", + "status": 404 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=master", + "headers": { + "Date": "Tue, 10 Sep 2019 14:08:10 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "404 Not Found", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3950", + "X-RateLimit-Reset": "1568126651", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B81:2B24:1827736:1D5E350:5D77AE4A", + "content-length": "116", + "connection": "keep-alive" + }, + "response": "{\n \"message\": \"Not Found\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/#get-contents\"\n}\n", + "status": 404 + }, + { + "body": "{\"content\":\"LS0tCnRlbXBsYXRlOiBwb3N0CnRpdGxlOiBmaXJzdCB0aXRsZQpkcmFmdDogdHJ1ZQpkYXRlOiAxOTcwLTAxLTAxVDAwOjAwOjAwLjAwMFoKZGVzY3JpcHRpb246IGZpcnN0IGRlc2NyaXB0aW9uCmNhdGVnb3J5OiBmaXJzdCBjYXRlZ29yeQp0YWdzOgogIC0gdGFnMQotLS0KZmlyc3QgYm9keQo=\",\"encoding\":\"base64\"}", + "method": "POST", + "url": "/repos/owner/repo/git/blobs?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:08:11 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "207", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3949", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"cb99eafe6ceb0316a6aa5e0717f30f21\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B82:B4E0:1712A15:1C1637A:5D77AE4A", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"a041245814892e3f73f63ca54333fda649b7fc0b\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b\"\n}\n", + "status": 201 + }, + { + "method": "GET", + "url": "/repos/owner/repo/branches/master?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:08:12 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3948", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"80c77d2f81ab07f51b5d129d0995389d\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B84:15110:18DE253:1E38938:5D77AE4B", + "content-length": "5961", + "connection": "keep-alive" + }, + "response": "{\n \"name\": \"master\",\n \"commit\": {\n \"sha\": \"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NTc1Mjc2OjcyNjE3MmRlYWU5OWM4YTJjZWE0YzcxZTczNGEwMmE3OTNkNGQ5ZTU=\",\n \"commit\": {\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-08T09:08:14Z\"\n },\n \"committer\": {\n \"name\": \"GitHub\",\n \"email\": \"noreply@github.com\",\n \"date\": \"2019-09-08T09:08:14Z\"\n },\n \"message\": \"Merge pull request #10 from owner/chore/update_dependencies\\n\\nChore: update dependencies\",\n \"tree\": {\n \"sha\": \"c5b7f6d674ba193bb7b4a5fcf4933034e1b7f2b7\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/c5b7f6d674ba193bb7b4a5fcf4933034e1b7f2b7\"\n },\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"comment_count\": 0,\n \"verification\": {\n \"verified\": true,\n \"reason\": \"valid\",\n \"signature\": \"-----BEGIN PGP SIGNATURE-----\\n\\nwsBcBAABCAAQBQJddMT+CRBK7hj4Ov3rIwAAdHIIABWcobVYZFMuqSPezceRaKDr\\npXGqxvB3WLiIrvsQiBz2si9SvufXxLUdq72iaYTbXMCqIAAIBDNwHLltOKcbUF9J\\nKa8pD6cq7jpNyZfhI8xlapMwEZPu53as0tSvwdOnl/0iL+WYjUZUFQR+vrWEmllu\\nhIES9QxU2nk5zcS7t8sFRA+sJdll8GzzhoWYkpw3wgqpxCzJdf5HJS0tWyVCZM5U\\nCgSpSgTvz9bALnQxu7YVrfLGEvi8S7LaOEz5HQc+TV1hNR2dfl5hhiHhWQ1Rsx5w\\nUECV01vItNWhx2dyMn77hIu/G+bTH89WZDU+CmifsNkmvkq90fk4eNt8Hg1mxn4=\\n=6ayM\\n-----END PGP SIGNATURE-----\\n\",\n \"payload\": \"tree c5b7f6d674ba193bb7b4a5fcf4933034e1b7f2b7\\nparent 8ade583d7c02e7769dd685ca64c10851c09f51cf\\nparent 4940957ff42b034d8c47d64b383c34548a34fbb5\\nauthor owner 1567933694 +0300\\ncommitter GitHub 1567933694 +0300\\n\\nMerge pull request #10 from owner/chore/update_dependencies\\n\\nChore: update dependencies\"\n }\n },\n \"url\": \"https://api.github.com/repos/owner/repo/commits/726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"html_url\": \"https://github.com/owner/repo/commit/726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/commits/726172deae99c8a2cea4c71e734a02a793d4d9e5/comments\",\n \"author\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"committer\": {\n \"login\": \"web-flow\",\n \"id\": 19864447,\n \"node_id\": \"MDQ6VXNlcjE5ODY0NDQ3\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/web-flow\",\n \"html_url\": \"https://github.com/web-flow\",\n \"followers_url\": \"https://api.github.com/users/web-flow/followers\",\n \"following_url\": \"https://api.github.com/users/web-flow/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/web-flow/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/web-flow/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/web-flow/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/web-flow/orgs\",\n \"repos_url\": \"https://api.github.com/users/web-flow/repos\",\n \"events_url\": \"https://api.github.com/users/web-flow/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/web-flow/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"parents\": [\n {\n \"sha\": \"8ade583d7c02e7769dd685ca64c10851c09f51cf\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/8ade583d7c02e7769dd685ca64c10851c09f51cf\",\n \"html_url\": \"https://github.com/owner/repo/commit/8ade583d7c02e7769dd685ca64c10851c09f51cf\"\n },\n {\n \"sha\": \"4940957ff42b034d8c47d64b383c34548a34fbb5\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/4940957ff42b034d8c47d64b383c34548a34fbb5\",\n \"html_url\": \"https://github.com/owner/repo/commit/4940957ff42b034d8c47d64b383c34548a34fbb5\"\n }\n ]\n },\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/branches/master\",\n \"html\": \"https://github.com/owner/repo/tree/master\"\n },\n \"protected\": false,\n \"protection\": {\n \"enabled\": false,\n \"required_status_checks\": {\n \"enforcement_level\": \"off\",\n \"contexts\": [\n\n ]\n }\n },\n \"protection_url\": \"https://api.github.com/repos/owner/repo/branches/master/protection\"\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/trees/726172deae99c8a2cea4c71e734a02a793d4d9e5?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:08:12 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3947", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"7a035f3359b977cd956a086f27ff138d\"", + "Last-Modified": "Tue, 10 Sep 2019 14:07:57 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B86:244E7:11EAE79:15DED09:5D77AE4C", + "content-length": "11769", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"tree\": [\n {\n \"path\": \".circleci\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"e5e9af3301cac61f120b8e4d40b1733c7a45685a\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/e5e9af3301cac61f120b8e4d40b1733c7a45685a\"\n },\n {\n \"path\": \".eslintignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"80b4531b026d19f8fa589efd122e76199d23f967\",\n \"size\": 39,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/80b4531b026d19f8fa589efd122e76199d23f967\"\n },\n {\n \"path\": \".eslintrc.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"370684994aaed5b858da3a006f48cfa57e88fd27\",\n \"size\": 414,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/370684994aaed5b858da3a006f48cfa57e88fd27\"\n },\n {\n \"path\": \".flowconfig\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14aa2ac4cc0e15223ad98630a6f1325fc81f8043\",\n \"size\": 283,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14aa2ac4cc0e15223ad98630a6f1325fc81f8043\"\n },\n {\n \"path\": \".gitattributes\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"10a369ddf4f603337cabc6f21646508323941ce1\",\n \"size\": 135,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/10a369ddf4f603337cabc6f21646508323941ce1\"\n },\n {\n \"path\": \".github\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4ebeece548b52b20af59622354530a6d33b50b43\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4ebeece548b52b20af59622354530a6d33b50b43\"\n },\n {\n \"path\": \".gitignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"c071ba35b0e49899bab6d610a68eef667dbbf157\",\n \"size\": 169,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/c071ba35b0e49899bab6d610a68eef667dbbf157\"\n },\n {\n \"path\": \".prettierignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"393f050e123d998cf8c8b362ff95cc8ac4d250e5\",\n \"size\": 45,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/393f050e123d998cf8c8b362ff95cc8ac4d250e5\"\n },\n {\n \"path\": \".prettierrc\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e52ad05bb13b084d7949dd76e1b2517455162150\",\n \"size\": 223,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/e52ad05bb13b084d7949dd76e1b2517455162150\"\n },\n {\n \"path\": \".stylelintrc.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"4b4c9698d10d756f5faa025659b86375428ed0a7\",\n \"size\": 718,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/4b4c9698d10d756f5faa025659b86375428ed0a7\"\n },\n {\n \"path\": \".vscode\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"286e97ec0113ea8242b41ac222e2c3e8077e6f1e\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/286e97ec0113ea8242b41ac222e2c3e8077e6f1e\"\n },\n {\n \"path\": \"CHANGELOG.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"070a5d4f0eacd2dc0be81ae8996f8982de43046e\",\n \"size\": 2113,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/070a5d4f0eacd2dc0be81ae8996f8982de43046e\"\n },\n {\n \"path\": \"CODE_OF_CONDUCT.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"92bc7565ff0ee145a0041b5179a820f14f39ab22\",\n \"size\": 3355,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/92bc7565ff0ee145a0041b5179a820f14f39ab22\"\n },\n {\n \"path\": \"CONTRIBUTING.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"8552aa241254a61258e1ff9666ab36f32fb1e3b9\",\n \"size\": 3548,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/8552aa241254a61258e1ff9666ab36f32fb1e3b9\"\n },\n {\n \"path\": \"LICENSE\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"42d85938357b49977c126ca03b199129082d4fb8\",\n \"size\": 1091,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/42d85938357b49977c126ca03b199129082d4fb8\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"19df50a78654c8d757ca7f38447aa3d09c7abcce\",\n \"size\": 3698,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/19df50a78654c8d757ca7f38447aa3d09c7abcce\"\n },\n {\n \"path\": \"backend\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\"\n },\n {\n \"path\": \"config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"58afd573bbb69fcca000efd0f5d90b93c93a98dd\",\n \"size\": 853,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/58afd573bbb69fcca000efd0f5d90b93c93a98dd\"\n },\n {\n \"path\": \"content\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/0294ef106c58743907a5c855da1eb0f87b0b6dfc\"\n },\n {\n \"path\": \"flow-typed\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"86c32fd6c3118be5e0dbbb231a834447357236c6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/86c32fd6c3118be5e0dbbb231a834447357236c6\"\n },\n {\n \"path\": \"flow\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"0af45ad00d155c8d8c7407d913ff85278244c9ce\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/0af45ad00d155c8d8c7407d913ff85278244c9ce\"\n },\n {\n \"path\": \"gatsby-browser.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9bd2c9dce175f04980e91cd9dc295a299e3cdb80\",\n \"size\": 90,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9bd2c9dce175f04980e91cd9dc295a299e3cdb80\"\n },\n {\n \"path\": \"gatsby-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"353a109dad62e3f25bf9f5e6a2167f21a6c8b459\",\n \"size\": 7228,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/353a109dad62e3f25bf9f5e6a2167f21a6c8b459\"\n },\n {\n \"path\": \"gatsby-node.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14a207883c2093d2cc071bc5a464e165bcc1fead\",\n \"size\": 409,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14a207883c2093d2cc071bc5a464e165bcc1fead\"\n },\n {\n \"path\": \"gatsby\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4f23c06cd1740bf78304d2c0b29bf6bfdf427981\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4f23c06cd1740bf78304d2c0b29bf6bfdf427981\"\n },\n {\n \"path\": \"jest\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\"\n },\n {\n \"path\": \"netlify.toml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"599b99cc5700404fde316a7ede829776f23e7d45\",\n \"size\": 137,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/599b99cc5700404fde316a7ede829776f23e7d45\"\n },\n {\n \"path\": \"package.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9d777616438b90a18f1a4ebfd5f114b4c06c6f17\",\n \"size\": 6855,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9d777616438b90a18f1a4ebfd5f114b4c06c6f17\"\n },\n {\n \"path\": \"postcss-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d216501e9b351a72e00ba0b7459a6500e27e7da2\",\n \"size\": 703,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d216501e9b351a72e00ba0b7459a6500e27e7da2\"\n },\n {\n \"path\": \"renovate.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"dcc309398785698b8870545c32051a3d72dd8271\",\n \"size\": 460,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/dcc309398785698b8870545c32051a3d72dd8271\"\n },\n {\n \"path\": \"serverless-scripts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ee3701f2fbfc7196ba340f6481d1387d20527898\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ee3701f2fbfc7196ba340f6481d1387d20527898\"\n },\n {\n \"path\": \"serverless-single-page-app-plugin\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"08763fcfba643a06a452398517019bea4a5850ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/08763fcfba643a06a452398517019bea4a5850ba\"\n },\n {\n \"path\": \"serverless.yml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"20b22c5fad229f35d029bf6614d333d82fe8a987\",\n \"size\": 7803,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/20b22c5fad229f35d029bf6614d333d82fe8a987\"\n },\n {\n \"path\": \"src\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"8cdb35a88232c0f32f12f130c92c7cc55f97f471\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/8cdb35a88232c0f32f12f130c92c7cc55f97f471\"\n },\n {\n \"path\": \"static\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"53c6380a600a030d3722bff7ecde36f749fb6964\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/53c6380a600a030d3722bff7ecde36f749fb6964\"\n },\n {\n \"path\": \"utils\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"a592549c9f74db40b51efefcda2fd76810405f27\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/a592549c9f74db40b51efefcda2fd76810405f27\"\n },\n {\n \"path\": \"yarn.lock\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"475c9c1924ca752a0686303e2fdeb7b13ad75f57\",\n \"size\": 793903,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/475c9c1924ca752a0686303e2fdeb7b13ad75f57\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/trees/0294ef106c58743907a5c855da1eb0f87b0b6dfc?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:08:13 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3946", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"7d6ed23edb93fdd710127003bd99d3e3\"", + "Last-Modified": "Tue, 10 Sep 2019 14:07:57 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B89:3ED7B:12ABEF8:16AFA32:5D77AE4D", + "content-length": "831", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\n \"tree\": [\n {\n \"path\": \"pages\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\"\n },\n {\n \"path\": \"posts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"34892575e216c06e757093f036bd8e057c78a52f\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/34892575e216c06e757093f036bd8e057c78a52f\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/trees/34892575e216c06e757093f036bd8e057c78a52f?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:08:14 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3945", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"9485ec7bb0224060380d07454fc25c0a\"", + "Last-Modified": "Tue, 10 Sep 2019 14:07:57 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B8D:244E4:B1D4C7:D79026:5D77AE4D", + "content-length": "2030", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"34892575e216c06e757093f036bd8e057c78a52f\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/34892575e216c06e757093f036bd8e057c78a52f\",\n \"tree\": [\n {\n \"path\": \"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"size\": 1707,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\"\n },\n {\n \"path\": \"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"size\": 2565,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\"\n },\n {\n \"path\": \"2016-02-02---A-Brief-History-of-Typography.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"0eea554365f002d0f1572af9a58522d335a794d5\",\n \"size\": 2786,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\"\n },\n {\n \"path\": \"2017-18-08---The-Birth-of-Movable-Type.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"44f78c474d04273185a95821426f75affc9b0044\",\n \"size\": 16071,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\"\n },\n {\n \"path\": \"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"size\": 7465,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 200 + }, + { + "body": "{\"base_tree\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"tree\":[{\"path\":\"1970-01-01-first-title.md\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"a041245814892e3f73f63ca54333fda649b7fc0b\"}]}", + "method": "POST", + "url": "/repos/owner/repo/git/trees?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:08:14 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "2362", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3944", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"ec28ace732cd92ce67ac2d4bb75b73a8\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B8F:2B1F:126B5D1:167CA6E:5D77AE4E", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a041245814892e3f73f63ca54333fda649b7fc0b\",\n \"size\": 167,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b\"\n },\n {\n \"path\": \"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"size\": 1707,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\"\n },\n {\n \"path\": \"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"size\": 2565,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\"\n },\n {\n \"path\": \"2016-02-02---A-Brief-History-of-Typography.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"0eea554365f002d0f1572af9a58522d335a794d5\",\n \"size\": 2786,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\"\n },\n {\n \"path\": \"2017-18-08---The-Birth-of-Movable-Type.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"44f78c474d04273185a95821426f75affc9b0044\",\n \"size\": 16071,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\"\n },\n {\n \"path\": \"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"size\": 7465,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"base_tree\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\"tree\":[{\"path\":\"posts\",\"mode\":\"040000\",\"type\":\"tree\",\"sha\":\"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\"parentSha\":\"34892575e216c06e757093f036bd8e057c78a52f\"}]}", + "method": "POST", + "url": "/repos/owner/repo/git/trees?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:08:15 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "831", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3943", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"8a08d49c75e6316b7eedd97658f5dd3d\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B91:1510D:487017:58DBC5:5D77AE4F", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"tree\": [\n {\n \"path\": \"pages\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\"\n },\n {\n \"path\": \"posts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"base_tree\":\"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\"tree\":[{\"path\":\"content\",\"mode\":\"040000\",\"type\":\"tree\",\"sha\":\"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\"parentSha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\"}]}", + "method": "POST", + "url": "/repos/owner/repo/git/trees?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:08:16 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "11769", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3942", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"fb9e1158542ab7bb09a23b22e7f7dbd8\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/trees/daee8d5d15d144e8779955166a2afeccde2770e1", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B93:9D1E:4CFA52:5E35B2:5D77AE4F", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"daee8d5d15d144e8779955166a2afeccde2770e1\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/daee8d5d15d144e8779955166a2afeccde2770e1\",\n \"tree\": [\n {\n \"path\": \".circleci\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"e5e9af3301cac61f120b8e4d40b1733c7a45685a\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/e5e9af3301cac61f120b8e4d40b1733c7a45685a\"\n },\n {\n \"path\": \".eslintignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"80b4531b026d19f8fa589efd122e76199d23f967\",\n \"size\": 39,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/80b4531b026d19f8fa589efd122e76199d23f967\"\n },\n {\n \"path\": \".eslintrc.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"370684994aaed5b858da3a006f48cfa57e88fd27\",\n \"size\": 414,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/370684994aaed5b858da3a006f48cfa57e88fd27\"\n },\n {\n \"path\": \".flowconfig\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14aa2ac4cc0e15223ad98630a6f1325fc81f8043\",\n \"size\": 283,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14aa2ac4cc0e15223ad98630a6f1325fc81f8043\"\n },\n {\n \"path\": \".gitattributes\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"10a369ddf4f603337cabc6f21646508323941ce1\",\n \"size\": 135,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/10a369ddf4f603337cabc6f21646508323941ce1\"\n },\n {\n \"path\": \".github\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4ebeece548b52b20af59622354530a6d33b50b43\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4ebeece548b52b20af59622354530a6d33b50b43\"\n },\n {\n \"path\": \".gitignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"c071ba35b0e49899bab6d610a68eef667dbbf157\",\n \"size\": 169,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/c071ba35b0e49899bab6d610a68eef667dbbf157\"\n },\n {\n \"path\": \".prettierignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"393f050e123d998cf8c8b362ff95cc8ac4d250e5\",\n \"size\": 45,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/393f050e123d998cf8c8b362ff95cc8ac4d250e5\"\n },\n {\n \"path\": \".prettierrc\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e52ad05bb13b084d7949dd76e1b2517455162150\",\n \"size\": 223,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/e52ad05bb13b084d7949dd76e1b2517455162150\"\n },\n {\n \"path\": \".stylelintrc.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"4b4c9698d10d756f5faa025659b86375428ed0a7\",\n \"size\": 718,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/4b4c9698d10d756f5faa025659b86375428ed0a7\"\n },\n {\n \"path\": \".vscode\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"286e97ec0113ea8242b41ac222e2c3e8077e6f1e\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/286e97ec0113ea8242b41ac222e2c3e8077e6f1e\"\n },\n {\n \"path\": \"CHANGELOG.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"070a5d4f0eacd2dc0be81ae8996f8982de43046e\",\n \"size\": 2113,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/070a5d4f0eacd2dc0be81ae8996f8982de43046e\"\n },\n {\n \"path\": \"CODE_OF_CONDUCT.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"92bc7565ff0ee145a0041b5179a820f14f39ab22\",\n \"size\": 3355,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/92bc7565ff0ee145a0041b5179a820f14f39ab22\"\n },\n {\n \"path\": \"CONTRIBUTING.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"8552aa241254a61258e1ff9666ab36f32fb1e3b9\",\n \"size\": 3548,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/8552aa241254a61258e1ff9666ab36f32fb1e3b9\"\n },\n {\n \"path\": \"LICENSE\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"42d85938357b49977c126ca03b199129082d4fb8\",\n \"size\": 1091,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/42d85938357b49977c126ca03b199129082d4fb8\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"19df50a78654c8d757ca7f38447aa3d09c7abcce\",\n \"size\": 3698,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/19df50a78654c8d757ca7f38447aa3d09c7abcce\"\n },\n {\n \"path\": \"backend\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\"\n },\n {\n \"path\": \"config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"58afd573bbb69fcca000efd0f5d90b93c93a98dd\",\n \"size\": 853,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/58afd573bbb69fcca000efd0f5d90b93c93a98dd\"\n },\n {\n \"path\": \"content\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639\"\n },\n {\n \"path\": \"flow-typed\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"86c32fd6c3118be5e0dbbb231a834447357236c6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/86c32fd6c3118be5e0dbbb231a834447357236c6\"\n },\n {\n \"path\": \"flow\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"0af45ad00d155c8d8c7407d913ff85278244c9ce\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/0af45ad00d155c8d8c7407d913ff85278244c9ce\"\n },\n {\n \"path\": \"gatsby-browser.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9bd2c9dce175f04980e91cd9dc295a299e3cdb80\",\n \"size\": 90,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9bd2c9dce175f04980e91cd9dc295a299e3cdb80\"\n },\n {\n \"path\": \"gatsby-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"353a109dad62e3f25bf9f5e6a2167f21a6c8b459\",\n \"size\": 7228,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/353a109dad62e3f25bf9f5e6a2167f21a6c8b459\"\n },\n {\n \"path\": \"gatsby-node.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14a207883c2093d2cc071bc5a464e165bcc1fead\",\n \"size\": 409,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14a207883c2093d2cc071bc5a464e165bcc1fead\"\n },\n {\n \"path\": \"gatsby\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4f23c06cd1740bf78304d2c0b29bf6bfdf427981\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4f23c06cd1740bf78304d2c0b29bf6bfdf427981\"\n },\n {\n \"path\": \"jest\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\"\n },\n {\n \"path\": \"netlify.toml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"599b99cc5700404fde316a7ede829776f23e7d45\",\n \"size\": 137,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/599b99cc5700404fde316a7ede829776f23e7d45\"\n },\n {\n \"path\": \"package.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9d777616438b90a18f1a4ebfd5f114b4c06c6f17\",\n \"size\": 6855,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9d777616438b90a18f1a4ebfd5f114b4c06c6f17\"\n },\n {\n \"path\": \"postcss-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d216501e9b351a72e00ba0b7459a6500e27e7da2\",\n \"size\": 703,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d216501e9b351a72e00ba0b7459a6500e27e7da2\"\n },\n {\n \"path\": \"renovate.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"dcc309398785698b8870545c32051a3d72dd8271\",\n \"size\": 460,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/dcc309398785698b8870545c32051a3d72dd8271\"\n },\n {\n \"path\": \"serverless-scripts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ee3701f2fbfc7196ba340f6481d1387d20527898\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ee3701f2fbfc7196ba340f6481d1387d20527898\"\n },\n {\n \"path\": \"serverless-single-page-app-plugin\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"08763fcfba643a06a452398517019bea4a5850ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/08763fcfba643a06a452398517019bea4a5850ba\"\n },\n {\n \"path\": \"serverless.yml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"20b22c5fad229f35d029bf6614d333d82fe8a987\",\n \"size\": 7803,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/20b22c5fad229f35d029bf6614d333d82fe8a987\"\n },\n {\n \"path\": \"src\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"8cdb35a88232c0f32f12f130c92c7cc55f97f471\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/8cdb35a88232c0f32f12f130c92c7cc55f97f471\"\n },\n {\n \"path\": \"static\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"53c6380a600a030d3722bff7ecde36f749fb6964\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/53c6380a600a030d3722bff7ecde36f749fb6964\"\n },\n {\n \"path\": \"utils\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"a592549c9f74db40b51efefcda2fd76810405f27\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/a592549c9f74db40b51efefcda2fd76810405f27\"\n },\n {\n \"path\": \"yarn.lock\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"475c9c1924ca752a0686303e2fdeb7b13ad75f57\",\n \"size\": 793903,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/475c9c1924ca752a0686303e2fdeb7b13ad75f57\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"message\":\"Create Post “1970-01-01-first-title”\",\"tree\":\"daee8d5d15d144e8779955166a2afeccde2770e1\",\"parents\":[\"726172deae99c8a2cea4c71e734a02a793d4d9e5\"]}", + "method": "POST", + "url": "/repos/owner/repo/git/commits?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:08:17 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "1504", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3941", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"f516c1aa830df35c9076eb2b708249f0\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/commits/bc1cb417abb97e691ef06d9d237f4521d31e4ca1", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B95:2B19:AC4EE7:D1C3A0:5D77AE50", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"bc1cb417abb97e691ef06d9d237f4521d31e4ca1\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NTc1Mjc2OmJjMWNiNDE3YWJiOTdlNjkxZWYwNmQ5ZDIzN2Y0NTIxZDMxZTRjYTE=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/bc1cb417abb97e691ef06d9d237f4521d31e4ca1\",\n \"html_url\": \"https://github.com/owner/repo/commit/bc1cb417abb97e691ef06d9d237f4521d31e4ca1\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T14:08:16Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T14:08:16Z\"\n },\n \"tree\": {\n \"sha\": \"daee8d5d15d144e8779955166a2afeccde2770e1\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/daee8d5d15d144e8779955166a2afeccde2770e1\"\n },\n \"message\": \"Create Post “1970-01-01-first-title”\",\n \"parents\": [\n {\n \"sha\": \"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"html_url\": \"https://github.com/owner/repo/commit/726172deae99c8a2cea4c71e734a02a793d4d9e5\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "status": 201 + }, + { + "body": "{\"ref\":\"refs/heads/cms/1970-01-01-first-title\",\"sha\":\"bc1cb417abb97e691ef06d9d237f4521d31e4ca1\"}", + "method": "POST", + "url": "/repos/owner/repo/git/refs?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:08:18 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "518", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3940", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"d2a2013cce90c0636ce52a7b998addb1\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "Location": "https://api.github.com/repos/owner/repo/git/refs/heads/cms/1970-01-01-first-title", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B97:244EB:18647D0:1DA30A5:5D77AE51", + "connection": "keep-alive" + }, + "response": "{\n \"ref\": \"refs/heads/cms/1970-01-01-first-title\",\n \"node_id\": \"MDM6UmVmMjA3NTc1Mjc2OmNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxl\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/heads/cms/1970-01-01-first-title\",\n \"object\": {\n \"sha\": \"bc1cb417abb97e691ef06d9d237f4521d31e4ca1\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/bc1cb417abb97e691ef06d9d237f4521d31e4ca1\"\n }\n}\n", + "status": 201 + }, + { + "body": "{\"title\":\"Create Post “1970-01-01-first-title”\",\"body\":\"Automatically generated by Netlify CMS\",\"head\":\"cms/1970-01-01-first-title\",\"base\":\"master\"}", + "method": "POST", + "url": "/repos/owner/repo/pulls?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:08:19 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "21715", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3939", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"10e3bf7a4d9f374a8c2ecaaa0e4914b4\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/pulls/8", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B99:B4E0:1713626:1C17244:5D77AE52", + "connection": "keep-alive" + }, + "response": "{\n \"url\": \"https://api.github.com/repos/owner/repo/pulls/8\",\n \"id\": 316013926,\n \"node_id\": \"MDExOlB1bGxSZXF1ZXN0MzE2MDEzOTI2\",\n \"html_url\": \"https://github.com/owner/repo/pull/8\",\n \"diff_url\": \"https://github.com/owner/repo/pull/8.diff\",\n \"patch_url\": \"https://github.com/owner/repo/pull/8.patch\",\n \"issue_url\": \"https://api.github.com/repos/owner/repo/issues/8\",\n \"number\": 8,\n \"state\": \"open\",\n \"locked\": false,\n \"title\": \"Create Post “1970-01-01-first-title”\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Automatically generated by Netlify CMS\",\n \"created_at\": \"2019-09-10T14:08:19Z\",\n \"updated_at\": \"2019-09-10T14:08:19Z\",\n \"closed_at\": null,\n \"merged_at\": null,\n \"merge_commit_sha\": null,\n \"assignee\": null,\n \"assignees\": [\n\n ],\n \"requested_reviewers\": [\n\n ],\n \"requested_teams\": [\n\n ],\n \"labels\": [\n\n ],\n \"milestone\": null,\n \"commits_url\": \"https://api.github.com/repos/owner/repo/pulls/8/commits\",\n \"review_comments_url\": \"https://api.github.com/repos/owner/repo/pulls/8/comments\",\n \"review_comment_url\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/issues/8/comments\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/bc1cb417abb97e691ef06d9d237f4521d31e4ca1\",\n \"head\": {\n \"label\": \"owner:cms/1970-01-01-first-title\",\n \"ref\": \"cms/1970-01-01-first-title\",\n \"sha\": \"bc1cb417abb97e691ef06d9d237f4521d31e4ca1\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 207575276,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NzUyNzY=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-10T14:01:42Z\",\n \"updated_at\": \"2019-09-10T14:07:57Z\",\n \"pushed_at\": \"2019-09-10T14:08:17Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 1,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 1,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"base\": {\n \"label\": \"owner:master\",\n \"ref\": \"master\",\n \"sha\": \"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 207575276,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NzUyNzY=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-10T14:01:42Z\",\n \"updated_at\": \"2019-09-10T14:07:57Z\",\n \"pushed_at\": \"2019-09-10T14:08:17Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 1,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 1,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/8\"\n },\n \"html\": {\n \"href\": \"https://github.com/owner/repo/pull/8\"\n },\n \"issue\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/8\"\n },\n \"comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/8/comments\"\n },\n \"review_comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/8/comments\"\n },\n \"review_comment\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\"\n },\n \"commits\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/8/commits\"\n },\n \"statuses\": {\n \"href\": \"https://api.github.com/repos/owner/repo/statuses/bc1cb417abb97e691ef06d9d237f4521d31e4ca1\"\n }\n },\n \"author_association\": \"OWNER\",\n \"merged\": false,\n \"mergeable\": null,\n \"rebaseable\": null,\n \"mergeable_state\": \"unknown\",\n \"merged_by\": null,\n \"comments\": 0,\n \"review_comments\": 0,\n \"maintainer_can_modify\": false,\n \"commits\": 1,\n \"additions\": 11,\n \"deletions\": 0,\n \"changed_files\": 1\n}\n", + "status": 201 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:08:20 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3938", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"313f8bc10c21910e66194b0b4f6b7f1c\"", + "Last-Modified": "Tue, 10 Sep 2019 14:07:57 GMT", + "X-Poll-Interval": "300", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B9B:3ED7B:12AC862:16B05C4:5D77AE54", + "content-length": "484", + "connection": "keep-alive" + }, + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NTc1Mjc2OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"f55dbc8aebbc58b21bf47d992a1141068866973b\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/f55dbc8aebbc58b21bf47d992a1141068866973b\"\n }\n}\n", + "status": 200 + }, + { + "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjgsImhlYWQiOiJiYzFjYjQxN2FiYjk3ZTY5MWVmMDZkOWQyMzdmNDUyMWQzMWU0Y2ExIn0sInVzZXIiOiJvd25lciIsInN0YXR1cyI6ImRyYWZ0IiwiYnJhbmNoIjoiY21zLzE5NzAtMDEtMDEtZmlyc3QtdGl0bGUiLCJjb2xsZWN0aW9uIjoicG9zdHMiLCJjb21taXRNZXNzYWdlIjoiQ3JlYXRlIFBvc3Qg4oCcMTk3MC0wMS0wMS1maXJzdC10aXRsZeKAnSIsInRpdGxlIjoiZmlyc3QgdGl0bGUiLCJkZXNjcmlwdGlvbiI6ImZpcnN0IGRlc2NyaXB0aW9uIiwib2JqZWN0cyI6eyJlbnRyeSI6eyJwYXRoIjoiY29udGVudC9wb3N0cy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxlLm1kIiwic2hhIjoiYTA0MTI0NTgxNDg5MmUzZjczZjYzY2E1NDMzM2ZkYTY0OWI3ZmMwYiJ9LCJmaWxlcyI6W119LCJ0aW1lU3RhbXAiOiIxOTcwLTAxLTAxVDAwOjAwOjAwLjMwMFoifQ==\",\"encoding\":\"base64\"}", + "method": "POST", + "url": "/repos/owner/repo/git/blobs?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:08:21 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "207", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3937", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"e3e45ec160c9a33b849926987fc812db\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/blobs/7562834922e3879c752751c218d12efe731b62cb", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B9D:9D21:17941AC:1CBBFAD:5D77AE54", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"7562834922e3879c752751c218d12efe731b62cb\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/7562834922e3879c752751c218d12efe731b62cb\"\n}\n", + "status": 201 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/trees/f55dbc8aebbc58b21bf47d992a1141068866973b?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:08:21 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3936", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"35dad4415eb9573795f1045f4b921a46\"", + "Last-Modified": "Tue, 10 Sep 2019 14:07:57 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BA1:B4DC:AE7896:D4521B:5D77AE55", + "content-length": "1564", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"f55dbc8aebbc58b21bf47d992a1141068866973b\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/f55dbc8aebbc58b21bf47d992a1141068866973b\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d40f5ba5095bfea7ef60a90c29dfd2ab2d134b8d\",\n \"size\": 472,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d40f5ba5095bfea7ef60a90c29dfd2ab2d134b8d\"\n },\n {\n \"path\": \"1970-01-01-second-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"8b4aa8156d6c1a58ae781d64e9f01a233489c27e\",\n \"size\": 477,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/8b4aa8156d6c1a58ae781d64e9f01a233489c27e\"\n },\n {\n \"path\": \"1970-01-01-third-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a35fa423e583bf2886d81800136f323d0c0f5a28\",\n \"size\": 472,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a35fa423e583bf2886d81800136f323d0c0f5a28\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 200 + }, + { + "body": "{\"base_tree\":\"f55dbc8aebbc58b21bf47d992a1141068866973b\",\"tree\":[{\"path\":\"1970-01-01-first-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"7562834922e3879c752751c218d12efe731b62cb\"}]}", + "method": "POST", + "url": "/repos/owner/repo/git/trees?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:08:22 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "1564", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3935", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"68b4e32e74cabd030ef5c8f30d8c23fd\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/trees/63cc02ba1a38ac01b83ffb43b589397138fdb7e8", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BA3:B4DA:544BB7:66D737:5D77AE56", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"63cc02ba1a38ac01b83ffb43b589397138fdb7e8\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/63cc02ba1a38ac01b83ffb43b589397138fdb7e8\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"7562834922e3879c752751c218d12efe731b62cb\",\n \"size\": 462,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/7562834922e3879c752751c218d12efe731b62cb\"\n },\n {\n \"path\": \"1970-01-01-second-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"8b4aa8156d6c1a58ae781d64e9f01a233489c27e\",\n \"size\": 477,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/8b4aa8156d6c1a58ae781d64e9f01a233489c27e\"\n },\n {\n \"path\": \"1970-01-01-third-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a35fa423e583bf2886d81800136f323d0c0f5a28\",\n \"size\": 472,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a35fa423e583bf2886d81800136f323d0c0f5a28\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"message\":\"Updating “1970-01-01-first-title” metadata\",\"tree\":\"63cc02ba1a38ac01b83ffb43b589397138fdb7e8\",\"parents\":[\"f55dbc8aebbc58b21bf47d992a1141068866973b\"]}", + "method": "POST", + "url": "/repos/owner/repo/git/commits?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:08:23 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "1510", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3934", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"be28812ab2390887b38502c69d18b5d5\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/commits/277bea8590f367c8190e7c0f148f0e2891c26232", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BA5:2B24:1828DAB:1D5FECC:5D77AE56", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"277bea8590f367c8190e7c0f148f0e2891c26232\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NTc1Mjc2OjI3N2JlYTg1OTBmMzY3YzgxOTBlN2MwZjE0OGYwZTI4OTFjMjYyMzI=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/277bea8590f367c8190e7c0f148f0e2891c26232\",\n \"html_url\": \"https://github.com/owner/repo/commit/277bea8590f367c8190e7c0f148f0e2891c26232\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T14:08:23Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T14:08:23Z\"\n },\n \"tree\": {\n \"sha\": \"63cc02ba1a38ac01b83ffb43b589397138fdb7e8\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/63cc02ba1a38ac01b83ffb43b589397138fdb7e8\"\n },\n \"message\": \"Updating “1970-01-01-first-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"f55dbc8aebbc58b21bf47d992a1141068866973b\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/f55dbc8aebbc58b21bf47d992a1141068866973b\",\n \"html_url\": \"https://github.com/owner/repo/commit/f55dbc8aebbc58b21bf47d992a1141068866973b\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "status": 201 + }, + { + "body": "{\"sha\":\"277bea8590f367c8190e7c0f148f0e2891c26232\",\"force\":false}", + "method": "PATCH", + "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:08:24 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3933", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"1aaf4ccb2d2d35f69e7e839ddee19165\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BA6:B4DC:AE7A12:D453F8:5D77AE57", + "content-length": "484", + "connection": "keep-alive" + }, + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NTc1Mjc2OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"277bea8590f367c8190e7c0f148f0e2891c26232\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/277bea8590f367c8190e7c0f148f0e2891c26232\"\n }\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=cms/1970-01-01-first-title", + "headers": { + "Date": "Tue, 10 Sep 2019 14:08:25 GMT", + "Content-Type": "application/vnd.github.VERSION.raw; charset=utf-8", + "Content-Length": "167", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3932", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"a041245814892e3f73f63ca54333fda649b7fc0b\"", + "Last-Modified": "Tue, 10 Sep 2019 14:08:16 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BA8:2B24:1829131:1D60317:5D77AE58", + "connection": "keep-alive" + }, + "response": "---\ntemplate: post\ntitle: first title\ndraft: true\ndate: 1970-01-01T00:00:00.000Z\ndescription: first description\ncategory: first category\ntags:\n - tag1\n---\nfirst body\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=master", + "headers": { + "Date": "Tue, 10 Sep 2019 14:08:25 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "404 Not Found", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3931", + "X-RateLimit-Reset": "1568126651", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BA7:15110:18DFA3B:1E3A652:5D77AE58", + "content-length": "116", + "connection": "keep-alive" + }, + "response": "{\n \"message\": \"Not Found\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/#get-contents\"\n}\n", + "status": 404 + }, + { + "method": "GET", + "url": "/repos/owner/repo/commits/bc1cb417abb97e691ef06d9d237f4521d31e4ca1/status?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:08:26 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3930", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"9bce062841ddcae034709db5dcaeed1a\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo, repo:status", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BA9:15110:18DFBF9:1E3A866:5D77AE59", + "content-length": "6574", + "connection": "keep-alive" + }, + "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"bc1cb417abb97e691ef06d9d237f4521d31e4ca1\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 207575276,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NzUyNzY=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/bc1cb417abb97e691ef06d9d237f4521d31e4ca1\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/bc1cb417abb97e691ef06d9d237f4521d31e4ca1/status\"\n}\n", + "status": 200 + }, + { + "body": "{\"state\":\"closed\"}", + "method": "PATCH", + "url": "/repos/owner/repo/pulls/8?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:08:26 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3929", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"c79714473d6e8161d6d87fa6fea7e962\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BAA:2B24:182930D:1D60543:5D77AE59", + "content-length": "21771", + "connection": "keep-alive" + }, + "response": "{\n \"url\": \"https://api.github.com/repos/owner/repo/pulls/8\",\n \"id\": 316013926,\n \"node_id\": \"MDExOlB1bGxSZXF1ZXN0MzE2MDEzOTI2\",\n \"html_url\": \"https://github.com/owner/repo/pull/8\",\n \"diff_url\": \"https://github.com/owner/repo/pull/8.diff\",\n \"patch_url\": \"https://github.com/owner/repo/pull/8.patch\",\n \"issue_url\": \"https://api.github.com/repos/owner/repo/issues/8\",\n \"number\": 8,\n \"state\": \"closed\",\n \"locked\": false,\n \"title\": \"Create Post “1970-01-01-first-title”\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Automatically generated by Netlify CMS\",\n \"created_at\": \"2019-09-10T14:08:19Z\",\n \"updated_at\": \"2019-09-10T14:08:26Z\",\n \"closed_at\": \"2019-09-10T14:08:26Z\",\n \"merged_at\": null,\n \"merge_commit_sha\": \"cbbf2f0a2ef815b12b2db604d50b5350eee32542\",\n \"assignee\": null,\n \"assignees\": [\n\n ],\n \"requested_reviewers\": [\n\n ],\n \"requested_teams\": [\n\n ],\n \"labels\": [\n\n ],\n \"milestone\": null,\n \"commits_url\": \"https://api.github.com/repos/owner/repo/pulls/8/commits\",\n \"review_comments_url\": \"https://api.github.com/repos/owner/repo/pulls/8/comments\",\n \"review_comment_url\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/issues/8/comments\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/bc1cb417abb97e691ef06d9d237f4521d31e4ca1\",\n \"head\": {\n \"label\": \"owner:cms/1970-01-01-first-title\",\n \"ref\": \"cms/1970-01-01-first-title\",\n \"sha\": \"bc1cb417abb97e691ef06d9d237f4521d31e4ca1\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 207575276,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NzUyNzY=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-10T14:01:42Z\",\n \"updated_at\": \"2019-09-10T14:07:57Z\",\n \"pushed_at\": \"2019-09-10T14:08:24Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"base\": {\n \"label\": \"owner:master\",\n \"ref\": \"master\",\n \"sha\": \"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 207575276,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NzUyNzY=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-10T14:01:42Z\",\n \"updated_at\": \"2019-09-10T14:07:57Z\",\n \"pushed_at\": \"2019-09-10T14:08:24Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/8\"\n },\n \"html\": {\n \"href\": \"https://github.com/owner/repo/pull/8\"\n },\n \"issue\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/8\"\n },\n \"comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/8/comments\"\n },\n \"review_comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/8/comments\"\n },\n \"review_comment\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\"\n },\n \"commits\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/8/commits\"\n },\n \"statuses\": {\n \"href\": \"https://api.github.com/repos/owner/repo/statuses/bc1cb417abb97e691ef06d9d237f4521d31e4ca1\"\n }\n },\n \"author_association\": \"OWNER\",\n \"merged\": false,\n \"mergeable\": true,\n \"rebaseable\": true,\n \"mergeable_state\": \"clean\",\n \"merged_by\": null,\n \"comments\": 0,\n \"review_comments\": 0,\n \"maintainer_can_modify\": false,\n \"commits\": 1,\n \"additions\": 11,\n \"deletions\": 0,\n \"changed_files\": 1\n}\n", + "status": 200 + }, + { + "method": "DELETE", + "url": "/repos/owner/repo/git/refs/heads/cms%2F1970-01-01-first-title?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:08:27 GMT", + "Content-Type": "application/octet-stream", + "Server": "GitHub.com", + "Status": "204 No Content", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3928", + "X-RateLimit-Reset": "1568126651", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7BAC:2B15:4FA78D:60B687:5D77AE5B", + "content-length": "0", + "connection": "keep-alive" + }, + "response": null, + "status": 204 + }, + { + "method": "GET", + "url": "/repos/owner/repo/commits/bc1cb417abb97e691ef06d9d237f4521d31e4ca1/status?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:08:31 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3925", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"9bce062841ddcae034709db5dcaeed1a\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo, repo:status", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BBA:B4DE:12398CC:1631213:5D77AE5F", + "content-length": "6574", + "connection": "keep-alive" + }, + "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"bc1cb417abb97e691ef06d9d237f4521d31e4ca1\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 207575276,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NzUyNzY=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/bc1cb417abb97e691ef06d9d237f4521d31e4ca1\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/bc1cb417abb97e691ef06d9d237f4521d31e4ca1/status\"\n}\n", + "status": 200 + } +] \ No newline at end of file diff --git a/cypress/fixtures/Github Backend Editorial Workflow - REST API__can publish an editorial workflow entry.json b/cypress/fixtures/Github Backend Editorial Workflow - REST API__can publish an editorial workflow entry.json new file mode 100644 index 00000000..67ecfa0d --- /dev/null +++ b/cypress/fixtures/Github Backend Editorial Workflow - REST API__can publish an editorial workflow entry.json @@ -0,0 +1,1569 @@ +[ + { + "method": "GET", + "url": "/user?ts=0", + "headers": { + "Date": "Tue, 10 Sep 2019 14:04:06 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4202", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"fb606f875be1d23b690ea5f5e26b9fe9\"", + "Last-Modified": "Wed, 28 Aug 2019 04:48:54 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BCA:2B01:BE91:109AA:5D77AD55", + "content-length": "1321", + "connection": "keep-alive" + }, + "response": "{\"login\":\"owner\",\"id\":1,\"avatar_url\":\"https://avatars1.githubusercontent.com/u/7892489?v=4\",\"name\":\"owner\"}", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo?ts=0", + "headers": { + "Date": "Tue, 10 Sep 2019 14:04:06 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4201", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"848eb7578a2ba5640b8d914a648609a0\"", + "Last-Modified": "Tue, 10 Sep 2019 14:02:10 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BCC:9D21:177A151:1C9BCCC:5D77AD56", + "content-length": "7296", + "connection": "keep-alive" + }, + "response": "{\n \"id\": 207575276,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NzUyNzY=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-10T14:01:42Z\",\n \"updated_at\": \"2019-09-10T14:02:10Z\",\n \"pushed_at\": \"2019-09-10T14:03:57Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\",\n \"permissions\": {\n \"admin\": true,\n \"push\": true,\n \"pull\": true\n },\n \"allow_squash_merge\": true,\n \"allow_merge_commit\": true,\n \"allow_rebase_merge\": true,\n \"network_count\": 0,\n \"subscribers_count\": 1\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/content/posts?ts=0&ref=master", + "headers": { + "Date": "Tue, 10 Sep 2019 14:04:07 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4200", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"c5b7f6d674ba193bb7b4a5fcf4933034e1b7f2b7\"", + "Last-Modified": "Tue, 10 Sep 2019 14:02:10 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BCE:1510F:1265206:1654749:5D77AD57", + "content-length": "7422", + "connection": "keep-alive" + }, + "response": "[\n {\n \"name\": \"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"path\": \"content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"sha\": \"6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"size\": 1707,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"html\": \"https://github.com/owner/repo/blob/master/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md\"\n }\n },\n {\n \"name\": \"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"path\": \"content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"sha\": \"d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"size\": 2565,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"html\": \"https://github.com/owner/repo/blob/master/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\"\n }\n },\n {\n \"name\": \"2016-02-02---A-Brief-History-of-Typography.md\",\n \"path\": \"content/posts/2016-02-02---A-Brief-History-of-Typography.md\",\n \"sha\": \"0eea554365f002d0f1572af9a58522d335a794d5\",\n \"size\": 2786,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2016-02-02---A-Brief-History-of-Typography.md?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/content/posts/2016-02-02---A-Brief-History-of-Typography.md\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/content/posts/2016-02-02---A-Brief-History-of-Typography.md\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2016-02-02---A-Brief-History-of-Typography.md?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\",\n \"html\": \"https://github.com/owner/repo/blob/master/content/posts/2016-02-02---A-Brief-History-of-Typography.md\"\n }\n },\n {\n \"name\": \"2017-18-08---The-Birth-of-Movable-Type.md\",\n \"path\": \"content/posts/2017-18-08---The-Birth-of-Movable-Type.md\",\n \"sha\": \"44f78c474d04273185a95821426f75affc9b0044\",\n \"size\": 16071,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2017-18-08---The-Birth-of-Movable-Type.md?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/content/posts/2017-18-08---The-Birth-of-Movable-Type.md\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/content/posts/2017-18-08---The-Birth-of-Movable-Type.md\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2017-18-08---The-Birth-of-Movable-Type.md?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\",\n \"html\": \"https://github.com/owner/repo/blob/master/content/posts/2017-18-08---The-Birth-of-Movable-Type.md\"\n }\n },\n {\n \"name\": \"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"path\": \"content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"sha\": \"a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"size\": 7465,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"html\": \"https://github.com/owner/repo/blob/master/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md\"\n }\n }\n]\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/static/media?ts=0&ref=master", + "headers": { + "Date": "Tue, 10 Sep 2019 14:04:07 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4199", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"c5b7f6d674ba193bb7b4a5fcf4933034e1b7f2b7\"", + "Last-Modified": "Tue, 10 Sep 2019 14:02:10 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BD1:15110:18C476C:1E18ACF:5D77AD57", + "content-length": "12362", + "connection": "keep-alive" + }, + "response": "[\n {\n \"name\": \"42-line-bible.jpg\",\n \"path\": \"static/media/42-line-bible.jpg\",\n \"sha\": \"41c8d12f9ca5864beb827c381fbeff935209d5fb\",\n \"size\": 671242,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/static/media/42-line-bible.jpg?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/static/media/42-line-bible.jpg\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/41c8d12f9ca5864beb827c381fbeff935209d5fb\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/static/media/42-line-bible.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/static/media/42-line-bible.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/41c8d12f9ca5864beb827c381fbeff935209d5fb\",\n \"html\": \"https://github.com/owner/repo/blob/master/static/media/42-line-bible.jpg\"\n }\n },\n {\n \"name\": \"gutenberg.jpg\",\n \"path\": \"static/media/gutenberg.jpg\",\n \"sha\": \"04315e355873ea5d358d9c371c39a6845c1ae4ae\",\n \"size\": 155002,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/static/media/gutenberg.jpg?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/static/media/gutenberg.jpg\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/04315e355873ea5d358d9c371c39a6845c1ae4ae\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/static/media/gutenberg.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/static/media/gutenberg.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/04315e355873ea5d358d9c371c39a6845c1ae4ae\",\n \"html\": \"https://github.com/owner/repo/blob/master/static/media/gutenberg.jpg\"\n }\n },\n {\n \"name\": \"image-0.jpg\",\n \"path\": \"static/media/image-0.jpg\",\n \"sha\": \"b70a1b64fd4fa9635823231a0ba92c6dc9393f16\",\n \"size\": 660287,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/static/media/image-0.jpg?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/static/media/image-0.jpg\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/b70a1b64fd4fa9635823231a0ba92c6dc9393f16\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/static/media/image-0.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/static/media/image-0.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/b70a1b64fd4fa9635823231a0ba92c6dc9393f16\",\n \"html\": \"https://github.com/owner/repo/blob/master/static/media/image-0.jpg\"\n }\n },\n {\n \"name\": \"image-1.jpg\",\n \"path\": \"static/media/image-1.jpg\",\n \"sha\": \"05eedae372b829c62501ac751b2d42dcc432541b\",\n \"size\": 392411,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/static/media/image-1.jpg?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/static/media/image-1.jpg\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/05eedae372b829c62501ac751b2d42dcc432541b\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/static/media/image-1.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/static/media/image-1.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/05eedae372b829c62501ac751b2d42dcc432541b\",\n \"html\": \"https://github.com/owner/repo/blob/master/static/media/image-1.jpg\"\n }\n },\n {\n \"name\": \"image-2.jpg\",\n \"path\": \"static/media/image-2.jpg\",\n \"sha\": \"53845ed35faf8939bea242bb85eda7c324b1be0b\",\n \"size\": 99147,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/static/media/image-2.jpg?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/static/media/image-2.jpg\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/53845ed35faf8939bea242bb85eda7c324b1be0b\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/static/media/image-2.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/static/media/image-2.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/53845ed35faf8939bea242bb85eda7c324b1be0b\",\n \"html\": \"https://github.com/owner/repo/blob/master/static/media/image-2.jpg\"\n }\n },\n {\n \"name\": \"image-3.jpg\",\n \"path\": \"static/media/image-3.jpg\",\n \"sha\": \"8b2339d97069e826fae1f156212e40ae458454e3\",\n \"size\": 358022,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/static/media/image-3.jpg?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/static/media/image-3.jpg\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/8b2339d97069e826fae1f156212e40ae458454e3\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/static/media/image-3.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/static/media/image-3.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/8b2339d97069e826fae1f156212e40ae458454e3\",\n \"html\": \"https://github.com/owner/repo/blob/master/static/media/image-3.jpg\"\n }\n },\n {\n \"name\": \"image-4.jpg\",\n \"path\": \"static/media/image-4.jpg\",\n \"sha\": \"a8f6f21253a67a4284b5a953b2fe633d44152ecd\",\n \"size\": 114837,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/static/media/image-4.jpg?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/static/media/image-4.jpg\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/a8f6f21253a67a4284b5a953b2fe633d44152ecd\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/static/media/image-4.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/static/media/image-4.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/a8f6f21253a67a4284b5a953b2fe633d44152ecd\",\n \"html\": \"https://github.com/owner/repo/blob/master/static/media/image-4.jpg\"\n }\n },\n {\n \"name\": \"movable-type.jpg\",\n \"path\": \"static/media/movable-type.jpg\",\n \"sha\": \"57b4e925ea00bd8e195cf4418eb6eb2995ea5f10\",\n \"size\": 559028,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/static/media/movable-type.jpg?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/static/media/movable-type.jpg\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/57b4e925ea00bd8e195cf4418eb6eb2995ea5f10\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/static/media/movable-type.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/static/media/movable-type.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/57b4e925ea00bd8e195cf4418eb6eb2995ea5f10\",\n \"html\": \"https://github.com/owner/repo/blob/master/static/media/movable-type.jpg\"\n }\n },\n {\n \"name\": \"printing-press.jpg\",\n \"path\": \"static/media/printing-press.jpg\",\n \"sha\": \"d27f56c9437d9becd2f56cc627c9322c2f1f61f6\",\n \"size\": 279283,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/static/media/printing-press.jpg?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/static/media/printing-press.jpg\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/d27f56c9437d9becd2f56cc627c9322c2f1f61f6\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/static/media/printing-press.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/static/media/printing-press.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/d27f56c9437d9becd2f56cc627c9322c2f1f61f6\",\n \"html\": \"https://github.com/owner/repo/blob/master/static/media/printing-press.jpg\"\n }\n },\n {\n \"name\": \"type-through-time.jpg\",\n \"path\": \"static/media/type-through-time.jpg\",\n \"sha\": \"3f08366a805c51a60ec5056010f22de4ba08abaa\",\n \"size\": 117689,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/static/media/type-through-time.jpg?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/static/media/type-through-time.jpg\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/3f08366a805c51a60ec5056010f22de4ba08abaa\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/static/media/type-through-time.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/static/media/type-through-time.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/3f08366a805c51a60ec5056010f22de4ba08abaa\",\n \"html\": \"https://github.com/owner/repo/blob/master/static/media/type-through-time.jpg\"\n }\n }\n]\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043?ts=0", + "headers": { + "Date": "Tue, 10 Sep 2019 14:04:08 GMT", + "Content-Type": "text/plain; charset=iso-8859-1", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4197", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"b11610ec1fe2f13ce388952c3fdf3423\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BD2:244E7:11D6F0F:15C6183:5D77AD57", + "content-length": "1707", + "connection": "keep-alive" + }, + "response": "---\ntitle: Perfecting the Art of Perfection\ndate: \"2016-09-01T23:46:37.121Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Design Inspiration\"\ntags:\n - \"Handwriting\"\n - \"Learning to write\"\ndescription: \"Quisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\"\ncanonical: ''\n---\n\nQuisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\n\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-2.jpg)\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. \n\nPraesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9?ts=0", + "headers": { + "Date": "Tue, 10 Sep 2019 14:04:08 GMT", + "Content-Type": "text/plain; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4198", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"f9b97e27090d24f9b7c773ede73acd0c\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BD5:2B19:AB6A30:D0ABA2:5D77AD57", + "content-length": "2565", + "connection": "keep-alive" + }, + "response": "---\ntitle: The Origins of Social Stationery Lettering\ndate: \"2016-12-01T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Design Culture\"\ndescription: \"Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante.\"\ncanonical: ''\n---\n\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\n\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-3.jpg)\n\n## Header Level 2\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \n\n
\n\t
\n\t\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\n\t\t
\n\t\t\t— Aliquam tincidunt mauris eu risus.\n\t\t
\n\t
\n
\n\n### Header Level 3\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\n\n```css\n#header h1 a {\n display: block;\n width: 300px;\n height: 80px;\n}\n```\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5?ts=0", + "headers": { + "Date": "Tue, 10 Sep 2019 14:04:08 GMT", + "Content-Type": "text/plain; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4196", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"733ab4cffe213d8db3be254e7fee8f69\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BD6:15110:18C4841:1E18BE1:5D77AD57", + "content-length": "2786", + "connection": "keep-alive" + }, + "response": "---\ntitle: \"A Brief History of Typography\"\ndate: \"2016-02-02T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Design Inspiration\"\ntags:\n - \"Linotype\"\n - \"Monotype\"\n - \"History of typography\"\n - \"Helvetica\"\ndescription: \"Morbi in sem quis dui placerat ornare. Pellentesque odio nisi, euismod in, pharetra a, ultricies in, diam. Sed arcu. Cras consequat.\"\ncanonical: ''\n---\n\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\n\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-0.jpg)\n\n## Header Level 2\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \n\n
\n\t
\n\t\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\n\t\t
\n\t\t\t— Aliquam tincidunt mauris eu risus.\n\t\t
\n\t
\n
\n\n### Header Level 3\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\n\n```css\n#header h1 a {\n display: block;\n width: 300px;\n height: 80px;\n}\n```\n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044?ts=0", + "headers": { + "Date": "Tue, 10 Sep 2019 14:04:08 GMT", + "Content-Type": "text/plain; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4195", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"6e2453f34250f47bb0adc4ff2f6887a8\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BDC:1510F:12652C1:1654829:5D77AD57", + "content-length": "16071", + "connection": "keep-alive" + }, + "response": "---\ntitle: \"Johannes Gutenberg: The Birth of Movable Type\"\ndate: \"2017-08-18T22:12:03.284Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Typography\"\ntags:\n - \"Open source\"\n - \"Gatsby\"\n - \"Typography\"\ndescription: \"German inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\"\ncanonical: ''\n---\n\nGerman inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\n\n**Johannes Gensfleisch zur Laden zum Gutenberg** (c. 1398 – 1468) was a German blacksmith, goldsmith, printer, and publisher who introduced printing to Europe. His invention of mechanical movable type printing started the Printing Revolution and is widely regarded as the most important event of the modern period. It played a key role in the development of the Renaissance, Reformation, the Age of Enlightenment, and the Scientific revolution and laid the material basis for the modern knowledge-based economy and the spread of learning to the masses.\n\n
\n\t\"Gutenberg\"\n\t
Johannes Gutenberg
\n
\n\nWith his invention of the printing press, Gutenberg was the first European to use movable type printing, in around 1439. Among his many contributions to printing are: the invention of a process for mass-producing movable type; the use of oil-based ink; and the use of a wooden printing press similar to the agricultural screw presses of the period. His truly epochal invention was the combination of these elements into a practical system that allowed the mass production of printed books and was economically viable for printers and readers alike. Gutenberg's method for making type is traditionally considered to have included a type metal alloy and a hand mould for casting type. The alloy was a mixture of lead, tin, and antimony that melted at a relatively low temperature for faster and more economical casting, cast well, and created a durable type.\n\nIn Renaissance Europe, the arrival of mechanical movable type printing introduced the era of mass communication which permanently altered the structure of society. The relatively unrestricted circulation of information — including revolutionary ideas — transcended borders, captured the masses in the Reformation and threatened the power of political and religious authorities; the sharp increase in literacy broke the monopoly of the literate elite on education and learning and bolstered the emerging middle class. Across Europe, the increasing cultural self-awareness of its people led to the rise of proto-nationalism, accelerated by the flowering of the European vernacular languages to the detriment of Latin's status as lingua franca. In the 19th century, the replacement of the hand-operated Gutenberg-style press by steam-powered rotary presses allowed printing on an industrial scale, while Western-style printing was adopted all over the world, becoming practically the sole medium for modern bulk printing.\n\nThe use of movable type was a marked improvement on the handwritten manuscript, which was the existing method of book production in Europe, and upon woodblock printing, and revolutionized European book-making. Gutenberg's printing technology spread rapidly throughout Europe and later the world.\n\nHis major work, the Gutenberg Bible (also known as the 42-line Bible), has been acclaimed for its high aesthetic and technical quality.\n\n## Printing Press\n\nAround 1439, Gutenberg was involved in a financial misadventure making polished metal mirrors (which were believed to capture holy light from religious relics) for sale to pilgrims to Aachen: in 1439 the city was planning to exhibit its collection of relics from Emperor Charlemagne but the event was delayed by one year due to a severe flood and the capital already spent could not be repaid. When the question of satisfying the investors came up, Gutenberg is said to have promised to share a “secret”. It has been widely speculated that this secret may have been the idea of printing with movable type. Also around 1439–1440, the Dutch Laurens Janszoon Coster came up with the idea of printing. Legend has it that the idea came to him “like a ray of light”.\n\n
\n\t\"Early\n\t
Early wooden printing press as depicted in 1568.
\n
\n\nUntil at least 1444 he lived in Strasbourg, most likely in the St. Arbogast parish. It was in Strasbourg in 1440 that Gutenberg is said to have perfected and unveiled the secret of printing based on his research, mysteriously entitled Kunst und Aventur (art and enterprise). It is not clear what work he was engaged in, or whether some early trials with printing from movable type may have been conducted there. After this, there is a gap of four years in the record. In 1448, he was back in Mainz, where he took out a loan from his brother-in-law Arnold Gelthus, quite possibly for a printing press or related paraphernalia. By this date, Gutenberg may have been familiar with intaglio printing; it is claimed that he had worked on copper engravings with an artist known as the Master of Playing Cards.\n\nBy 1450, the press was in operation, and a German poem had been printed, possibly the first item to be printed there. Gutenberg was able to convince the wealthy moneylender Johann Fust for a loan of 800 guilders. Peter Schöffer, who became Fust’s son-in-law, also joined the enterprise. Schöffer had worked as a scribe in Paris and is believed to have designed some of the first typefaces.\n\n
\n\t
\n\t\t

All that has been written to me about that marvelous man seen at Frankfurt is true. I have not seen complete Bibles but only a number of quires of various books of the Bible. The script was very neat and legible, not at all difficult to follow—your grace would be able to read it without effort, and indeed without glasses.

\n\t\t
\n\t\t\t—Future pope Pius II in a letter to Cardinal Carvajal, March 1455\n\t\t
\n\t
\n
\n\nGutenberg's workshop was set up at Hof Humbrecht, a property belonging to a distant relative. It is not clear when Gutenberg conceived the Bible project, but for this he borrowed another 800 guilders from Fust, and work commenced in 1452. At the same time, the press was also printing other, more lucrative texts (possibly Latin grammars). There is also some speculation that there may have been two presses, one for the pedestrian texts, and one for the Bible. One of the profit-making enterprises of the new press was the printing of thousands of indulgences for the church, documented from 1454–55.\n\nIn 1455 Gutenberg completed his 42-line Bible, known as the Gutenberg Bible. About 180 copies were printed, most on paper and some on vellum.\n\n## Court Case\n\nSome time in 1456, there was a dispute between Gutenberg and Fust, and Fust demanded his money back, accusing Gutenberg of misusing the funds. Meanwhile the expenses of the Bible project had proliferated, and Gutenberg's debt now exceeded 20,000 guilders. Fust sued at the archbishop's court. A November 1455 legal document records that there was a partnership for a \"project of the books,\" the funds for which Gutenberg had used for other purposes, according to Fust. The court decided in favor of Fust, giving him control over the Bible printing workshop and half of all printed Bibles.\n\nThus Gutenberg was effectively bankrupt, but it appears he retained (or re-started) a small printing shop, and participated in the printing of a Bible in the town of Bamberg around 1459, for which he seems at least to have supplied the type. But since his printed books never carry his name or a date, it is difficult to be certain, and there is consequently a considerable scholarly debate on this subject. It is also possible that the large Catholicon dictionary, 300 copies of 754 pages, printed in Mainz in 1460, may have been executed in his workshop.\n\nMeanwhile, the Fust–Schöffer shop was the first in Europe to bring out a book with the printer's name and date, the Mainz Psalter of August 1457, and while proudly proclaiming the mechanical process by which it had been produced, it made no mention of Gutenberg.\n\n## Later Life\n\nIn 1462, during a conflict between two archbishops, Mainz was sacked by archbishop Adolph von Nassau, and Gutenberg was exiled. An old man by now, he moved to Eltville where he may have initiated and supervised a new printing press belonging to the brothers Bechtermünze.\n\nIn January 1465, Gutenberg's achievements were recognized and he was given the title Hofmann (gentleman of the court) by von Nassau. This honor included a stipend, an annual court outfit, as well as 2,180 litres of grain and 2,000 litres of wine tax-free. It is believed he may have moved back to Mainz around this time, but this is not certain.\n\n***\n\nGutenberg died in 1468 and was buried in the Franciscan church at Mainz, his contributions largely unknown. This church and the cemetery were later destroyed, and Gutenberg's grave is now lost.\n\nIn 1504, he was mentioned as the inventor of typography in a book by Professor Ivo Wittig. It was not until 1567 that the first portrait of Gutenberg, almost certainly an imaginary reconstruction, appeared in Heinrich Pantaleon's biography of famous Germans.\n\n## Printing Method With Movable Type\n\nGutenberg's early printing process, and what tests he may have made with movable type, are not known in great detail. His later Bibles were printed in such a way as to have required large quantities of type, some estimates suggesting as many as 100,000 individual sorts. Setting each page would take, perhaps, half a day, and considering all the work in loading the press, inking the type, pulling the impressions, hanging up the sheets, distributing the type, etc., it is thought that the Gutenberg–Fust shop might have employed as many as 25 craftsmen.\n\n![Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5](/media/movable-type.jpg)\n\n*Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5*\n\nGutenberg's technique of making movable type remains unclear. In the following decades, punches and copper matrices became standardized in the rapidly disseminating printing presses across Europe. Whether Gutenberg used this sophisticated technique or a somewhat primitive version has been the subject of considerable debate.\n\nIn the standard process of making type, a hard metal punch (made by punchcutting, with the letter carved back to front) is hammered into a softer copper bar, creating a matrix. This is then placed into a hand-held mould and a piece of type, or \"sort\", is cast by filling the mould with molten type-metal; this cools almost at once, and the resulting piece of type can be removed from the mould. The matrix can be reused to create hundreds, or thousands, of identical sorts so that the same character appearing anywhere within the book will appear very uniform, giving rise, over time, to the development of distinct styles of typefaces or fonts. After casting, the sorts are arranged into type-cases, and used to make up pages which are inked and printed, a procedure which can be repeated hundreds, or thousands, of times. The sorts can be reused in any combination, earning the process the name of “movable type”.\n\nThe invention of the making of types with punch, matrix and mold has been widely attributed to Gutenberg. However, recent evidence suggests that Gutenberg's process was somewhat different. If he used the punch and matrix approach, all his letters should have been nearly identical, with some variations due to miscasting and inking. However, the type used in Gutenberg's earliest work shows other variations.\n\n
\n\t
\n\t\t

It is a press, certainly, but a press from which shall flow in inexhaustible streams… Through it, god will spread his word.

\n\t\t
\n\t\t\t—Johannes Gutenberg\n\t\t
\n\t
\n
\n\nIn 2001, the physicist Blaise Agüera y Arcas and Princeton librarian Paul Needham, used digital scans of a Papal bull in the Scheide Library, Princeton, to carefully compare the same letters (types) appearing in different parts of the printed text. The irregularities in Gutenberg's type, particularly in simple characters such as the hyphen, suggested that the variations could not have come from either ink smear or from wear and damage on the pieces of metal on the types themselves. While some identical types are clearly used on other pages, other variations, subjected to detailed image analysis, suggested that they could not have been produced from the same matrix. Transmitted light pictures of the page also appeared to reveal substructures in the type that could not arise from traditional punchcutting techniques. They hypothesized that the method may have involved impressing simple shapes to create alphabets in “cuneiform” style in a matrix made of some soft material, perhaps sand. Casting the type would destroy the mould, and the matrix would need to be recreated to make each additional sort. This could explain the variations in the type, as well as the substructures observed in the printed images.\n\nThus, they feel that “the decisive factor for the birth of typography”, the use of reusable moulds for casting type, might have been a more progressive process than was previously thought. They suggest that the additional step of using the punch to create a mould that could be reused many times was not taken until twenty years later, in the 1470s. Others have not accepted some or all of their suggestions, and have interpreted the evidence in other ways, and the truth of the matter remains very uncertain.\n\nA 1568 history by Hadrianus Junius of Holland claims that the basic idea of the movable type came to Gutenberg from Laurens Janszoon Coster via Fust, who was apprenticed to Coster in the 1430s and may have brought some of his equipment from Haarlem to Mainz. While Coster appears to have experimented with moulds and castable metal type, there is no evidence that he had actually printed anything with this technology. He was an inventor and a goldsmith. However, there is one indirect supporter of the claim that Coster might be the inventor. The author of the Cologne Chronicle of 1499 quotes Ulrich Zell, the first printer of Cologne, that printing was performed in Mainz in 1450, but that some type of printing of lower quality had previously occurred in the Netherlands. However, the chronicle does not mention the name of Coster, while it actually credits Gutenberg as the \"first inventor of printing\" in the very same passage (fol. 312). The first securely dated book by Dutch printers is from 1471, and the Coster connection is today regarded as a mere legend.\n\nThe 19th century printer and typefounder Fournier Le Jeune suggested that Gutenberg might not have been using type cast with a reusable matrix, but possibly wooden types that were carved individually. A similar suggestion was made by Nash in 2004. This remains possible, albeit entirely unproven.\n\nIt has also been questioned whether Gutenberg used movable types at all. In 2004, Italian professor Bruno Fabbiani claimed that examination of the 42-line Bible revealed an overlapping of letters, suggesting that Gutenberg did not in fact use movable type (individual cast characters) but rather used whole plates made from a system somewhat like a modern typewriter, whereby the letters were stamped successively into the plate and then printed. However, most specialists regard the occasional overlapping of type as caused by paper movement over pieces of type of slightly unequal height.", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774?ts=0", + "headers": { + "Date": "Tue, 10 Sep 2019 14:04:08 GMT", + "Content-Type": "text/plain; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4194", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"d2bb4e67afce9cad20457cc0c72b8a41\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BE2:244EB:184B5A7:1D83CCF:5D77AD58", + "content-length": "7465", + "connection": "keep-alive" + }, + "response": "---\ntitle: Humane Typography in the Digital Age\ndate: \"2017-08-19T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Typography\"\ntags:\n - \"Design\"\n - \"Typography\"\n - \"Web Development\"\ndescription: \"An Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\"\ncanonical: ''\n---\n\n- [The first transition](#the-first-transition)\n- [The digital age](#the-digital-age)\n- [Loss of humanity through transitions](#loss-of-humanity-through-transitions)\n- [Chasing perfection](#chasing-perfection)\n\nAn Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\n\nThe typography of this industrial age was no longer handcrafted. Mass production and profit became more important. Quantity mattered more than the quality. The books and printed works in general lost a part of its humanity. The typefaces were not produced by craftsmen anymore. It was the machines printing and tying the books together now. The craftsmen had to let go of their craft and became a cog in the process. An extension of the industrial machine.\n\nBut the victory of the industrialism didn’t mean that the craftsmen were completely extinct. The two worlds continued to coexist independently. Each recognising the good in the other — the power of industrialism and the humanity of craftsmanship. This was the second transition that would strip typography of a part of its humanity. We have to go 500 years back in time to meet the first one.\n\n## The first transition\n\nA similar conflict emerged after the invention of the first printing press in Europe. Johannes Gutenberg invented movable type and used it to produce different compositions. His workshop could print up to 240 impressions per hour. Until then, the books were being copied by hand. All the books were handwritten and decorated with hand drawn ornaments and figures. A process of copying a book was long but each book, even a copy, was a work of art.\n\nThe first printed books were, at first, perceived as inferior to the handwritten ones. They were smaller and cheaper to produce. Movable type provided the printers with flexibility that allowed them to print books in languages other than Latin. Gill describes the transition to industrialism as something that people needed and wanted. Something similar happened after the first printed books emerged. People wanted books in a language they understood and they wanted books they could take with them. They were hungry for knowledge and printed books satisfied this hunger.\n\n![42-line-bible.jpg](/media/42-line-bible.jpg)\n\n*The 42–Line Bible, printed by Gutenberg.*\n\nBut, through this transition, the book lost a large part of its humanity. The machine took over most of the process but craftsmanship was still a part of it. The typefaces were cut manually by the first punch cutters. The paper was made by hand. The illustrations and ornaments were still being hand drawn. These were the remains of the craftsmanship that went almost extinct in the times of Eric Gill.\n\n## The digital age\n\nThe first transition took away a large part of humanity from written communication. Industrialisation, the second transition described by Eric Gill, took away most of what was left. But it’s the third transition that stripped it naked. Typefaces are faceless these days. They’re just fonts on our computers. Hardly anyone knows their stories. Hardly anyone cares. Flicking through thousands of typefaces and finding the “right one” is a matter of minutes.\n\n> In the new computer age the proliferation of typefaces and type manipulations represents a new level of visual pollution threatening our culture. Out of thousands of typefaces, all we need are a few basic ones, and trash the rest.\n>\n— Massimo Vignelli\n\nTypography is not about typefaces. It’s not about what looks best, it’s about what feels right. What communicates the message best. Typography, in its essence, is about the message. “Typographical design should perform optically what the speaker creates through voice and gesture of his thoughts.”, as El Lissitzky, a famous Russian typographer, put it.\n\n## Loss of humanity through transitions\n\nEach transition took away a part of humanity from written language. Handwritten books being the most humane form and the digital typefaces being the least. Overuse of Helvetica is a good example. Messages are being told in a typeface just because it’s a safe option. It’s always there. Everyone knows it but yet, nobody knows it. Stop someone on the street and ask him what Helvetica is? Ask a designer the same question. Ask him where it came from, when, why and who designed it. Most of them will fail to answer these questions. Most of them used it in their precious projects but they still don’t spot it in the street.\n\n
\n\t
\n\t\t

Knowledge of the quality of a typeface is of the greatest importance for the functional, aesthetic and psychological effect.

\n\t\t
\n\t\t\t— Josef Mueller-Brockmann\n\t\t
\n\t
\n
\n\nTypefaces don’t look handmade these days. And that’s all right. They don’t have to. Industrialism took that away from them and we’re fine with it. We’ve traded that part of humanity for a process that produces more books that are easier to read. That can’t be bad. And it isn’t.\n\n> Humane typography will often be comparatively rough and even uncouth; but while a certain uncouthness does not seriously matter in humane works, uncouthness has no excuse whatever in the productions of the machine.\n>\n> — Eric Gill\n\nWe’ve come close to “perfection” in the last five centuries. The letters are crisp and without rough edges. We print our compositions with high–precision printers on a high quality, machine made paper.\n\n![type-through-time.jpg](/media/type-through-time.jpg)\n\n*Type through 5 centuries.*\n\nWe lost a part of ourselves because of this chase after perfection. We forgot about the craftsmanship along the way. And the worst part is that we don’t care. The transition to the digital age made that clear. We choose typefaces like clueless zombies. There’s no meaning in our work. Type sizes, leading, margins… It’s all just a few clicks or lines of code. The message isn’t important anymore. There’s no more “why” behind the “what”.\n\n## Chasing perfection\n\nHuman beings aren’t perfect. Perfection is something that will always elude us. There will always be a small part of humanity in everything we do. No matter how small that part, we should make sure that it transcends the limits of the medium. We have to think about the message first. What typeface should we use and why? Does the typeface match the message and what we want to communicate with it? What will be the leading and why? Will there be more typefaces in our design? On what ground will they be combined? What makes our design unique and why? This is the part of humanity that is left in typography. It might be the last part. Are we really going to give it up?\n\n*Originally published by [Matej Latin](http://matejlatin.co.uk/) on [Medium](https://medium.com/design-notes/humane-typography-in-the-digital-age-9bd5c16199bd?ref=webdesignernews.com#.lygo82z0x).*", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/1970-01-01-first-title.json?ts=300&ref=refs/meta/_netlify_cms", + "headers": { + "Date": "Tue, 10 Sep 2019 14:04:12 GMT", + "Content-Type": "application/vnd.github.VERSION.raw; charset=utf-8", + "Content-Length": "462", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4193", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"b5fc06e89712b37ab1037186fbf3c093b1de020b\"", + "Last-Modified": "Tue, 10 Sep 2019 14:03:49 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BE4:3ED82:18BF22E:1E1CCA3:5D77AD5B", + "connection": "keep-alive" + }, + "response": "{\"type\":\"PR\",\"pr\":{\"number\":2,\"head\":\"aa841468a3b89fcf33dbafa7fdec1f39515773b6\"},\"user\":\"owner\",\"status\":\"draft\",\"branch\":\"cms/1970-01-01-first-title\",\"collection\":\"posts\",\"commitMessage\":\"Create Post “1970-01-01-first-title”\",\"title\":\"first title\",\"description\":\"first description\",\"objects\":{\"entry\":{\"path\":\"content/posts/1970-01-01-first-title.md\",\"sha\":\"a041245814892e3f73f63ca54333fda649b7fc0b\"},\"files\":[]},\"timeStamp\":\"1970-01-01T00:00:00.600Z\"}", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=cms/1970-01-01-first-title", + "headers": { + "Date": "Tue, 10 Sep 2019 14:04:13 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "404 Not Found", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4192", + "X-RateLimit-Reset": "1568126651", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BE8:15110:18C512B:1E196CF:5D77AD5C", + "content-length": "148", + "connection": "keep-alive" + }, + "response": "{\n \"message\": \"No commit found for the ref cms/1970-01-01-first-title\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/\"\n}\n", + "status": 404 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=master", + "headers": { + "Date": "Tue, 10 Sep 2019 14:04:13 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "404 Not Found", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4191", + "X-RateLimit-Reset": "1568126651", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BE6:2B19:AB6EA4:D0B10C:5D77AD5C", + "content-length": "116", + "connection": "keep-alive" + }, + "response": "{\n \"message\": \"Not Found\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/#get-contents\"\n}\n", + "status": 404 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=master", + "headers": { + "Date": "Tue, 10 Sep 2019 14:04:13 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "404 Not Found", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4190", + "X-RateLimit-Reset": "1568126651", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BEC:9D21:177ADA0:1C9CBC1:5D77AD5D", + "content-length": "116", + "connection": "keep-alive" + }, + "response": "{\n \"message\": \"Not Found\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/#get-contents\"\n}\n", + "status": 404 + }, + { + "body": "{\"content\":\"LS0tCnRlbXBsYXRlOiBwb3N0CnRpdGxlOiBmaXJzdCB0aXRsZQpkcmFmdDogdHJ1ZQpkYXRlOiAxOTcwLTAxLTAxVDAwOjAwOjAwLjAwMFoKZGVzY3JpcHRpb246IGZpcnN0IGRlc2NyaXB0aW9uCmNhdGVnb3J5OiBmaXJzdCBjYXRlZ29yeQp0YWdzOgogIC0gdGFnMQotLS0KZmlyc3QgYm9keQo=\",\"encoding\":\"base64\"}", + "method": "POST", + "url": "/repos/owner/repo/git/blobs?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:04:14 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "207", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4189", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"cb99eafe6ceb0316a6aa5e0717f30f21\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BEE:1510F:1265B06:165525B:5D77AD5E", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"a041245814892e3f73f63ca54333fda649b7fc0b\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b\"\n}\n", + "status": 201 + }, + { + "method": "GET", + "url": "/repos/owner/repo/branches/master?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:04:15 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4188", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"80c77d2f81ab07f51b5d129d0995389d\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BF0:2B1F:12588E4:1665154:5D77AD5E", + "content-length": "5961", + "connection": "keep-alive" + }, + "response": "{\n \"name\": \"master\",\n \"commit\": {\n \"sha\": \"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NTc1Mjc2OjcyNjE3MmRlYWU5OWM4YTJjZWE0YzcxZTczNGEwMmE3OTNkNGQ5ZTU=\",\n \"commit\": {\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-08T09:08:14Z\"\n },\n \"committer\": {\n \"name\": \"GitHub\",\n \"email\": \"noreply@github.com\",\n \"date\": \"2019-09-08T09:08:14Z\"\n },\n \"message\": \"Merge pull request #10 from owner/chore/update_dependencies\\n\\nChore: update dependencies\",\n \"tree\": {\n \"sha\": \"c5b7f6d674ba193bb7b4a5fcf4933034e1b7f2b7\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/c5b7f6d674ba193bb7b4a5fcf4933034e1b7f2b7\"\n },\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"comment_count\": 0,\n \"verification\": {\n \"verified\": true,\n \"reason\": \"valid\",\n \"signature\": \"-----BEGIN PGP SIGNATURE-----\\n\\nwsBcBAABCAAQBQJddMT+CRBK7hj4Ov3rIwAAdHIIABWcobVYZFMuqSPezceRaKDr\\npXGqxvB3WLiIrvsQiBz2si9SvufXxLUdq72iaYTbXMCqIAAIBDNwHLltOKcbUF9J\\nKa8pD6cq7jpNyZfhI8xlapMwEZPu53as0tSvwdOnl/0iL+WYjUZUFQR+vrWEmllu\\nhIES9QxU2nk5zcS7t8sFRA+sJdll8GzzhoWYkpw3wgqpxCzJdf5HJS0tWyVCZM5U\\nCgSpSgTvz9bALnQxu7YVrfLGEvi8S7LaOEz5HQc+TV1hNR2dfl5hhiHhWQ1Rsx5w\\nUECV01vItNWhx2dyMn77hIu/G+bTH89WZDU+CmifsNkmvkq90fk4eNt8Hg1mxn4=\\n=6ayM\\n-----END PGP SIGNATURE-----\\n\",\n \"payload\": \"tree c5b7f6d674ba193bb7b4a5fcf4933034e1b7f2b7\\nparent 8ade583d7c02e7769dd685ca64c10851c09f51cf\\nparent 4940957ff42b034d8c47d64b383c34548a34fbb5\\nauthor owner 1567933694 +0300\\ncommitter GitHub 1567933694 +0300\\n\\nMerge pull request #10 from owner/chore/update_dependencies\\n\\nChore: update dependencies\"\n }\n },\n \"url\": \"https://api.github.com/repos/owner/repo/commits/726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"html_url\": \"https://github.com/owner/repo/commit/726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/commits/726172deae99c8a2cea4c71e734a02a793d4d9e5/comments\",\n \"author\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"committer\": {\n \"login\": \"web-flow\",\n \"id\": 19864447,\n \"node_id\": \"MDQ6VXNlcjE5ODY0NDQ3\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/web-flow\",\n \"html_url\": \"https://github.com/web-flow\",\n \"followers_url\": \"https://api.github.com/users/web-flow/followers\",\n \"following_url\": \"https://api.github.com/users/web-flow/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/web-flow/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/web-flow/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/web-flow/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/web-flow/orgs\",\n \"repos_url\": \"https://api.github.com/users/web-flow/repos\",\n \"events_url\": \"https://api.github.com/users/web-flow/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/web-flow/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"parents\": [\n {\n \"sha\": \"8ade583d7c02e7769dd685ca64c10851c09f51cf\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/8ade583d7c02e7769dd685ca64c10851c09f51cf\",\n \"html_url\": \"https://github.com/owner/repo/commit/8ade583d7c02e7769dd685ca64c10851c09f51cf\"\n },\n {\n \"sha\": \"4940957ff42b034d8c47d64b383c34548a34fbb5\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/4940957ff42b034d8c47d64b383c34548a34fbb5\",\n \"html_url\": \"https://github.com/owner/repo/commit/4940957ff42b034d8c47d64b383c34548a34fbb5\"\n }\n ]\n },\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/branches/master\",\n \"html\": \"https://github.com/owner/repo/tree/master\"\n },\n \"protected\": false,\n \"protection\": {\n \"enabled\": false,\n \"required_status_checks\": {\n \"enforcement_level\": \"off\",\n \"contexts\": [\n\n ]\n }\n },\n \"protection_url\": \"https://api.github.com/repos/owner/repo/branches/master/protection\"\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/trees/726172deae99c8a2cea4c71e734a02a793d4d9e5?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:04:15 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4187", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"7a035f3359b977cd956a086f27ff138d\"", + "Last-Modified": "Tue, 10 Sep 2019 14:02:10 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BF2:1510F:1265CC8:1655493:5D77AD5F", + "content-length": "11769", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"tree\": [\n {\n \"path\": \".circleci\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"e5e9af3301cac61f120b8e4d40b1733c7a45685a\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/e5e9af3301cac61f120b8e4d40b1733c7a45685a\"\n },\n {\n \"path\": \".eslintignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"80b4531b026d19f8fa589efd122e76199d23f967\",\n \"size\": 39,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/80b4531b026d19f8fa589efd122e76199d23f967\"\n },\n {\n \"path\": \".eslintrc.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"370684994aaed5b858da3a006f48cfa57e88fd27\",\n \"size\": 414,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/370684994aaed5b858da3a006f48cfa57e88fd27\"\n },\n {\n \"path\": \".flowconfig\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14aa2ac4cc0e15223ad98630a6f1325fc81f8043\",\n \"size\": 283,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14aa2ac4cc0e15223ad98630a6f1325fc81f8043\"\n },\n {\n \"path\": \".gitattributes\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"10a369ddf4f603337cabc6f21646508323941ce1\",\n \"size\": 135,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/10a369ddf4f603337cabc6f21646508323941ce1\"\n },\n {\n \"path\": \".github\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4ebeece548b52b20af59622354530a6d33b50b43\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4ebeece548b52b20af59622354530a6d33b50b43\"\n },\n {\n \"path\": \".gitignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"c071ba35b0e49899bab6d610a68eef667dbbf157\",\n \"size\": 169,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/c071ba35b0e49899bab6d610a68eef667dbbf157\"\n },\n {\n \"path\": \".prettierignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"393f050e123d998cf8c8b362ff95cc8ac4d250e5\",\n \"size\": 45,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/393f050e123d998cf8c8b362ff95cc8ac4d250e5\"\n },\n {\n \"path\": \".prettierrc\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e52ad05bb13b084d7949dd76e1b2517455162150\",\n \"size\": 223,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/e52ad05bb13b084d7949dd76e1b2517455162150\"\n },\n {\n \"path\": \".stylelintrc.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"4b4c9698d10d756f5faa025659b86375428ed0a7\",\n \"size\": 718,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/4b4c9698d10d756f5faa025659b86375428ed0a7\"\n },\n {\n \"path\": \".vscode\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"286e97ec0113ea8242b41ac222e2c3e8077e6f1e\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/286e97ec0113ea8242b41ac222e2c3e8077e6f1e\"\n },\n {\n \"path\": \"CHANGELOG.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"070a5d4f0eacd2dc0be81ae8996f8982de43046e\",\n \"size\": 2113,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/070a5d4f0eacd2dc0be81ae8996f8982de43046e\"\n },\n {\n \"path\": \"CODE_OF_CONDUCT.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"92bc7565ff0ee145a0041b5179a820f14f39ab22\",\n \"size\": 3355,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/92bc7565ff0ee145a0041b5179a820f14f39ab22\"\n },\n {\n \"path\": \"CONTRIBUTING.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"8552aa241254a61258e1ff9666ab36f32fb1e3b9\",\n \"size\": 3548,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/8552aa241254a61258e1ff9666ab36f32fb1e3b9\"\n },\n {\n \"path\": \"LICENSE\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"42d85938357b49977c126ca03b199129082d4fb8\",\n \"size\": 1091,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/42d85938357b49977c126ca03b199129082d4fb8\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"19df50a78654c8d757ca7f38447aa3d09c7abcce\",\n \"size\": 3698,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/19df50a78654c8d757ca7f38447aa3d09c7abcce\"\n },\n {\n \"path\": \"backend\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\"\n },\n {\n \"path\": \"config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"58afd573bbb69fcca000efd0f5d90b93c93a98dd\",\n \"size\": 853,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/58afd573bbb69fcca000efd0f5d90b93c93a98dd\"\n },\n {\n \"path\": \"content\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/0294ef106c58743907a5c855da1eb0f87b0b6dfc\"\n },\n {\n \"path\": \"flow-typed\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"86c32fd6c3118be5e0dbbb231a834447357236c6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/86c32fd6c3118be5e0dbbb231a834447357236c6\"\n },\n {\n \"path\": \"flow\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"0af45ad00d155c8d8c7407d913ff85278244c9ce\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/0af45ad00d155c8d8c7407d913ff85278244c9ce\"\n },\n {\n \"path\": \"gatsby-browser.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9bd2c9dce175f04980e91cd9dc295a299e3cdb80\",\n \"size\": 90,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9bd2c9dce175f04980e91cd9dc295a299e3cdb80\"\n },\n {\n \"path\": \"gatsby-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"353a109dad62e3f25bf9f5e6a2167f21a6c8b459\",\n \"size\": 7228,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/353a109dad62e3f25bf9f5e6a2167f21a6c8b459\"\n },\n {\n \"path\": \"gatsby-node.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14a207883c2093d2cc071bc5a464e165bcc1fead\",\n \"size\": 409,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14a207883c2093d2cc071bc5a464e165bcc1fead\"\n },\n {\n \"path\": \"gatsby\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4f23c06cd1740bf78304d2c0b29bf6bfdf427981\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4f23c06cd1740bf78304d2c0b29bf6bfdf427981\"\n },\n {\n \"path\": \"jest\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\"\n },\n {\n \"path\": \"netlify.toml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"599b99cc5700404fde316a7ede829776f23e7d45\",\n \"size\": 137,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/599b99cc5700404fde316a7ede829776f23e7d45\"\n },\n {\n \"path\": \"package.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9d777616438b90a18f1a4ebfd5f114b4c06c6f17\",\n \"size\": 6855,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9d777616438b90a18f1a4ebfd5f114b4c06c6f17\"\n },\n {\n \"path\": \"postcss-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d216501e9b351a72e00ba0b7459a6500e27e7da2\",\n \"size\": 703,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d216501e9b351a72e00ba0b7459a6500e27e7da2\"\n },\n {\n \"path\": \"renovate.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"dcc309398785698b8870545c32051a3d72dd8271\",\n \"size\": 460,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/dcc309398785698b8870545c32051a3d72dd8271\"\n },\n {\n \"path\": \"serverless-scripts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ee3701f2fbfc7196ba340f6481d1387d20527898\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ee3701f2fbfc7196ba340f6481d1387d20527898\"\n },\n {\n \"path\": \"serverless-single-page-app-plugin\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"08763fcfba643a06a452398517019bea4a5850ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/08763fcfba643a06a452398517019bea4a5850ba\"\n },\n {\n \"path\": \"serverless.yml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"20b22c5fad229f35d029bf6614d333d82fe8a987\",\n \"size\": 7803,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/20b22c5fad229f35d029bf6614d333d82fe8a987\"\n },\n {\n \"path\": \"src\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"8cdb35a88232c0f32f12f130c92c7cc55f97f471\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/8cdb35a88232c0f32f12f130c92c7cc55f97f471\"\n },\n {\n \"path\": \"static\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"53c6380a600a030d3722bff7ecde36f749fb6964\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/53c6380a600a030d3722bff7ecde36f749fb6964\"\n },\n {\n \"path\": \"utils\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"a592549c9f74db40b51efefcda2fd76810405f27\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/a592549c9f74db40b51efefcda2fd76810405f27\"\n },\n {\n \"path\": \"yarn.lock\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"475c9c1924ca752a0686303e2fdeb7b13ad75f57\",\n \"size\": 793903,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/475c9c1924ca752a0686303e2fdeb7b13ad75f57\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/trees/0294ef106c58743907a5c855da1eb0f87b0b6dfc?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:04:16 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4186", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"7d6ed23edb93fdd710127003bd99d3e3\"", + "Last-Modified": "Tue, 10 Sep 2019 14:02:10 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BF4:B4E0:16FA2B0:1BF819F:5D77AD5F", + "content-length": "831", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\n \"tree\": [\n {\n \"path\": \"pages\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\"\n },\n {\n \"path\": \"posts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"34892575e216c06e757093f036bd8e057c78a52f\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/34892575e216c06e757093f036bd8e057c78a52f\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/trees/34892575e216c06e757093f036bd8e057c78a52f?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:04:17 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4185", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"9485ec7bb0224060380d07454fc25c0a\"", + "Last-Modified": "Tue, 10 Sep 2019 14:02:10 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BF6:15110:18C5837:1E19F71:5D77AD60", + "content-length": "2030", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"34892575e216c06e757093f036bd8e057c78a52f\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/34892575e216c06e757093f036bd8e057c78a52f\",\n \"tree\": [\n {\n \"path\": \"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"size\": 1707,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\"\n },\n {\n \"path\": \"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"size\": 2565,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\"\n },\n {\n \"path\": \"2016-02-02---A-Brief-History-of-Typography.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"0eea554365f002d0f1572af9a58522d335a794d5\",\n \"size\": 2786,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\"\n },\n {\n \"path\": \"2017-18-08---The-Birth-of-Movable-Type.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"44f78c474d04273185a95821426f75affc9b0044\",\n \"size\": 16071,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\"\n },\n {\n \"path\": \"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"size\": 7465,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 200 + }, + { + "body": "{\"base_tree\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"tree\":[{\"path\":\"1970-01-01-first-title.md\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"a041245814892e3f73f63ca54333fda649b7fc0b\"}]}", + "method": "POST", + "url": "/repos/owner/repo/git/trees?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:04:17 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "2362", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4184", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"ec28ace732cd92ce67ac2d4bb75b73a8\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BF8:9D20:11827E2:156A71C:5D77AD61", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a041245814892e3f73f63ca54333fda649b7fc0b\",\n \"size\": 167,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b\"\n },\n {\n \"path\": \"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"size\": 1707,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\"\n },\n {\n \"path\": \"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"size\": 2565,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\"\n },\n {\n \"path\": \"2016-02-02---A-Brief-History-of-Typography.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"0eea554365f002d0f1572af9a58522d335a794d5\",\n \"size\": 2786,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\"\n },\n {\n \"path\": \"2017-18-08---The-Birth-of-Movable-Type.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"44f78c474d04273185a95821426f75affc9b0044\",\n \"size\": 16071,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\"\n },\n {\n \"path\": \"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"size\": 7465,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"base_tree\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\"tree\":[{\"path\":\"posts\",\"mode\":\"040000\",\"type\":\"tree\",\"sha\":\"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\"parentSha\":\"34892575e216c06e757093f036bd8e057c78a52f\"}]}", + "method": "POST", + "url": "/repos/owner/repo/git/trees?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:04:18 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "831", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4183", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"8a08d49c75e6316b7eedd97658f5dd3d\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BFA:15110:18C5A65:1E1A216:5D77AD62", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"tree\": [\n {\n \"path\": \"pages\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\"\n },\n {\n \"path\": \"posts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"base_tree\":\"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\"tree\":[{\"path\":\"content\",\"mode\":\"040000\",\"type\":\"tree\",\"sha\":\"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\"parentSha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\"}]}", + "method": "POST", + "url": "/repos/owner/repo/git/trees?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:04:19 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "11769", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4182", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"fb9e1158542ab7bb09a23b22e7f7dbd8\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/trees/daee8d5d15d144e8779955166a2afeccde2770e1", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BFD:B4DC:ADAEB8:D3569A:5D77AD62", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"daee8d5d15d144e8779955166a2afeccde2770e1\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/daee8d5d15d144e8779955166a2afeccde2770e1\",\n \"tree\": [\n {\n \"path\": \".circleci\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"e5e9af3301cac61f120b8e4d40b1733c7a45685a\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/e5e9af3301cac61f120b8e4d40b1733c7a45685a\"\n },\n {\n \"path\": \".eslintignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"80b4531b026d19f8fa589efd122e76199d23f967\",\n \"size\": 39,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/80b4531b026d19f8fa589efd122e76199d23f967\"\n },\n {\n \"path\": \".eslintrc.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"370684994aaed5b858da3a006f48cfa57e88fd27\",\n \"size\": 414,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/370684994aaed5b858da3a006f48cfa57e88fd27\"\n },\n {\n \"path\": \".flowconfig\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14aa2ac4cc0e15223ad98630a6f1325fc81f8043\",\n \"size\": 283,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14aa2ac4cc0e15223ad98630a6f1325fc81f8043\"\n },\n {\n \"path\": \".gitattributes\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"10a369ddf4f603337cabc6f21646508323941ce1\",\n \"size\": 135,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/10a369ddf4f603337cabc6f21646508323941ce1\"\n },\n {\n \"path\": \".github\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4ebeece548b52b20af59622354530a6d33b50b43\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4ebeece548b52b20af59622354530a6d33b50b43\"\n },\n {\n \"path\": \".gitignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"c071ba35b0e49899bab6d610a68eef667dbbf157\",\n \"size\": 169,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/c071ba35b0e49899bab6d610a68eef667dbbf157\"\n },\n {\n \"path\": \".prettierignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"393f050e123d998cf8c8b362ff95cc8ac4d250e5\",\n \"size\": 45,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/393f050e123d998cf8c8b362ff95cc8ac4d250e5\"\n },\n {\n \"path\": \".prettierrc\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e52ad05bb13b084d7949dd76e1b2517455162150\",\n \"size\": 223,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/e52ad05bb13b084d7949dd76e1b2517455162150\"\n },\n {\n \"path\": \".stylelintrc.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"4b4c9698d10d756f5faa025659b86375428ed0a7\",\n \"size\": 718,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/4b4c9698d10d756f5faa025659b86375428ed0a7\"\n },\n {\n \"path\": \".vscode\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"286e97ec0113ea8242b41ac222e2c3e8077e6f1e\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/286e97ec0113ea8242b41ac222e2c3e8077e6f1e\"\n },\n {\n \"path\": \"CHANGELOG.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"070a5d4f0eacd2dc0be81ae8996f8982de43046e\",\n \"size\": 2113,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/070a5d4f0eacd2dc0be81ae8996f8982de43046e\"\n },\n {\n \"path\": \"CODE_OF_CONDUCT.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"92bc7565ff0ee145a0041b5179a820f14f39ab22\",\n \"size\": 3355,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/92bc7565ff0ee145a0041b5179a820f14f39ab22\"\n },\n {\n \"path\": \"CONTRIBUTING.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"8552aa241254a61258e1ff9666ab36f32fb1e3b9\",\n \"size\": 3548,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/8552aa241254a61258e1ff9666ab36f32fb1e3b9\"\n },\n {\n \"path\": \"LICENSE\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"42d85938357b49977c126ca03b199129082d4fb8\",\n \"size\": 1091,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/42d85938357b49977c126ca03b199129082d4fb8\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"19df50a78654c8d757ca7f38447aa3d09c7abcce\",\n \"size\": 3698,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/19df50a78654c8d757ca7f38447aa3d09c7abcce\"\n },\n {\n \"path\": \"backend\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\"\n },\n {\n \"path\": \"config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"58afd573bbb69fcca000efd0f5d90b93c93a98dd\",\n \"size\": 853,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/58afd573bbb69fcca000efd0f5d90b93c93a98dd\"\n },\n {\n \"path\": \"content\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639\"\n },\n {\n \"path\": \"flow-typed\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"86c32fd6c3118be5e0dbbb231a834447357236c6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/86c32fd6c3118be5e0dbbb231a834447357236c6\"\n },\n {\n \"path\": \"flow\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"0af45ad00d155c8d8c7407d913ff85278244c9ce\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/0af45ad00d155c8d8c7407d913ff85278244c9ce\"\n },\n {\n \"path\": \"gatsby-browser.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9bd2c9dce175f04980e91cd9dc295a299e3cdb80\",\n \"size\": 90,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9bd2c9dce175f04980e91cd9dc295a299e3cdb80\"\n },\n {\n \"path\": \"gatsby-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"353a109dad62e3f25bf9f5e6a2167f21a6c8b459\",\n \"size\": 7228,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/353a109dad62e3f25bf9f5e6a2167f21a6c8b459\"\n },\n {\n \"path\": \"gatsby-node.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14a207883c2093d2cc071bc5a464e165bcc1fead\",\n \"size\": 409,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14a207883c2093d2cc071bc5a464e165bcc1fead\"\n },\n {\n \"path\": \"gatsby\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4f23c06cd1740bf78304d2c0b29bf6bfdf427981\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4f23c06cd1740bf78304d2c0b29bf6bfdf427981\"\n },\n {\n \"path\": \"jest\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\"\n },\n {\n \"path\": \"netlify.toml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"599b99cc5700404fde316a7ede829776f23e7d45\",\n \"size\": 137,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/599b99cc5700404fde316a7ede829776f23e7d45\"\n },\n {\n \"path\": \"package.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9d777616438b90a18f1a4ebfd5f114b4c06c6f17\",\n \"size\": 6855,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9d777616438b90a18f1a4ebfd5f114b4c06c6f17\"\n },\n {\n \"path\": \"postcss-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d216501e9b351a72e00ba0b7459a6500e27e7da2\",\n \"size\": 703,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d216501e9b351a72e00ba0b7459a6500e27e7da2\"\n },\n {\n \"path\": \"renovate.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"dcc309398785698b8870545c32051a3d72dd8271\",\n \"size\": 460,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/dcc309398785698b8870545c32051a3d72dd8271\"\n },\n {\n \"path\": \"serverless-scripts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ee3701f2fbfc7196ba340f6481d1387d20527898\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ee3701f2fbfc7196ba340f6481d1387d20527898\"\n },\n {\n \"path\": \"serverless-single-page-app-plugin\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"08763fcfba643a06a452398517019bea4a5850ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/08763fcfba643a06a452398517019bea4a5850ba\"\n },\n {\n \"path\": \"serverless.yml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"20b22c5fad229f35d029bf6614d333d82fe8a987\",\n \"size\": 7803,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/20b22c5fad229f35d029bf6614d333d82fe8a987\"\n },\n {\n \"path\": \"src\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"8cdb35a88232c0f32f12f130c92c7cc55f97f471\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/8cdb35a88232c0f32f12f130c92c7cc55f97f471\"\n },\n {\n \"path\": \"static\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"53c6380a600a030d3722bff7ecde36f749fb6964\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/53c6380a600a030d3722bff7ecde36f749fb6964\"\n },\n {\n \"path\": \"utils\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"a592549c9f74db40b51efefcda2fd76810405f27\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/a592549c9f74db40b51efefcda2fd76810405f27\"\n },\n {\n \"path\": \"yarn.lock\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"475c9c1924ca752a0686303e2fdeb7b13ad75f57\",\n \"size\": 793903,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/475c9c1924ca752a0686303e2fdeb7b13ad75f57\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"message\":\"Create Post “1970-01-01-first-title”\",\"tree\":\"daee8d5d15d144e8779955166a2afeccde2770e1\",\"parents\":[\"726172deae99c8a2cea4c71e734a02a793d4d9e5\"]}", + "method": "POST", + "url": "/repos/owner/repo/git/commits?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:04:20 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "1504", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4181", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"b952e8ee33b439c0a0f20e5f8e648667\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/commits/0921e01c94d2acbee9496778b4b603289f3abf42", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BFE:1510E:AE83BE:D4ACE0:5D77AD63", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"0921e01c94d2acbee9496778b4b603289f3abf42\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NTc1Mjc2OjA5MjFlMDFjOTRkMmFjYmVlOTQ5Njc3OGI0YjYwMzI4OWYzYWJmNDI=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/0921e01c94d2acbee9496778b4b603289f3abf42\",\n \"html_url\": \"https://github.com/owner/repo/commit/0921e01c94d2acbee9496778b4b603289f3abf42\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T14:04:19Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T14:04:19Z\"\n },\n \"tree\": {\n \"sha\": \"daee8d5d15d144e8779955166a2afeccde2770e1\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/daee8d5d15d144e8779955166a2afeccde2770e1\"\n },\n \"message\": \"Create Post “1970-01-01-first-title”\",\n \"parents\": [\n {\n \"sha\": \"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"html_url\": \"https://github.com/owner/repo/commit/726172deae99c8a2cea4c71e734a02a793d4d9e5\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "status": 201 + }, + { + "body": "{\"ref\":\"refs/heads/cms/1970-01-01-first-title\",\"sha\":\"0921e01c94d2acbee9496778b4b603289f3abf42\"}", + "method": "POST", + "url": "/repos/owner/repo/git/refs?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:04:21 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "518", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4180", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"98443b63f13251a4b98711c9aed12438\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "Location": "https://api.github.com/repos/owner/repo/git/refs/heads/cms/1970-01-01-first-title", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A00:B4E0:16FA994:1BF8A47:5D77AD64", + "connection": "keep-alive" + }, + "response": "{\n \"ref\": \"refs/heads/cms/1970-01-01-first-title\",\n \"node_id\": \"MDM6UmVmMjA3NTc1Mjc2OmNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxl\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/heads/cms/1970-01-01-first-title\",\n \"object\": {\n \"sha\": \"0921e01c94d2acbee9496778b4b603289f3abf42\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/0921e01c94d2acbee9496778b4b603289f3abf42\"\n }\n}\n", + "status": 201 + }, + { + "body": "{\"title\":\"Create Post “1970-01-01-first-title”\",\"body\":\"Automatically generated by Netlify CMS\",\"head\":\"cms/1970-01-01-first-title\",\"base\":\"master\"}", + "method": "POST", + "url": "/repos/owner/repo/pulls?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:04:22 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "21715", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4179", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"3aa6beceea32cd5542a8ee58197ea291\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/pulls/3", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A02:244EB:184CB3A:1D85776:5D77AD65", + "connection": "keep-alive" + }, + "response": "{\n \"url\": \"https://api.github.com/repos/owner/repo/pulls/3\",\n \"id\": 316012039,\n \"node_id\": \"MDExOlB1bGxSZXF1ZXN0MzE2MDEyMDM5\",\n \"html_url\": \"https://github.com/owner/repo/pull/3\",\n \"diff_url\": \"https://github.com/owner/repo/pull/3.diff\",\n \"patch_url\": \"https://github.com/owner/repo/pull/3.patch\",\n \"issue_url\": \"https://api.github.com/repos/owner/repo/issues/3\",\n \"number\": 3,\n \"state\": \"open\",\n \"locked\": false,\n \"title\": \"Create Post “1970-01-01-first-title”\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Automatically generated by Netlify CMS\",\n \"created_at\": \"2019-09-10T14:04:21Z\",\n \"updated_at\": \"2019-09-10T14:04:21Z\",\n \"closed_at\": null,\n \"merged_at\": null,\n \"merge_commit_sha\": null,\n \"assignee\": null,\n \"assignees\": [\n\n ],\n \"requested_reviewers\": [\n\n ],\n \"requested_teams\": [\n\n ],\n \"labels\": [\n\n ],\n \"milestone\": null,\n \"commits_url\": \"https://api.github.com/repos/owner/repo/pulls/3/commits\",\n \"review_comments_url\": \"https://api.github.com/repos/owner/repo/pulls/3/comments\",\n \"review_comment_url\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/issues/3/comments\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/0921e01c94d2acbee9496778b4b603289f3abf42\",\n \"head\": {\n \"label\": \"owner:cms/1970-01-01-first-title\",\n \"ref\": \"cms/1970-01-01-first-title\",\n \"sha\": \"0921e01c94d2acbee9496778b4b603289f3abf42\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 207575276,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NzUyNzY=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-10T14:01:42Z\",\n \"updated_at\": \"2019-09-10T14:02:10Z\",\n \"pushed_at\": \"2019-09-10T14:04:21Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 1,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 1,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"base\": {\n \"label\": \"owner:master\",\n \"ref\": \"master\",\n \"sha\": \"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 207575276,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NzUyNzY=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-10T14:01:42Z\",\n \"updated_at\": \"2019-09-10T14:02:10Z\",\n \"pushed_at\": \"2019-09-10T14:04:21Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 1,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 1,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/3\"\n },\n \"html\": {\n \"href\": \"https://github.com/owner/repo/pull/3\"\n },\n \"issue\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/3\"\n },\n \"comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/3/comments\"\n },\n \"review_comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/3/comments\"\n },\n \"review_comment\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\"\n },\n \"commits\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/3/commits\"\n },\n \"statuses\": {\n \"href\": \"https://api.github.com/repos/owner/repo/statuses/0921e01c94d2acbee9496778b4b603289f3abf42\"\n }\n },\n \"author_association\": \"OWNER\",\n \"merged\": false,\n \"mergeable\": null,\n \"rebaseable\": null,\n \"mergeable_state\": \"unknown\",\n \"merged_by\": null,\n \"comments\": 0,\n \"review_comments\": 0,\n \"maintainer_can_modify\": false,\n \"commits\": 1,\n \"additions\": 11,\n \"deletions\": 0,\n \"changed_files\": 1\n}\n", + "status": 201 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:04:23 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4178", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"42efdb36d7506f9104eaa462303d67e5\"", + "Last-Modified": "Tue, 10 Sep 2019 14:02:10 GMT", + "X-Poll-Interval": "300", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A04:3ED82:18C0389:1E1E25B:5D77AD66", + "content-length": "484", + "connection": "keep-alive" + }, + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NTc1Mjc2OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"f9319ef1e58827df9f7733d199a9a2e40d444e65\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/f9319ef1e58827df9f7733d199a9a2e40d444e65\"\n }\n}\n", + "status": 200 + }, + { + "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjMsImhlYWQiOiIwOTIxZTAxYzk0ZDJhY2JlZTk0OTY3NzhiNGI2MDMyODlmM2FiZjQyIn0sInVzZXIiOiJvd25lciIsInN0YXR1cyI6ImRyYWZ0IiwiYnJhbmNoIjoiY21zLzE5NzAtMDEtMDEtZmlyc3QtdGl0bGUiLCJjb2xsZWN0aW9uIjoicG9zdHMiLCJjb21taXRNZXNzYWdlIjoiQ3JlYXRlIFBvc3Qg4oCcMTk3MC0wMS0wMS1maXJzdC10aXRsZeKAnSIsInRpdGxlIjoiZmlyc3QgdGl0bGUiLCJkZXNjcmlwdGlvbiI6ImZpcnN0IGRlc2NyaXB0aW9uIiwib2JqZWN0cyI6eyJlbnRyeSI6eyJwYXRoIjoiY29udGVudC9wb3N0cy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxlLm1kIiwic2hhIjoiYTA0MTI0NTgxNDg5MmUzZjczZjYzY2E1NDMzM2ZkYTY0OWI3ZmMwYiJ9LCJmaWxlcyI6W119LCJ0aW1lU3RhbXAiOiIxOTcwLTAxLTAxVDAwOjAwOjAwLjMwMFoifQ==\",\"encoding\":\"base64\"}", + "method": "POST", + "url": "/repos/owner/repo/git/blobs?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:04:23 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "207", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4177", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"2130bef68979275fd694a221b0b7abcd\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/blobs/13370e509c0cfce61759dc4fb4bbd4dfefd71a55", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A06:9D21:177BD4D:1C9DF3A:5D77AD67", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"13370e509c0cfce61759dc4fb4bbd4dfefd71a55\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/13370e509c0cfce61759dc4fb4bbd4dfefd71a55\"\n}\n", + "status": 201 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/trees/f9319ef1e58827df9f7733d199a9a2e40d444e65?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:04:24 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4176", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"bb38f0390dd26597d893c4e014fee6b4\"", + "Last-Modified": "Tue, 10 Sep 2019 14:02:10 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A08:244E4:B112F8:D69FDF:5D77AD67", + "content-length": "895", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"f9319ef1e58827df9f7733d199a9a2e40d444e65\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/f9319ef1e58827df9f7733d199a9a2e40d444e65\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"b5fc06e89712b37ab1037186fbf3c093b1de020b\",\n \"size\": 462,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/b5fc06e89712b37ab1037186fbf3c093b1de020b\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 200 + }, + { + "body": "{\"base_tree\":\"f9319ef1e58827df9f7733d199a9a2e40d444e65\",\"tree\":[{\"path\":\"1970-01-01-first-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"13370e509c0cfce61759dc4fb4bbd4dfefd71a55\"}]}", + "method": "POST", + "url": "/repos/owner/repo/git/trees?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:04:25 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "895", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4175", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"97f575c7fff145d0ebad0c5b82d01ad8\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/trees/5992e048f6febb245b5fff9fac34e0f035f4d760", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A0A:9D1F:A4F6D2:C9525E:5D77AD68", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"5992e048f6febb245b5fff9fac34e0f035f4d760\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/5992e048f6febb245b5fff9fac34e0f035f4d760\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"13370e509c0cfce61759dc4fb4bbd4dfefd71a55\",\n \"size\": 462,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/13370e509c0cfce61759dc4fb4bbd4dfefd71a55\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"message\":\"Updating “1970-01-01-first-title” metadata\",\"tree\":\"5992e048f6febb245b5fff9fac34e0f035f4d760\",\"parents\":[\"f9319ef1e58827df9f7733d199a9a2e40d444e65\"]}", + "method": "POST", + "url": "/repos/owner/repo/git/commits?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:04:25 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "1510", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4174", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"af74aec755933316bd2b31adbe3ad2b9\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/commits/67d66b16d20d3e39ed783ad2915f09583d4fa73f", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A12:15110:18C67D5:1E1B278:5D77AD69", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"67d66b16d20d3e39ed783ad2915f09583d4fa73f\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NTc1Mjc2OjY3ZDY2YjE2ZDIwZDNlMzllZDc4M2FkMjkxNWYwOTU4M2Q0ZmE3M2Y=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/67d66b16d20d3e39ed783ad2915f09583d4fa73f\",\n \"html_url\": \"https://github.com/owner/repo/commit/67d66b16d20d3e39ed783ad2915f09583d4fa73f\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T14:04:25Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T14:04:25Z\"\n },\n \"tree\": {\n \"sha\": \"5992e048f6febb245b5fff9fac34e0f035f4d760\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/5992e048f6febb245b5fff9fac34e0f035f4d760\"\n },\n \"message\": \"Updating “1970-01-01-first-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"f9319ef1e58827df9f7733d199a9a2e40d444e65\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/f9319ef1e58827df9f7733d199a9a2e40d444e65\",\n \"html_url\": \"https://github.com/owner/repo/commit/f9319ef1e58827df9f7733d199a9a2e40d444e65\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "status": 201 + }, + { + "body": "{\"sha\":\"67d66b16d20d3e39ed783ad2915f09583d4fa73f\",\"force\":false}", + "method": "PATCH", + "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:04:26 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4173", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"36d26bf51de30f9e023d459a1dbb7417\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A16:15110:18C6934:1E1B423:5D77AD69", + "content-length": "484", + "connection": "keep-alive" + }, + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NTc1Mjc2OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"67d66b16d20d3e39ed783ad2915f09583d4fa73f\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/67d66b16d20d3e39ed783ad2915f09583d4fa73f\"\n }\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=cms/1970-01-01-first-title", + "headers": { + "Date": "Tue, 10 Sep 2019 14:04:27 GMT", + "Content-Type": "application/vnd.github.VERSION.raw; charset=utf-8", + "Content-Length": "167", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4172", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"a041245814892e3f73f63ca54333fda649b7fc0b\"", + "Last-Modified": "Tue, 10 Sep 2019 14:04:19 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A1D:244E7:11D8779:15C7FC7:5D77AD6B", + "connection": "keep-alive" + }, + "response": "---\ntemplate: post\ntitle: first title\ndraft: true\ndate: 1970-01-01T00:00:00.000Z\ndescription: first description\ncategory: first category\ntags:\n - tag1\n---\nfirst body\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=master", + "headers": { + "Date": "Tue, 10 Sep 2019 14:04:27 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "404 Not Found", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4171", + "X-RateLimit-Reset": "1568126651", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A1E:244E4:B115F9:D6A396:5D77AD6B", + "content-length": "116", + "connection": "keep-alive" + }, + "response": "{\n \"message\": \"Not Found\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/#get-contents\"\n}\n", + "status": 404 + }, + { + "method": "GET", + "url": "/repos/owner/repo/commits/0921e01c94d2acbee9496778b4b603289f3abf42/status?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:04:28 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4170", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"9be0a39ec2032f7a7485ac2c683669de\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo, repo:status", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A22:1510D:480DAF:586149:5D77AD6C", + "content-length": "6574", + "connection": "keep-alive" + }, + "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"0921e01c94d2acbee9496778b4b603289f3abf42\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 207575276,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NzUyNzY=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/0921e01c94d2acbee9496778b4b603289f3abf42\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/0921e01c94d2acbee9496778b4b603289f3abf42/status\"\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/refs/heads/cms?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:04:29 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4169", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"3ce92b8daab751ca38e8c5ffccd9e7bb\"", + "Last-Modified": "Tue, 10 Sep 2019 14:02:10 GMT", + "X-Poll-Interval": "300", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A24:3ED77:ADACD9:D291BB:5D77AD6C", + "content-length": "542", + "connection": "keep-alive" + }, + "response": "[\n {\n \"ref\": \"refs/heads/cms/1970-01-01-first-title\",\n \"node_id\": \"MDM6UmVmMjA3NTc1Mjc2OmNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxl\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/heads/cms/1970-01-01-first-title\",\n \"object\": {\n \"sha\": \"0921e01c94d2acbee9496778b4b603289f3abf42\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/0921e01c94d2acbee9496778b4b603289f3abf42\"\n }\n }\n]\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/pulls?ts=300&head=cms/1970-01-01-first-title&state=open&base=master", + "headers": { + "Date": "Tue, 10 Sep 2019 14:04:29 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4168", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"a0d3523bc7d256c588bf0e0df82ab9f0\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A26:2B15:4F3D21:603225:5D77AD6D", + "content-length": "22154", + "connection": "keep-alive" + }, + "response": "[\n {\n \"url\": \"https://api.github.com/repos/owner/repo/pulls/3\",\n \"id\": 316012039,\n \"node_id\": \"MDExOlB1bGxSZXF1ZXN0MzE2MDEyMDM5\",\n \"html_url\": \"https://github.com/owner/repo/pull/3\",\n \"diff_url\": \"https://github.com/owner/repo/pull/3.diff\",\n \"patch_url\": \"https://github.com/owner/repo/pull/3.patch\",\n \"issue_url\": \"https://api.github.com/repos/owner/repo/issues/3\",\n \"number\": 3,\n \"state\": \"open\",\n \"locked\": false,\n \"title\": \"Create Post “1970-01-01-first-title”\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Automatically generated by Netlify CMS\",\n \"created_at\": \"2019-09-10T14:04:21Z\",\n \"updated_at\": \"2019-09-10T14:04:21Z\",\n \"closed_at\": null,\n \"merged_at\": null,\n \"merge_commit_sha\": \"bc832103aeac082d84653a848aec53fbde1c6252\",\n \"assignee\": null,\n \"assignees\": [\n\n ],\n \"requested_reviewers\": [\n\n ],\n \"requested_teams\": [\n\n ],\n \"labels\": [\n\n ],\n \"milestone\": null,\n \"commits_url\": \"https://api.github.com/repos/owner/repo/pulls/3/commits\",\n \"review_comments_url\": \"https://api.github.com/repos/owner/repo/pulls/3/comments\",\n \"review_comment_url\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/issues/3/comments\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/0921e01c94d2acbee9496778b4b603289f3abf42\",\n \"head\": {\n \"label\": \"owner:cms/1970-01-01-first-title\",\n \"ref\": \"cms/1970-01-01-first-title\",\n \"sha\": \"0921e01c94d2acbee9496778b4b603289f3abf42\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 207575276,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NzUyNzY=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-10T14:01:42Z\",\n \"updated_at\": \"2019-09-10T14:02:10Z\",\n \"pushed_at\": \"2019-09-10T14:04:26Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 1,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 1,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"base\": {\n \"label\": \"owner:master\",\n \"ref\": \"master\",\n \"sha\": \"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 207575276,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NzUyNzY=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-10T14:01:42Z\",\n \"updated_at\": \"2019-09-10T14:02:10Z\",\n \"pushed_at\": \"2019-09-10T14:04:26Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 1,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 1,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/3\"\n },\n \"html\": {\n \"href\": \"https://github.com/owner/repo/pull/3\"\n },\n \"issue\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/3\"\n },\n \"comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/3/comments\"\n },\n \"review_comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/3/comments\"\n },\n \"review_comment\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\"\n },\n \"commits\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/3/commits\"\n },\n \"statuses\": {\n \"href\": \"https://api.github.com/repos/owner/repo/statuses/0921e01c94d2acbee9496778b4b603289f3abf42\"\n }\n },\n \"author_association\": \"OWNER\"\n }\n]\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=master", + "headers": { + "Date": "Tue, 10 Sep 2019 14:04:30 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "404 Not Found", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4167", + "X-RateLimit-Reset": "1568126651", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A2C:3ED7B:1298889:1697CC5:5D77AD6D", + "content-length": "116", + "connection": "keep-alive" + }, + "response": "{\n \"message\": \"Not Found\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/#get-contents\"\n}\n", + "status": 404 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=cms/1970-01-01-first-title", + "headers": { + "Date": "Tue, 10 Sep 2019 14:04:30 GMT", + "Content-Type": "application/vnd.github.VERSION.raw; charset=utf-8", + "Content-Length": "167", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4166", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"a041245814892e3f73f63ca54333fda649b7fc0b\"", + "Last-Modified": "Tue, 10 Sep 2019 14:04:19 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A2A:B4DE:1226261:161924D:5D77AD6D", + "connection": "keep-alive" + }, + "response": "---\ntemplate: post\ntitle: first title\ndraft: true\ndate: 1970-01-01T00:00:00.000Z\ndescription: first description\ncategory: first category\ntags:\n - tag1\n---\nfirst body\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:04:31 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4165", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"36d26bf51de30f9e023d459a1dbb7417\"", + "Last-Modified": "Tue, 10 Sep 2019 14:02:10 GMT", + "X-Poll-Interval": "300", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A30:B4E0:16FBC37:1BFA130:5D77AD6F", + "content-length": "484", + "connection": "keep-alive" + }, + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NTc1Mjc2OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"67d66b16d20d3e39ed783ad2915f09583d4fa73f\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/67d66b16d20d3e39ed783ad2915f09583d4fa73f\"\n }\n}\n", + "status": 200 + }, + { + "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjMsImhlYWQiOiIwOTIxZTAxYzk0ZDJhY2JlZTk0OTY3NzhiNGI2MDMyODlmM2FiZjQyIn0sInVzZXIiOiJvd25lciIsInN0YXR1cyI6InBlbmRpbmdfcHVibGlzaCIsImJyYW5jaCI6ImNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxlIiwiY29sbGVjdGlvbiI6InBvc3RzIiwiY29tbWl0TWVzc2FnZSI6IkNyZWF0ZSBQb3N0IOKAnDE5NzAtMDEtMDEtZmlyc3QtdGl0bGXigJ0iLCJ0aXRsZSI6ImZpcnN0IHRpdGxlIiwiZGVzY3JpcHRpb24iOiJmaXJzdCBkZXNjcmlwdGlvbiIsIm9iamVjdHMiOnsiZW50cnkiOnsicGF0aCI6ImNvbnRlbnQvcG9zdHMvMTk3MC0wMS0wMS1maXJzdC10aXRsZS5tZCIsInNoYSI6ImEwNDEyNDU4MTQ4OTJlM2Y3M2Y2M2NhNTQzMzNmZGE2NDliN2ZjMGIifSwiZmlsZXMiOltdfSwidGltZVN0YW1wIjoiMTk3MC0wMS0wMVQwMDowMDowMC4zMDBaIn0=\",\"encoding\":\"base64\"}", + "method": "POST", + "url": "/repos/owner/repo/git/blobs?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:04:32 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "207", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4164", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"c644f21d938294d10adcf9922cd03704\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/blobs/bf6c79e0c8e853cedd2614b5777ee6f35ac21beb", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A32:9D1F:A4FCED:C959DF:5D77AD6F", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"bf6c79e0c8e853cedd2614b5777ee6f35ac21beb\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/bf6c79e0c8e853cedd2614b5777ee6f35ac21beb\"\n}\n", + "status": 201 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/trees/67d66b16d20d3e39ed783ad2915f09583d4fa73f?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:04:32 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4163", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"4ee5252cf8961b442375ceaf9e33a722\"", + "Last-Modified": "Tue, 10 Sep 2019 14:02:10 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A34:B4E0:16FBE46:1BFA3CA:5D77AD70", + "content-length": "895", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"67d66b16d20d3e39ed783ad2915f09583d4fa73f\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/67d66b16d20d3e39ed783ad2915f09583d4fa73f\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"13370e509c0cfce61759dc4fb4bbd4dfefd71a55\",\n \"size\": 462,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/13370e509c0cfce61759dc4fb4bbd4dfefd71a55\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 200 + }, + { + "body": "{\"base_tree\":\"67d66b16d20d3e39ed783ad2915f09583d4fa73f\",\"tree\":[{\"path\":\"1970-01-01-first-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"bf6c79e0c8e853cedd2614b5777ee6f35ac21beb\"}]}", + "method": "POST", + "url": "/repos/owner/repo/git/trees?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:04:33 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "895", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4162", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"6c45fbf100fa66a2f8998060119624d8\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/trees/09aa94260cc557305460a5ed6be4074d8de7aaba", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A36:244E7:11D8EF6:15C8900:5D77AD71", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"09aa94260cc557305460a5ed6be4074d8de7aaba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/09aa94260cc557305460a5ed6be4074d8de7aaba\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"bf6c79e0c8e853cedd2614b5777ee6f35ac21beb\",\n \"size\": 472,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/bf6c79e0c8e853cedd2614b5777ee6f35ac21beb\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"message\":\"Updating “1970-01-01-first-title” metadata\",\"tree\":\"09aa94260cc557305460a5ed6be4074d8de7aaba\",\"parents\":[\"67d66b16d20d3e39ed783ad2915f09583d4fa73f\"]}", + "method": "POST", + "url": "/repos/owner/repo/git/commits?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:04:34 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "1510", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4161", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"f60415717b759510312e3b00565baa3d\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/commits/7608b9572ad48763308d6110ca472cb24034fce8", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A38:2B19:AB8262:D0C944:5D77AD71", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"7608b9572ad48763308d6110ca472cb24034fce8\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NTc1Mjc2Ojc2MDhiOTU3MmFkNDg3NjMzMDhkNjExMGNhNDcyY2IyNDAzNGZjZTg=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/7608b9572ad48763308d6110ca472cb24034fce8\",\n \"html_url\": \"https://github.com/owner/repo/commit/7608b9572ad48763308d6110ca472cb24034fce8\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T14:04:34Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T14:04:34Z\"\n },\n \"tree\": {\n \"sha\": \"09aa94260cc557305460a5ed6be4074d8de7aaba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/09aa94260cc557305460a5ed6be4074d8de7aaba\"\n },\n \"message\": \"Updating “1970-01-01-first-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"67d66b16d20d3e39ed783ad2915f09583d4fa73f\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/67d66b16d20d3e39ed783ad2915f09583d4fa73f\",\n \"html_url\": \"https://github.com/owner/repo/commit/67d66b16d20d3e39ed783ad2915f09583d4fa73f\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "status": 201 + }, + { + "method": "GET", + "url": "/repos/owner/repo/commits/0921e01c94d2acbee9496778b4b603289f3abf42/status?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:04:34 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4160", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"9be0a39ec2032f7a7485ac2c683669de\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo, repo:status", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A3B:1510F:126756E:16572EB:5D77AD72", + "content-length": "6574", + "connection": "keep-alive" + }, + "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"0921e01c94d2acbee9496778b4b603289f3abf42\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 207575276,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NzUyNzY=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/0921e01c94d2acbee9496778b4b603289f3abf42\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/0921e01c94d2acbee9496778b4b603289f3abf42/status\"\n}\n", + "status": 200 + }, + { + "body": "{\"sha\":\"7608b9572ad48763308d6110ca472cb24034fce8\",\"force\":false}", + "method": "PATCH", + "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:04:35 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4159", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"707e80d46b2bb7a482fe662906717299\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A3C:244EB:184E10A:1D87230:5D77AD72", + "content-length": "484", + "connection": "keep-alive" + }, + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NTc1Mjc2OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"7608b9572ad48763308d6110ca472cb24034fce8\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/7608b9572ad48763308d6110ca472cb24034fce8\"\n }\n}\n", + "status": 200 + }, + { + "body": "{\"commit_message\":\"Automatically generated. Merged on Netlify CMS.\",\"sha\":\"0921e01c94d2acbee9496778b4b603289f3abf42\",\"merge_method\":\"merge\"}", + "method": "PUT", + "url": "/repos/owner/repo/pulls/3/merge?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:04:37 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4158", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"b177fd46b4b425f11ab2182856f3b6b1\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A3E:B4E0:16FC4DE:1BFABCA:5D77AD74", + "content-length": "123", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"10fd3469e4aae058448807322306f9a9d96b7576\",\n \"merged\": true,\n \"message\": \"Pull Request successfully merged\"\n}\n", + "status": 200 + }, + { + "method": "DELETE", + "url": "/repos/owner/repo/git/refs/heads/cms%2F1970-01-01-first-title?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:04:38 GMT", + "Content-Type": "application/octet-stream", + "Server": "GitHub.com", + "Status": "204 No Content", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4157", + "X-RateLimit-Reset": "1568126651", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "Vary": "Accept-Encoding", + "X-GitHub-Request-Id": "7A41:2B1F:125A40C:16673A1:5D77AD76", + "content-length": "0", + "connection": "keep-alive" + }, + "response": null, + "status": 204 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=master", + "headers": { + "Date": "Tue, 10 Sep 2019 14:04:39 GMT", + "Content-Type": "application/vnd.github.VERSION.raw; charset=utf-8", + "Content-Length": "167", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4156", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"a041245814892e3f73f63ca54333fda649b7fc0b\"", + "Last-Modified": "Tue, 10 Sep 2019 14:04:36 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A42:3ED77:ADB63A:D29D4C:5D77AD77", + "connection": "keep-alive" + }, + "response": "---\ntemplate: post\ntitle: first title\ndraft: true\ndate: 1970-01-01T00:00:00.000Z\ndescription: first description\ncategory: first category\ntags:\n - tag1\n---\nfirst body\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/commits/0921e01c94d2acbee9496778b4b603289f3abf42/status?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:04:40 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4154", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"9be0a39ec2032f7a7485ac2c683669de\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo, repo:status", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A46:244EB:184E92A:1D87C42:5D77AD77", + "content-length": "6574", + "connection": "keep-alive" + }, + "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"0921e01c94d2acbee9496778b4b603289f3abf42\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 207575276,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NzUyNzY=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/0921e01c94d2acbee9496778b4b603289f3abf42\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/0921e01c94d2acbee9496778b4b603289f3abf42/status\"\n}\n", + "status": 200 + } +] \ No newline at end of file diff --git a/cypress/fixtures/Github Backend Editorial Workflow - REST API__can update an entry.json b/cypress/fixtures/Github Backend Editorial Workflow - REST API__can update an entry.json new file mode 100644 index 00000000..8a76ed4b --- /dev/null +++ b/cypress/fixtures/Github Backend Editorial Workflow - REST API__can update an entry.json @@ -0,0 +1,2318 @@ +[ + { + "method": "GET", + "url": "/user?ts=0", + "headers": { + "Date": "Tue, 10 Sep 2019 14:03:06 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4281", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"fb606f875be1d23b690ea5f5e26b9fe9\"", + "Last-Modified": "Wed, 28 Aug 2019 04:48:54 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B76:15110:18BDE36:1E109B6:5D77AD1A", + "content-length": "1321", + "connection": "keep-alive" + }, + "response": "{\"login\":\"owner\",\"id\":1,\"avatar_url\":\"https://avatars1.githubusercontent.com/u/7892489?v=4\",\"name\":\"owner\"}", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo?ts=0", + "headers": { + "Date": "Tue, 10 Sep 2019 14:03:07 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4280", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"6e21c117ac2af6b0582961fb349be3f6\"", + "Last-Modified": "Tue, 10 Sep 2019 14:02:10 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B78:9D20:117D393:1563DC7:5D77AD1A", + "content-length": "7296", + "connection": "keep-alive" + }, + "response": "{\n \"id\": 207575276,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NzUyNzY=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-10T14:01:42Z\",\n \"updated_at\": \"2019-09-10T14:02:10Z\",\n \"pushed_at\": \"2019-09-10T14:02:57Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\",\n \"permissions\": {\n \"admin\": true,\n \"push\": true,\n \"pull\": true\n },\n \"allow_squash_merge\": true,\n \"allow_merge_commit\": true,\n \"allow_rebase_merge\": true,\n \"network_count\": 0,\n \"subscribers_count\": 1\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/content/posts?ts=0&ref=master", + "headers": { + "Date": "Tue, 10 Sep 2019 14:03:08 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4279", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"c5b7f6d674ba193bb7b4a5fcf4933034e1b7f2b7\"", + "Last-Modified": "Tue, 10 Sep 2019 14:02:10 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B7A:2B0F:1A53F7:2040D1:5D77AD1B", + "content-length": "7422", + "connection": "keep-alive" + }, + "response": "[\n {\n \"name\": \"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"path\": \"content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"sha\": \"6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"size\": 1707,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"html\": \"https://github.com/owner/repo/blob/master/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md\"\n }\n },\n {\n \"name\": \"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"path\": \"content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"sha\": \"d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"size\": 2565,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"html\": \"https://github.com/owner/repo/blob/master/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\"\n }\n },\n {\n \"name\": \"2016-02-02---A-Brief-History-of-Typography.md\",\n \"path\": \"content/posts/2016-02-02---A-Brief-History-of-Typography.md\",\n \"sha\": \"0eea554365f002d0f1572af9a58522d335a794d5\",\n \"size\": 2786,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2016-02-02---A-Brief-History-of-Typography.md?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/content/posts/2016-02-02---A-Brief-History-of-Typography.md\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/content/posts/2016-02-02---A-Brief-History-of-Typography.md\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2016-02-02---A-Brief-History-of-Typography.md?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\",\n \"html\": \"https://github.com/owner/repo/blob/master/content/posts/2016-02-02---A-Brief-History-of-Typography.md\"\n }\n },\n {\n \"name\": \"2017-18-08---The-Birth-of-Movable-Type.md\",\n \"path\": \"content/posts/2017-18-08---The-Birth-of-Movable-Type.md\",\n \"sha\": \"44f78c474d04273185a95821426f75affc9b0044\",\n \"size\": 16071,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2017-18-08---The-Birth-of-Movable-Type.md?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/content/posts/2017-18-08---The-Birth-of-Movable-Type.md\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/content/posts/2017-18-08---The-Birth-of-Movable-Type.md\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2017-18-08---The-Birth-of-Movable-Type.md?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\",\n \"html\": \"https://github.com/owner/repo/blob/master/content/posts/2017-18-08---The-Birth-of-Movable-Type.md\"\n }\n },\n {\n \"name\": \"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"path\": \"content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"sha\": \"a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"size\": 7465,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"html\": \"https://github.com/owner/repo/blob/master/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md\"\n }\n }\n]\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/static/media?ts=0&ref=master", + "headers": { + "Date": "Tue, 10 Sep 2019 14:03:08 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4278", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"c5b7f6d674ba193bb7b4a5fcf4933034e1b7f2b7\"", + "Last-Modified": "Tue, 10 Sep 2019 14:02:10 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B7C:9D20:117D477:1563EE3:5D77AD1B", + "content-length": "12362", + "connection": "keep-alive" + }, + "response": "[\n {\n \"name\": \"42-line-bible.jpg\",\n \"path\": \"static/media/42-line-bible.jpg\",\n \"sha\": \"41c8d12f9ca5864beb827c381fbeff935209d5fb\",\n \"size\": 671242,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/static/media/42-line-bible.jpg?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/static/media/42-line-bible.jpg\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/41c8d12f9ca5864beb827c381fbeff935209d5fb\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/static/media/42-line-bible.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/static/media/42-line-bible.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/41c8d12f9ca5864beb827c381fbeff935209d5fb\",\n \"html\": \"https://github.com/owner/repo/blob/master/static/media/42-line-bible.jpg\"\n }\n },\n {\n \"name\": \"gutenberg.jpg\",\n \"path\": \"static/media/gutenberg.jpg\",\n \"sha\": \"04315e355873ea5d358d9c371c39a6845c1ae4ae\",\n \"size\": 155002,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/static/media/gutenberg.jpg?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/static/media/gutenberg.jpg\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/04315e355873ea5d358d9c371c39a6845c1ae4ae\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/static/media/gutenberg.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/static/media/gutenberg.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/04315e355873ea5d358d9c371c39a6845c1ae4ae\",\n \"html\": \"https://github.com/owner/repo/blob/master/static/media/gutenberg.jpg\"\n }\n },\n {\n \"name\": \"image-0.jpg\",\n \"path\": \"static/media/image-0.jpg\",\n \"sha\": \"b70a1b64fd4fa9635823231a0ba92c6dc9393f16\",\n \"size\": 660287,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/static/media/image-0.jpg?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/static/media/image-0.jpg\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/b70a1b64fd4fa9635823231a0ba92c6dc9393f16\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/static/media/image-0.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/static/media/image-0.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/b70a1b64fd4fa9635823231a0ba92c6dc9393f16\",\n \"html\": \"https://github.com/owner/repo/blob/master/static/media/image-0.jpg\"\n }\n },\n {\n \"name\": \"image-1.jpg\",\n \"path\": \"static/media/image-1.jpg\",\n \"sha\": \"05eedae372b829c62501ac751b2d42dcc432541b\",\n \"size\": 392411,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/static/media/image-1.jpg?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/static/media/image-1.jpg\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/05eedae372b829c62501ac751b2d42dcc432541b\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/static/media/image-1.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/static/media/image-1.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/05eedae372b829c62501ac751b2d42dcc432541b\",\n \"html\": \"https://github.com/owner/repo/blob/master/static/media/image-1.jpg\"\n }\n },\n {\n \"name\": \"image-2.jpg\",\n \"path\": \"static/media/image-2.jpg\",\n \"sha\": \"53845ed35faf8939bea242bb85eda7c324b1be0b\",\n \"size\": 99147,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/static/media/image-2.jpg?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/static/media/image-2.jpg\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/53845ed35faf8939bea242bb85eda7c324b1be0b\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/static/media/image-2.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/static/media/image-2.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/53845ed35faf8939bea242bb85eda7c324b1be0b\",\n \"html\": \"https://github.com/owner/repo/blob/master/static/media/image-2.jpg\"\n }\n },\n {\n \"name\": \"image-3.jpg\",\n \"path\": \"static/media/image-3.jpg\",\n \"sha\": \"8b2339d97069e826fae1f156212e40ae458454e3\",\n \"size\": 358022,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/static/media/image-3.jpg?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/static/media/image-3.jpg\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/8b2339d97069e826fae1f156212e40ae458454e3\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/static/media/image-3.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/static/media/image-3.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/8b2339d97069e826fae1f156212e40ae458454e3\",\n \"html\": \"https://github.com/owner/repo/blob/master/static/media/image-3.jpg\"\n }\n },\n {\n \"name\": \"image-4.jpg\",\n \"path\": \"static/media/image-4.jpg\",\n \"sha\": \"a8f6f21253a67a4284b5a953b2fe633d44152ecd\",\n \"size\": 114837,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/static/media/image-4.jpg?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/static/media/image-4.jpg\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/a8f6f21253a67a4284b5a953b2fe633d44152ecd\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/static/media/image-4.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/static/media/image-4.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/a8f6f21253a67a4284b5a953b2fe633d44152ecd\",\n \"html\": \"https://github.com/owner/repo/blob/master/static/media/image-4.jpg\"\n }\n },\n {\n \"name\": \"movable-type.jpg\",\n \"path\": \"static/media/movable-type.jpg\",\n \"sha\": \"57b4e925ea00bd8e195cf4418eb6eb2995ea5f10\",\n \"size\": 559028,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/static/media/movable-type.jpg?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/static/media/movable-type.jpg\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/57b4e925ea00bd8e195cf4418eb6eb2995ea5f10\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/static/media/movable-type.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/static/media/movable-type.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/57b4e925ea00bd8e195cf4418eb6eb2995ea5f10\",\n \"html\": \"https://github.com/owner/repo/blob/master/static/media/movable-type.jpg\"\n }\n },\n {\n \"name\": \"printing-press.jpg\",\n \"path\": \"static/media/printing-press.jpg\",\n \"sha\": \"d27f56c9437d9becd2f56cc627c9322c2f1f61f6\",\n \"size\": 279283,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/static/media/printing-press.jpg?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/static/media/printing-press.jpg\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/d27f56c9437d9becd2f56cc627c9322c2f1f61f6\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/static/media/printing-press.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/static/media/printing-press.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/d27f56c9437d9becd2f56cc627c9322c2f1f61f6\",\n \"html\": \"https://github.com/owner/repo/blob/master/static/media/printing-press.jpg\"\n }\n },\n {\n \"name\": \"type-through-time.jpg\",\n \"path\": \"static/media/type-through-time.jpg\",\n \"sha\": \"3f08366a805c51a60ec5056010f22de4ba08abaa\",\n \"size\": 117689,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/static/media/type-through-time.jpg?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/static/media/type-through-time.jpg\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/3f08366a805c51a60ec5056010f22de4ba08abaa\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/static/media/type-through-time.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/static/media/type-through-time.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/3f08366a805c51a60ec5056010f22de4ba08abaa\",\n \"html\": \"https://github.com/owner/repo/blob/master/static/media/type-through-time.jpg\"\n }\n }\n]\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043?ts=0", + "headers": { + "Date": "Tue, 10 Sep 2019 14:03:08 GMT", + "Content-Type": "text/plain; charset=iso-8859-1", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4277", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"b11610ec1fe2f13ce388952c3fdf3423\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B7E:1510E:AE4272:D45C76:5D77AD1C", + "content-length": "1707", + "connection": "keep-alive" + }, + "response": "---\ntitle: Perfecting the Art of Perfection\ndate: \"2016-09-01T23:46:37.121Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Design Inspiration\"\ntags:\n - \"Handwriting\"\n - \"Learning to write\"\ndescription: \"Quisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\"\ncanonical: ''\n---\n\nQuisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\n\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-2.jpg)\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. \n\nPraesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9?ts=0", + "headers": { + "Date": "Tue, 10 Sep 2019 14:03:08 GMT", + "Content-Type": "text/plain; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4276", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"f9b97e27090d24f9b7c773ede73acd0c\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B81:2B1F:12538D5:165EC73:5D77AD1C", + "content-length": "2565", + "connection": "keep-alive" + }, + "response": "---\ntitle: The Origins of Social Stationery Lettering\ndate: \"2016-12-01T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Design Culture\"\ndescription: \"Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante.\"\ncanonical: ''\n---\n\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\n\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-3.jpg)\n\n## Header Level 2\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \n\n
\n\t
\n\t\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\n\t\t
\n\t\t\t— Aliquam tincidunt mauris eu risus.\n\t\t
\n\t
\n
\n\n### Header Level 3\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\n\n```css\n#header h1 a {\n display: block;\n width: 300px;\n height: 80px;\n}\n```\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5?ts=0", + "headers": { + "Date": "Tue, 10 Sep 2019 14:03:08 GMT", + "Content-Type": "text/plain; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4275", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"733ab4cffe213d8db3be254e7fee8f69\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B86:244DB:738AB:8F10E:5D77AD1C", + "content-length": "2786", + "connection": "keep-alive" + }, + "response": "---\ntitle: \"A Brief History of Typography\"\ndate: \"2016-02-02T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Design Inspiration\"\ntags:\n - \"Linotype\"\n - \"Monotype\"\n - \"History of typography\"\n - \"Helvetica\"\ndescription: \"Morbi in sem quis dui placerat ornare. Pellentesque odio nisi, euismod in, pharetra a, ultricies in, diam. Sed arcu. Cras consequat.\"\ncanonical: ''\n---\n\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\n\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-0.jpg)\n\n## Header Level 2\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \n\n
\n\t
\n\t\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\n\t\t
\n\t\t\t— Aliquam tincidunt mauris eu risus.\n\t\t
\n\t
\n
\n\n### Header Level 3\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\n\n```css\n#header h1 a {\n display: block;\n width: 300px;\n height: 80px;\n}\n```\n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044?ts=0", + "headers": { + "Date": "Tue, 10 Sep 2019 14:03:09 GMT", + "Content-Type": "text/plain; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4274", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"6e2453f34250f47bb0adc4ff2f6887a8\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B94:244EB:1845447:1D7C4B6:5D77AD1D", + "content-length": "16071", + "connection": "keep-alive" + }, + "response": "---\ntitle: \"Johannes Gutenberg: The Birth of Movable Type\"\ndate: \"2017-08-18T22:12:03.284Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Typography\"\ntags:\n - \"Open source\"\n - \"Gatsby\"\n - \"Typography\"\ndescription: \"German inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\"\ncanonical: ''\n---\n\nGerman inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\n\n**Johannes Gensfleisch zur Laden zum Gutenberg** (c. 1398 – 1468) was a German blacksmith, goldsmith, printer, and publisher who introduced printing to Europe. His invention of mechanical movable type printing started the Printing Revolution and is widely regarded as the most important event of the modern period. It played a key role in the development of the Renaissance, Reformation, the Age of Enlightenment, and the Scientific revolution and laid the material basis for the modern knowledge-based economy and the spread of learning to the masses.\n\n
\n\t\"Gutenberg\"\n\t
Johannes Gutenberg
\n
\n\nWith his invention of the printing press, Gutenberg was the first European to use movable type printing, in around 1439. Among his many contributions to printing are: the invention of a process for mass-producing movable type; the use of oil-based ink; and the use of a wooden printing press similar to the agricultural screw presses of the period. His truly epochal invention was the combination of these elements into a practical system that allowed the mass production of printed books and was economically viable for printers and readers alike. Gutenberg's method for making type is traditionally considered to have included a type metal alloy and a hand mould for casting type. The alloy was a mixture of lead, tin, and antimony that melted at a relatively low temperature for faster and more economical casting, cast well, and created a durable type.\n\nIn Renaissance Europe, the arrival of mechanical movable type printing introduced the era of mass communication which permanently altered the structure of society. The relatively unrestricted circulation of information — including revolutionary ideas — transcended borders, captured the masses in the Reformation and threatened the power of political and religious authorities; the sharp increase in literacy broke the monopoly of the literate elite on education and learning and bolstered the emerging middle class. Across Europe, the increasing cultural self-awareness of its people led to the rise of proto-nationalism, accelerated by the flowering of the European vernacular languages to the detriment of Latin's status as lingua franca. In the 19th century, the replacement of the hand-operated Gutenberg-style press by steam-powered rotary presses allowed printing on an industrial scale, while Western-style printing was adopted all over the world, becoming practically the sole medium for modern bulk printing.\n\nThe use of movable type was a marked improvement on the handwritten manuscript, which was the existing method of book production in Europe, and upon woodblock printing, and revolutionized European book-making. Gutenberg's printing technology spread rapidly throughout Europe and later the world.\n\nHis major work, the Gutenberg Bible (also known as the 42-line Bible), has been acclaimed for its high aesthetic and technical quality.\n\n## Printing Press\n\nAround 1439, Gutenberg was involved in a financial misadventure making polished metal mirrors (which were believed to capture holy light from religious relics) for sale to pilgrims to Aachen: in 1439 the city was planning to exhibit its collection of relics from Emperor Charlemagne but the event was delayed by one year due to a severe flood and the capital already spent could not be repaid. When the question of satisfying the investors came up, Gutenberg is said to have promised to share a “secret”. It has been widely speculated that this secret may have been the idea of printing with movable type. Also around 1439–1440, the Dutch Laurens Janszoon Coster came up with the idea of printing. Legend has it that the idea came to him “like a ray of light”.\n\n
\n\t\"Early\n\t
Early wooden printing press as depicted in 1568.
\n
\n\nUntil at least 1444 he lived in Strasbourg, most likely in the St. Arbogast parish. It was in Strasbourg in 1440 that Gutenberg is said to have perfected and unveiled the secret of printing based on his research, mysteriously entitled Kunst und Aventur (art and enterprise). It is not clear what work he was engaged in, or whether some early trials with printing from movable type may have been conducted there. After this, there is a gap of four years in the record. In 1448, he was back in Mainz, where he took out a loan from his brother-in-law Arnold Gelthus, quite possibly for a printing press or related paraphernalia. By this date, Gutenberg may have been familiar with intaglio printing; it is claimed that he had worked on copper engravings with an artist known as the Master of Playing Cards.\n\nBy 1450, the press was in operation, and a German poem had been printed, possibly the first item to be printed there. Gutenberg was able to convince the wealthy moneylender Johann Fust for a loan of 800 guilders. Peter Schöffer, who became Fust’s son-in-law, also joined the enterprise. Schöffer had worked as a scribe in Paris and is believed to have designed some of the first typefaces.\n\n
\n\t
\n\t\t

All that has been written to me about that marvelous man seen at Frankfurt is true. I have not seen complete Bibles but only a number of quires of various books of the Bible. The script was very neat and legible, not at all difficult to follow—your grace would be able to read it without effort, and indeed without glasses.

\n\t\t
\n\t\t\t—Future pope Pius II in a letter to Cardinal Carvajal, March 1455\n\t\t
\n\t
\n
\n\nGutenberg's workshop was set up at Hof Humbrecht, a property belonging to a distant relative. It is not clear when Gutenberg conceived the Bible project, but for this he borrowed another 800 guilders from Fust, and work commenced in 1452. At the same time, the press was also printing other, more lucrative texts (possibly Latin grammars). There is also some speculation that there may have been two presses, one for the pedestrian texts, and one for the Bible. One of the profit-making enterprises of the new press was the printing of thousands of indulgences for the church, documented from 1454–55.\n\nIn 1455 Gutenberg completed his 42-line Bible, known as the Gutenberg Bible. About 180 copies were printed, most on paper and some on vellum.\n\n## Court Case\n\nSome time in 1456, there was a dispute between Gutenberg and Fust, and Fust demanded his money back, accusing Gutenberg of misusing the funds. Meanwhile the expenses of the Bible project had proliferated, and Gutenberg's debt now exceeded 20,000 guilders. Fust sued at the archbishop's court. A November 1455 legal document records that there was a partnership for a \"project of the books,\" the funds for which Gutenberg had used for other purposes, according to Fust. The court decided in favor of Fust, giving him control over the Bible printing workshop and half of all printed Bibles.\n\nThus Gutenberg was effectively bankrupt, but it appears he retained (or re-started) a small printing shop, and participated in the printing of a Bible in the town of Bamberg around 1459, for which he seems at least to have supplied the type. But since his printed books never carry his name or a date, it is difficult to be certain, and there is consequently a considerable scholarly debate on this subject. It is also possible that the large Catholicon dictionary, 300 copies of 754 pages, printed in Mainz in 1460, may have been executed in his workshop.\n\nMeanwhile, the Fust–Schöffer shop was the first in Europe to bring out a book with the printer's name and date, the Mainz Psalter of August 1457, and while proudly proclaiming the mechanical process by which it had been produced, it made no mention of Gutenberg.\n\n## Later Life\n\nIn 1462, during a conflict between two archbishops, Mainz was sacked by archbishop Adolph von Nassau, and Gutenberg was exiled. An old man by now, he moved to Eltville where he may have initiated and supervised a new printing press belonging to the brothers Bechtermünze.\n\nIn January 1465, Gutenberg's achievements were recognized and he was given the title Hofmann (gentleman of the court) by von Nassau. This honor included a stipend, an annual court outfit, as well as 2,180 litres of grain and 2,000 litres of wine tax-free. It is believed he may have moved back to Mainz around this time, but this is not certain.\n\n***\n\nGutenberg died in 1468 and was buried in the Franciscan church at Mainz, his contributions largely unknown. This church and the cemetery were later destroyed, and Gutenberg's grave is now lost.\n\nIn 1504, he was mentioned as the inventor of typography in a book by Professor Ivo Wittig. It was not until 1567 that the first portrait of Gutenberg, almost certainly an imaginary reconstruction, appeared in Heinrich Pantaleon's biography of famous Germans.\n\n## Printing Method With Movable Type\n\nGutenberg's early printing process, and what tests he may have made with movable type, are not known in great detail. His later Bibles were printed in such a way as to have required large quantities of type, some estimates suggesting as many as 100,000 individual sorts. Setting each page would take, perhaps, half a day, and considering all the work in loading the press, inking the type, pulling the impressions, hanging up the sheets, distributing the type, etc., it is thought that the Gutenberg–Fust shop might have employed as many as 25 craftsmen.\n\n![Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5](/media/movable-type.jpg)\n\n*Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5*\n\nGutenberg's technique of making movable type remains unclear. In the following decades, punches and copper matrices became standardized in the rapidly disseminating printing presses across Europe. Whether Gutenberg used this sophisticated technique or a somewhat primitive version has been the subject of considerable debate.\n\nIn the standard process of making type, a hard metal punch (made by punchcutting, with the letter carved back to front) is hammered into a softer copper bar, creating a matrix. This is then placed into a hand-held mould and a piece of type, or \"sort\", is cast by filling the mould with molten type-metal; this cools almost at once, and the resulting piece of type can be removed from the mould. The matrix can be reused to create hundreds, or thousands, of identical sorts so that the same character appearing anywhere within the book will appear very uniform, giving rise, over time, to the development of distinct styles of typefaces or fonts. After casting, the sorts are arranged into type-cases, and used to make up pages which are inked and printed, a procedure which can be repeated hundreds, or thousands, of times. The sorts can be reused in any combination, earning the process the name of “movable type”.\n\nThe invention of the making of types with punch, matrix and mold has been widely attributed to Gutenberg. However, recent evidence suggests that Gutenberg's process was somewhat different. If he used the punch and matrix approach, all his letters should have been nearly identical, with some variations due to miscasting and inking. However, the type used in Gutenberg's earliest work shows other variations.\n\n
\n\t
\n\t\t

It is a press, certainly, but a press from which shall flow in inexhaustible streams… Through it, god will spread his word.

\n\t\t
\n\t\t\t—Johannes Gutenberg\n\t\t
\n\t
\n
\n\nIn 2001, the physicist Blaise Agüera y Arcas and Princeton librarian Paul Needham, used digital scans of a Papal bull in the Scheide Library, Princeton, to carefully compare the same letters (types) appearing in different parts of the printed text. The irregularities in Gutenberg's type, particularly in simple characters such as the hyphen, suggested that the variations could not have come from either ink smear or from wear and damage on the pieces of metal on the types themselves. While some identical types are clearly used on other pages, other variations, subjected to detailed image analysis, suggested that they could not have been produced from the same matrix. Transmitted light pictures of the page also appeared to reveal substructures in the type that could not arise from traditional punchcutting techniques. They hypothesized that the method may have involved impressing simple shapes to create alphabets in “cuneiform” style in a matrix made of some soft material, perhaps sand. Casting the type would destroy the mould, and the matrix would need to be recreated to make each additional sort. This could explain the variations in the type, as well as the substructures observed in the printed images.\n\nThus, they feel that “the decisive factor for the birth of typography”, the use of reusable moulds for casting type, might have been a more progressive process than was previously thought. They suggest that the additional step of using the punch to create a mould that could be reused many times was not taken until twenty years later, in the 1470s. Others have not accepted some or all of their suggestions, and have interpreted the evidence in other ways, and the truth of the matter remains very uncertain.\n\nA 1568 history by Hadrianus Junius of Holland claims that the basic idea of the movable type came to Gutenberg from Laurens Janszoon Coster via Fust, who was apprenticed to Coster in the 1430s and may have brought some of his equipment from Haarlem to Mainz. While Coster appears to have experimented with moulds and castable metal type, there is no evidence that he had actually printed anything with this technology. He was an inventor and a goldsmith. However, there is one indirect supporter of the claim that Coster might be the inventor. The author of the Cologne Chronicle of 1499 quotes Ulrich Zell, the first printer of Cologne, that printing was performed in Mainz in 1450, but that some type of printing of lower quality had previously occurred in the Netherlands. However, the chronicle does not mention the name of Coster, while it actually credits Gutenberg as the \"first inventor of printing\" in the very same passage (fol. 312). The first securely dated book by Dutch printers is from 1471, and the Coster connection is today regarded as a mere legend.\n\nThe 19th century printer and typefounder Fournier Le Jeune suggested that Gutenberg might not have been using type cast with a reusable matrix, but possibly wooden types that were carved individually. A similar suggestion was made by Nash in 2004. This remains possible, albeit entirely unproven.\n\nIt has also been questioned whether Gutenberg used movable types at all. In 2004, Italian professor Bruno Fabbiani claimed that examination of the 42-line Bible revealed an overlapping of letters, suggesting that Gutenberg did not in fact use movable type (individual cast characters) but rather used whole plates made from a system somewhat like a modern typewriter, whereby the letters were stamped successively into the plate and then printed. However, most specialists regard the occasional overlapping of type as caused by paper movement over pieces of type of slightly unequal height.", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774?ts=0", + "headers": { + "Date": "Tue, 10 Sep 2019 14:03:10 GMT", + "Content-Type": "text/plain; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4273", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"d2bb4e67afce9cad20457cc0c72b8a41\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B96:15110:18BE479:1E11165:5D77AD1D", + "content-length": "7465", + "connection": "keep-alive" + }, + "response": "---\ntitle: Humane Typography in the Digital Age\ndate: \"2017-08-19T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Typography\"\ntags:\n - \"Design\"\n - \"Typography\"\n - \"Web Development\"\ndescription: \"An Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\"\ncanonical: ''\n---\n\n- [The first transition](#the-first-transition)\n- [The digital age](#the-digital-age)\n- [Loss of humanity through transitions](#loss-of-humanity-through-transitions)\n- [Chasing perfection](#chasing-perfection)\n\nAn Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\n\nThe typography of this industrial age was no longer handcrafted. Mass production and profit became more important. Quantity mattered more than the quality. The books and printed works in general lost a part of its humanity. The typefaces were not produced by craftsmen anymore. It was the machines printing and tying the books together now. The craftsmen had to let go of their craft and became a cog in the process. An extension of the industrial machine.\n\nBut the victory of the industrialism didn’t mean that the craftsmen were completely extinct. The two worlds continued to coexist independently. Each recognising the good in the other — the power of industrialism and the humanity of craftsmanship. This was the second transition that would strip typography of a part of its humanity. We have to go 500 years back in time to meet the first one.\n\n## The first transition\n\nA similar conflict emerged after the invention of the first printing press in Europe. Johannes Gutenberg invented movable type and used it to produce different compositions. His workshop could print up to 240 impressions per hour. Until then, the books were being copied by hand. All the books were handwritten and decorated with hand drawn ornaments and figures. A process of copying a book was long but each book, even a copy, was a work of art.\n\nThe first printed books were, at first, perceived as inferior to the handwritten ones. They were smaller and cheaper to produce. Movable type provided the printers with flexibility that allowed them to print books in languages other than Latin. Gill describes the transition to industrialism as something that people needed and wanted. Something similar happened after the first printed books emerged. People wanted books in a language they understood and they wanted books they could take with them. They were hungry for knowledge and printed books satisfied this hunger.\n\n![42-line-bible.jpg](/media/42-line-bible.jpg)\n\n*The 42–Line Bible, printed by Gutenberg.*\n\nBut, through this transition, the book lost a large part of its humanity. The machine took over most of the process but craftsmanship was still a part of it. The typefaces were cut manually by the first punch cutters. The paper was made by hand. The illustrations and ornaments were still being hand drawn. These were the remains of the craftsmanship that went almost extinct in the times of Eric Gill.\n\n## The digital age\n\nThe first transition took away a large part of humanity from written communication. Industrialisation, the second transition described by Eric Gill, took away most of what was left. But it’s the third transition that stripped it naked. Typefaces are faceless these days. They’re just fonts on our computers. Hardly anyone knows their stories. Hardly anyone cares. Flicking through thousands of typefaces and finding the “right one” is a matter of minutes.\n\n> In the new computer age the proliferation of typefaces and type manipulations represents a new level of visual pollution threatening our culture. Out of thousands of typefaces, all we need are a few basic ones, and trash the rest.\n>\n— Massimo Vignelli\n\nTypography is not about typefaces. It’s not about what looks best, it’s about what feels right. What communicates the message best. Typography, in its essence, is about the message. “Typographical design should perform optically what the speaker creates through voice and gesture of his thoughts.”, as El Lissitzky, a famous Russian typographer, put it.\n\n## Loss of humanity through transitions\n\nEach transition took away a part of humanity from written language. Handwritten books being the most humane form and the digital typefaces being the least. Overuse of Helvetica is a good example. Messages are being told in a typeface just because it’s a safe option. It’s always there. Everyone knows it but yet, nobody knows it. Stop someone on the street and ask him what Helvetica is? Ask a designer the same question. Ask him where it came from, when, why and who designed it. Most of them will fail to answer these questions. Most of them used it in their precious projects but they still don’t spot it in the street.\n\n
\n\t
\n\t\t

Knowledge of the quality of a typeface is of the greatest importance for the functional, aesthetic and psychological effect.

\n\t\t
\n\t\t\t— Josef Mueller-Brockmann\n\t\t
\n\t
\n
\n\nTypefaces don’t look handmade these days. And that’s all right. They don’t have to. Industrialism took that away from them and we’re fine with it. We’ve traded that part of humanity for a process that produces more books that are easier to read. That can’t be bad. And it isn’t.\n\n> Humane typography will often be comparatively rough and even uncouth; but while a certain uncouthness does not seriously matter in humane works, uncouthness has no excuse whatever in the productions of the machine.\n>\n> — Eric Gill\n\nWe’ve come close to “perfection” in the last five centuries. The letters are crisp and without rough edges. We print our compositions with high–precision printers on a high quality, machine made paper.\n\n![type-through-time.jpg](/media/type-through-time.jpg)\n\n*Type through 5 centuries.*\n\nWe lost a part of ourselves because of this chase after perfection. We forgot about the craftsmanship along the way. And the worst part is that we don’t care. The transition to the digital age made that clear. We choose typefaces like clueless zombies. There’s no meaning in our work. Type sizes, leading, margins… It’s all just a few clicks or lines of code. The message isn’t important anymore. There’s no more “why” behind the “what”.\n\n## Chasing perfection\n\nHuman beings aren’t perfect. Perfection is something that will always elude us. There will always be a small part of humanity in everything we do. No matter how small that part, we should make sure that it transcends the limits of the medium. We have to think about the message first. What typeface should we use and why? Does the typeface match the message and what we want to communicate with it? What will be the leading and why? Will there be more typefaces in our design? On what ground will they be combined? What makes our design unique and why? This is the part of humanity that is left in typography. It might be the last part. Are we really going to give it up?\n\n*Originally published by [Matej Latin](http://matejlatin.co.uk/) on [Medium](https://medium.com/design-notes/humane-typography-in-the-digital-age-9bd5c16199bd?ref=webdesignernews.com#.lygo82z0x).*", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/1970-01-01-first-title.json?ts=300&ref=refs/meta/_netlify_cms", + "headers": { + "Date": "Tue, 10 Sep 2019 14:03:12 GMT", + "Content-Type": "application/vnd.github.VERSION.raw; charset=utf-8", + "Content-Length": "462", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4272", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"8786a8f396427d4acbff359e9b8d70e8997e7e0f\"", + "Last-Modified": "Tue, 10 Sep 2019 14:02:51 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B98:1510F:126097F:164ED1E:5D77AD20", + "connection": "keep-alive" + }, + "response": "{\"type\":\"PR\",\"pr\":{\"number\":1,\"head\":\"18133e07aaa33f5ea6de572d751655e103b9ce5a\"},\"user\":\"owner\",\"status\":\"draft\",\"branch\":\"cms/1970-01-01-first-title\",\"collection\":\"posts\",\"commitMessage\":\"Create Post “1970-01-01-first-title”\",\"title\":\"first title\",\"description\":\"first description\",\"objects\":{\"entry\":{\"path\":\"content/posts/1970-01-01-first-title.md\",\"sha\":\"a041245814892e3f73f63ca54333fda649b7fc0b\"},\"files\":[]},\"timeStamp\":\"1970-01-01T00:00:00.300Z\"}", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=master", + "headers": { + "Date": "Tue, 10 Sep 2019 14:03:13 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "404 Not Found", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4271", + "X-RateLimit-Reset": "1568126651", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B9D:9D20:117DA96:15646AA:5D77AD21", + "content-length": "116", + "connection": "keep-alive" + }, + "response": "{\n \"message\": \"Not Found\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/#get-contents\"\n}\n", + "status": 404 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=cms/1970-01-01-first-title", + "headers": { + "Date": "Tue, 10 Sep 2019 14:03:13 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "404 Not Found", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4270", + "X-RateLimit-Reset": "1568126651", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B9A:B4DA:53A81E:660E3D:5D77AD21", + "content-length": "148", + "connection": "keep-alive" + }, + "response": "{\n \"message\": \"No commit found for the ref cms/1970-01-01-first-title\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/\"\n}\n", + "status": 404 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=master", + "headers": { + "Date": "Tue, 10 Sep 2019 14:03:14 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "404 Not Found", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4269", + "X-RateLimit-Reset": "1568126651", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B9F:2B15:4F1A79:6006BF:5D77AD21", + "content-length": "116", + "connection": "keep-alive" + }, + "response": "{\n \"message\": \"Not Found\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/#get-contents\"\n}\n", + "status": 404 + }, + { + "body": "{\"content\":\"LS0tCnRlbXBsYXRlOiBwb3N0CnRpdGxlOiBmaXJzdCB0aXRsZQpkcmFmdDogdHJ1ZQpkYXRlOiAxOTcwLTAxLTAxVDAwOjAwOjAwLjAwMFoKZGVzY3JpcHRpb246IGZpcnN0IGRlc2NyaXB0aW9uCmNhdGVnb3J5OiBmaXJzdCBjYXRlZ29yeQp0YWdzOgogIC0gdGFnMQotLS0KZmlyc3QgYm9keQo=\",\"encoding\":\"base64\"}", + "method": "POST", + "url": "/repos/owner/repo/git/blobs?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:03:14 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "207", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4268", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"cb99eafe6ceb0316a6aa5e0717f30f21\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BA0:244E1:52A363:63C340:5D77AD22", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"a041245814892e3f73f63ca54333fda649b7fc0b\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b\"\n}\n", + "status": 201 + }, + { + "method": "GET", + "url": "/repos/owner/repo/branches/master?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:03:15 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4267", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"80c77d2f81ab07f51b5d129d0995389d\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BA2:1510E:AE486F:D463E9:5D77AD23", + "content-length": "5961", + "connection": "keep-alive" + }, + "response": "{\n \"name\": \"master\",\n \"commit\": {\n \"sha\": \"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NTc1Mjc2OjcyNjE3MmRlYWU5OWM4YTJjZWE0YzcxZTczNGEwMmE3OTNkNGQ5ZTU=\",\n \"commit\": {\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-08T09:08:14Z\"\n },\n \"committer\": {\n \"name\": \"GitHub\",\n \"email\": \"noreply@github.com\",\n \"date\": \"2019-09-08T09:08:14Z\"\n },\n \"message\": \"Merge pull request #10 from owner/chore/update_dependencies\\n\\nChore: update dependencies\",\n \"tree\": {\n \"sha\": \"c5b7f6d674ba193bb7b4a5fcf4933034e1b7f2b7\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/c5b7f6d674ba193bb7b4a5fcf4933034e1b7f2b7\"\n },\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"comment_count\": 0,\n \"verification\": {\n \"verified\": true,\n \"reason\": \"valid\",\n \"signature\": \"-----BEGIN PGP SIGNATURE-----\\n\\nwsBcBAABCAAQBQJddMT+CRBK7hj4Ov3rIwAAdHIIABWcobVYZFMuqSPezceRaKDr\\npXGqxvB3WLiIrvsQiBz2si9SvufXxLUdq72iaYTbXMCqIAAIBDNwHLltOKcbUF9J\\nKa8pD6cq7jpNyZfhI8xlapMwEZPu53as0tSvwdOnl/0iL+WYjUZUFQR+vrWEmllu\\nhIES9QxU2nk5zcS7t8sFRA+sJdll8GzzhoWYkpw3wgqpxCzJdf5HJS0tWyVCZM5U\\nCgSpSgTvz9bALnQxu7YVrfLGEvi8S7LaOEz5HQc+TV1hNR2dfl5hhiHhWQ1Rsx5w\\nUECV01vItNWhx2dyMn77hIu/G+bTH89WZDU+CmifsNkmvkq90fk4eNt8Hg1mxn4=\\n=6ayM\\n-----END PGP SIGNATURE-----\\n\",\n \"payload\": \"tree c5b7f6d674ba193bb7b4a5fcf4933034e1b7f2b7\\nparent 8ade583d7c02e7769dd685ca64c10851c09f51cf\\nparent 4940957ff42b034d8c47d64b383c34548a34fbb5\\nauthor owner 1567933694 +0300\\ncommitter GitHub 1567933694 +0300\\n\\nMerge pull request #10 from owner/chore/update_dependencies\\n\\nChore: update dependencies\"\n }\n },\n \"url\": \"https://api.github.com/repos/owner/repo/commits/726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"html_url\": \"https://github.com/owner/repo/commit/726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/commits/726172deae99c8a2cea4c71e734a02a793d4d9e5/comments\",\n \"author\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"committer\": {\n \"login\": \"web-flow\",\n \"id\": 19864447,\n \"node_id\": \"MDQ6VXNlcjE5ODY0NDQ3\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/web-flow\",\n \"html_url\": \"https://github.com/web-flow\",\n \"followers_url\": \"https://api.github.com/users/web-flow/followers\",\n \"following_url\": \"https://api.github.com/users/web-flow/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/web-flow/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/web-flow/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/web-flow/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/web-flow/orgs\",\n \"repos_url\": \"https://api.github.com/users/web-flow/repos\",\n \"events_url\": \"https://api.github.com/users/web-flow/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/web-flow/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"parents\": [\n {\n \"sha\": \"8ade583d7c02e7769dd685ca64c10851c09f51cf\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/8ade583d7c02e7769dd685ca64c10851c09f51cf\",\n \"html_url\": \"https://github.com/owner/repo/commit/8ade583d7c02e7769dd685ca64c10851c09f51cf\"\n },\n {\n \"sha\": \"4940957ff42b034d8c47d64b383c34548a34fbb5\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/4940957ff42b034d8c47d64b383c34548a34fbb5\",\n \"html_url\": \"https://github.com/owner/repo/commit/4940957ff42b034d8c47d64b383c34548a34fbb5\"\n }\n ]\n },\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/branches/master\",\n \"html\": \"https://github.com/owner/repo/tree/master\"\n },\n \"protected\": false,\n \"protection\": {\n \"enabled\": false,\n \"required_status_checks\": {\n \"enforcement_level\": \"off\",\n \"contexts\": [\n\n ]\n }\n },\n \"protection_url\": \"https://api.github.com/repos/owner/repo/branches/master/protection\"\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/trees/726172deae99c8a2cea4c71e734a02a793d4d9e5?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:03:16 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4266", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"7a035f3359b977cd956a086f27ff138d\"", + "Last-Modified": "Tue, 10 Sep 2019 14:02:10 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BA4:9D1D:19D311:1F881A:5D77AD23", + "content-length": "11769", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"tree\": [\n {\n \"path\": \".circleci\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"e5e9af3301cac61f120b8e4d40b1733c7a45685a\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/e5e9af3301cac61f120b8e4d40b1733c7a45685a\"\n },\n {\n \"path\": \".eslintignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"80b4531b026d19f8fa589efd122e76199d23f967\",\n \"size\": 39,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/80b4531b026d19f8fa589efd122e76199d23f967\"\n },\n {\n \"path\": \".eslintrc.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"370684994aaed5b858da3a006f48cfa57e88fd27\",\n \"size\": 414,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/370684994aaed5b858da3a006f48cfa57e88fd27\"\n },\n {\n \"path\": \".flowconfig\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14aa2ac4cc0e15223ad98630a6f1325fc81f8043\",\n \"size\": 283,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14aa2ac4cc0e15223ad98630a6f1325fc81f8043\"\n },\n {\n \"path\": \".gitattributes\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"10a369ddf4f603337cabc6f21646508323941ce1\",\n \"size\": 135,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/10a369ddf4f603337cabc6f21646508323941ce1\"\n },\n {\n \"path\": \".github\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4ebeece548b52b20af59622354530a6d33b50b43\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4ebeece548b52b20af59622354530a6d33b50b43\"\n },\n {\n \"path\": \".gitignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"c071ba35b0e49899bab6d610a68eef667dbbf157\",\n \"size\": 169,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/c071ba35b0e49899bab6d610a68eef667dbbf157\"\n },\n {\n \"path\": \".prettierignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"393f050e123d998cf8c8b362ff95cc8ac4d250e5\",\n \"size\": 45,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/393f050e123d998cf8c8b362ff95cc8ac4d250e5\"\n },\n {\n \"path\": \".prettierrc\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e52ad05bb13b084d7949dd76e1b2517455162150\",\n \"size\": 223,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/e52ad05bb13b084d7949dd76e1b2517455162150\"\n },\n {\n \"path\": \".stylelintrc.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"4b4c9698d10d756f5faa025659b86375428ed0a7\",\n \"size\": 718,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/4b4c9698d10d756f5faa025659b86375428ed0a7\"\n },\n {\n \"path\": \".vscode\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"286e97ec0113ea8242b41ac222e2c3e8077e6f1e\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/286e97ec0113ea8242b41ac222e2c3e8077e6f1e\"\n },\n {\n \"path\": \"CHANGELOG.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"070a5d4f0eacd2dc0be81ae8996f8982de43046e\",\n \"size\": 2113,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/070a5d4f0eacd2dc0be81ae8996f8982de43046e\"\n },\n {\n \"path\": \"CODE_OF_CONDUCT.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"92bc7565ff0ee145a0041b5179a820f14f39ab22\",\n \"size\": 3355,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/92bc7565ff0ee145a0041b5179a820f14f39ab22\"\n },\n {\n \"path\": \"CONTRIBUTING.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"8552aa241254a61258e1ff9666ab36f32fb1e3b9\",\n \"size\": 3548,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/8552aa241254a61258e1ff9666ab36f32fb1e3b9\"\n },\n {\n \"path\": \"LICENSE\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"42d85938357b49977c126ca03b199129082d4fb8\",\n \"size\": 1091,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/42d85938357b49977c126ca03b199129082d4fb8\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"19df50a78654c8d757ca7f38447aa3d09c7abcce\",\n \"size\": 3698,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/19df50a78654c8d757ca7f38447aa3d09c7abcce\"\n },\n {\n \"path\": \"backend\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\"\n },\n {\n \"path\": \"config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"58afd573bbb69fcca000efd0f5d90b93c93a98dd\",\n \"size\": 853,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/58afd573bbb69fcca000efd0f5d90b93c93a98dd\"\n },\n {\n \"path\": \"content\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/0294ef106c58743907a5c855da1eb0f87b0b6dfc\"\n },\n {\n \"path\": \"flow-typed\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"86c32fd6c3118be5e0dbbb231a834447357236c6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/86c32fd6c3118be5e0dbbb231a834447357236c6\"\n },\n {\n \"path\": \"flow\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"0af45ad00d155c8d8c7407d913ff85278244c9ce\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/0af45ad00d155c8d8c7407d913ff85278244c9ce\"\n },\n {\n \"path\": \"gatsby-browser.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9bd2c9dce175f04980e91cd9dc295a299e3cdb80\",\n \"size\": 90,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9bd2c9dce175f04980e91cd9dc295a299e3cdb80\"\n },\n {\n \"path\": \"gatsby-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"353a109dad62e3f25bf9f5e6a2167f21a6c8b459\",\n \"size\": 7228,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/353a109dad62e3f25bf9f5e6a2167f21a6c8b459\"\n },\n {\n \"path\": \"gatsby-node.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14a207883c2093d2cc071bc5a464e165bcc1fead\",\n \"size\": 409,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14a207883c2093d2cc071bc5a464e165bcc1fead\"\n },\n {\n \"path\": \"gatsby\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4f23c06cd1740bf78304d2c0b29bf6bfdf427981\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4f23c06cd1740bf78304d2c0b29bf6bfdf427981\"\n },\n {\n \"path\": \"jest\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\"\n },\n {\n \"path\": \"netlify.toml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"599b99cc5700404fde316a7ede829776f23e7d45\",\n \"size\": 137,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/599b99cc5700404fde316a7ede829776f23e7d45\"\n },\n {\n \"path\": \"package.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9d777616438b90a18f1a4ebfd5f114b4c06c6f17\",\n \"size\": 6855,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9d777616438b90a18f1a4ebfd5f114b4c06c6f17\"\n },\n {\n \"path\": \"postcss-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d216501e9b351a72e00ba0b7459a6500e27e7da2\",\n \"size\": 703,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d216501e9b351a72e00ba0b7459a6500e27e7da2\"\n },\n {\n \"path\": \"renovate.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"dcc309398785698b8870545c32051a3d72dd8271\",\n \"size\": 460,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/dcc309398785698b8870545c32051a3d72dd8271\"\n },\n {\n \"path\": \"serverless-scripts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ee3701f2fbfc7196ba340f6481d1387d20527898\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ee3701f2fbfc7196ba340f6481d1387d20527898\"\n },\n {\n \"path\": \"serverless-single-page-app-plugin\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"08763fcfba643a06a452398517019bea4a5850ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/08763fcfba643a06a452398517019bea4a5850ba\"\n },\n {\n \"path\": \"serverless.yml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"20b22c5fad229f35d029bf6614d333d82fe8a987\",\n \"size\": 7803,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/20b22c5fad229f35d029bf6614d333d82fe8a987\"\n },\n {\n \"path\": \"src\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"8cdb35a88232c0f32f12f130c92c7cc55f97f471\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/8cdb35a88232c0f32f12f130c92c7cc55f97f471\"\n },\n {\n \"path\": \"static\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"53c6380a600a030d3722bff7ecde36f749fb6964\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/53c6380a600a030d3722bff7ecde36f749fb6964\"\n },\n {\n \"path\": \"utils\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"a592549c9f74db40b51efefcda2fd76810405f27\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/a592549c9f74db40b51efefcda2fd76810405f27\"\n },\n {\n \"path\": \"yarn.lock\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"475c9c1924ca752a0686303e2fdeb7b13ad75f57\",\n \"size\": 793903,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/475c9c1924ca752a0686303e2fdeb7b13ad75f57\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/trees/0294ef106c58743907a5c855da1eb0f87b0b6dfc?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:03:16 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4265", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"7d6ed23edb93fdd710127003bd99d3e3\"", + "Last-Modified": "Tue, 10 Sep 2019 14:02:10 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BA6:B4D3:B2EE6:CDE25:5D77AD24", + "content-length": "831", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\n \"tree\": [\n {\n \"path\": \"pages\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\"\n },\n {\n \"path\": \"posts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"34892575e216c06e757093f036bd8e057c78a52f\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/34892575e216c06e757093f036bd8e057c78a52f\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/trees/34892575e216c06e757093f036bd8e057c78a52f?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:03:17 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4264", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"9485ec7bb0224060380d07454fc25c0a\"", + "Last-Modified": "Tue, 10 Sep 2019 14:02:10 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BA8:2B1F:12543D4:165FA29:5D77AD24", + "content-length": "2030", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"34892575e216c06e757093f036bd8e057c78a52f\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/34892575e216c06e757093f036bd8e057c78a52f\",\n \"tree\": [\n {\n \"path\": \"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"size\": 1707,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\"\n },\n {\n \"path\": \"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"size\": 2565,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\"\n },\n {\n \"path\": \"2016-02-02---A-Brief-History-of-Typography.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"0eea554365f002d0f1572af9a58522d335a794d5\",\n \"size\": 2786,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\"\n },\n {\n \"path\": \"2017-18-08---The-Birth-of-Movable-Type.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"44f78c474d04273185a95821426f75affc9b0044\",\n \"size\": 16071,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\"\n },\n {\n \"path\": \"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"size\": 7465,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 200 + }, + { + "body": "{\"base_tree\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"tree\":[{\"path\":\"1970-01-01-first-title.md\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"a041245814892e3f73f63ca54333fda649b7fc0b\"}]}", + "method": "POST", + "url": "/repos/owner/repo/git/trees?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:03:18 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "2362", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4263", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"ec28ace732cd92ce67ac2d4bb75b73a8\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BAA:2B15:4F1C16:6008C0:5D77AD25", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a041245814892e3f73f63ca54333fda649b7fc0b\",\n \"size\": 167,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b\"\n },\n {\n \"path\": \"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"size\": 1707,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\"\n },\n {\n \"path\": \"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"size\": 2565,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\"\n },\n {\n \"path\": \"2016-02-02---A-Brief-History-of-Typography.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"0eea554365f002d0f1572af9a58522d335a794d5\",\n \"size\": 2786,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\"\n },\n {\n \"path\": \"2017-18-08---The-Birth-of-Movable-Type.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"44f78c474d04273185a95821426f75affc9b0044\",\n \"size\": 16071,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\"\n },\n {\n \"path\": \"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"size\": 7465,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"base_tree\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\"tree\":[{\"path\":\"posts\",\"mode\":\"040000\",\"type\":\"tree\",\"sha\":\"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\"parentSha\":\"34892575e216c06e757093f036bd8e057c78a52f\"}]}", + "method": "POST", + "url": "/repos/owner/repo/git/trees?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:03:18 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "831", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4262", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"8a08d49c75e6316b7eedd97658f5dd3d\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BAC:2B19:AB3E2E:D0756D:5D77AD26", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"tree\": [\n {\n \"path\": \"pages\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\"\n },\n {\n \"path\": \"posts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"base_tree\":\"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\"tree\":[{\"path\":\"content\",\"mode\":\"040000\",\"type\":\"tree\",\"sha\":\"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\"parentSha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\"}]}", + "method": "POST", + "url": "/repos/owner/repo/git/trees?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:03:19 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "11769", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4261", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"fb9e1158542ab7bb09a23b22e7f7dbd8\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/trees/daee8d5d15d144e8779955166a2afeccde2770e1", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BB1:B4DA:53AB8C:66126E:5D77AD27", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"daee8d5d15d144e8779955166a2afeccde2770e1\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/daee8d5d15d144e8779955166a2afeccde2770e1\",\n \"tree\": [\n {\n \"path\": \".circleci\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"e5e9af3301cac61f120b8e4d40b1733c7a45685a\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/e5e9af3301cac61f120b8e4d40b1733c7a45685a\"\n },\n {\n \"path\": \".eslintignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"80b4531b026d19f8fa589efd122e76199d23f967\",\n \"size\": 39,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/80b4531b026d19f8fa589efd122e76199d23f967\"\n },\n {\n \"path\": \".eslintrc.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"370684994aaed5b858da3a006f48cfa57e88fd27\",\n \"size\": 414,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/370684994aaed5b858da3a006f48cfa57e88fd27\"\n },\n {\n \"path\": \".flowconfig\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14aa2ac4cc0e15223ad98630a6f1325fc81f8043\",\n \"size\": 283,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14aa2ac4cc0e15223ad98630a6f1325fc81f8043\"\n },\n {\n \"path\": \".gitattributes\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"10a369ddf4f603337cabc6f21646508323941ce1\",\n \"size\": 135,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/10a369ddf4f603337cabc6f21646508323941ce1\"\n },\n {\n \"path\": \".github\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4ebeece548b52b20af59622354530a6d33b50b43\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4ebeece548b52b20af59622354530a6d33b50b43\"\n },\n {\n \"path\": \".gitignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"c071ba35b0e49899bab6d610a68eef667dbbf157\",\n \"size\": 169,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/c071ba35b0e49899bab6d610a68eef667dbbf157\"\n },\n {\n \"path\": \".prettierignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"393f050e123d998cf8c8b362ff95cc8ac4d250e5\",\n \"size\": 45,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/393f050e123d998cf8c8b362ff95cc8ac4d250e5\"\n },\n {\n \"path\": \".prettierrc\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e52ad05bb13b084d7949dd76e1b2517455162150\",\n \"size\": 223,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/e52ad05bb13b084d7949dd76e1b2517455162150\"\n },\n {\n \"path\": \".stylelintrc.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"4b4c9698d10d756f5faa025659b86375428ed0a7\",\n \"size\": 718,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/4b4c9698d10d756f5faa025659b86375428ed0a7\"\n },\n {\n \"path\": \".vscode\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"286e97ec0113ea8242b41ac222e2c3e8077e6f1e\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/286e97ec0113ea8242b41ac222e2c3e8077e6f1e\"\n },\n {\n \"path\": \"CHANGELOG.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"070a5d4f0eacd2dc0be81ae8996f8982de43046e\",\n \"size\": 2113,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/070a5d4f0eacd2dc0be81ae8996f8982de43046e\"\n },\n {\n \"path\": \"CODE_OF_CONDUCT.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"92bc7565ff0ee145a0041b5179a820f14f39ab22\",\n \"size\": 3355,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/92bc7565ff0ee145a0041b5179a820f14f39ab22\"\n },\n {\n \"path\": \"CONTRIBUTING.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"8552aa241254a61258e1ff9666ab36f32fb1e3b9\",\n \"size\": 3548,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/8552aa241254a61258e1ff9666ab36f32fb1e3b9\"\n },\n {\n \"path\": \"LICENSE\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"42d85938357b49977c126ca03b199129082d4fb8\",\n \"size\": 1091,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/42d85938357b49977c126ca03b199129082d4fb8\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"19df50a78654c8d757ca7f38447aa3d09c7abcce\",\n \"size\": 3698,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/19df50a78654c8d757ca7f38447aa3d09c7abcce\"\n },\n {\n \"path\": \"backend\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\"\n },\n {\n \"path\": \"config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"58afd573bbb69fcca000efd0f5d90b93c93a98dd\",\n \"size\": 853,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/58afd573bbb69fcca000efd0f5d90b93c93a98dd\"\n },\n {\n \"path\": \"content\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639\"\n },\n {\n \"path\": \"flow-typed\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"86c32fd6c3118be5e0dbbb231a834447357236c6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/86c32fd6c3118be5e0dbbb231a834447357236c6\"\n },\n {\n \"path\": \"flow\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"0af45ad00d155c8d8c7407d913ff85278244c9ce\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/0af45ad00d155c8d8c7407d913ff85278244c9ce\"\n },\n {\n \"path\": \"gatsby-browser.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9bd2c9dce175f04980e91cd9dc295a299e3cdb80\",\n \"size\": 90,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9bd2c9dce175f04980e91cd9dc295a299e3cdb80\"\n },\n {\n \"path\": \"gatsby-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"353a109dad62e3f25bf9f5e6a2167f21a6c8b459\",\n \"size\": 7228,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/353a109dad62e3f25bf9f5e6a2167f21a6c8b459\"\n },\n {\n \"path\": \"gatsby-node.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14a207883c2093d2cc071bc5a464e165bcc1fead\",\n \"size\": 409,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14a207883c2093d2cc071bc5a464e165bcc1fead\"\n },\n {\n \"path\": \"gatsby\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4f23c06cd1740bf78304d2c0b29bf6bfdf427981\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4f23c06cd1740bf78304d2c0b29bf6bfdf427981\"\n },\n {\n \"path\": \"jest\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\"\n },\n {\n \"path\": \"netlify.toml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"599b99cc5700404fde316a7ede829776f23e7d45\",\n \"size\": 137,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/599b99cc5700404fde316a7ede829776f23e7d45\"\n },\n {\n \"path\": \"package.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9d777616438b90a18f1a4ebfd5f114b4c06c6f17\",\n \"size\": 6855,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9d777616438b90a18f1a4ebfd5f114b4c06c6f17\"\n },\n {\n \"path\": \"postcss-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d216501e9b351a72e00ba0b7459a6500e27e7da2\",\n \"size\": 703,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d216501e9b351a72e00ba0b7459a6500e27e7da2\"\n },\n {\n \"path\": \"renovate.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"dcc309398785698b8870545c32051a3d72dd8271\",\n \"size\": 460,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/dcc309398785698b8870545c32051a3d72dd8271\"\n },\n {\n \"path\": \"serverless-scripts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ee3701f2fbfc7196ba340f6481d1387d20527898\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ee3701f2fbfc7196ba340f6481d1387d20527898\"\n },\n {\n \"path\": \"serverless-single-page-app-plugin\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"08763fcfba643a06a452398517019bea4a5850ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/08763fcfba643a06a452398517019bea4a5850ba\"\n },\n {\n \"path\": \"serverless.yml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"20b22c5fad229f35d029bf6614d333d82fe8a987\",\n \"size\": 7803,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/20b22c5fad229f35d029bf6614d333d82fe8a987\"\n },\n {\n \"path\": \"src\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"8cdb35a88232c0f32f12f130c92c7cc55f97f471\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/8cdb35a88232c0f32f12f130c92c7cc55f97f471\"\n },\n {\n \"path\": \"static\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"53c6380a600a030d3722bff7ecde36f749fb6964\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/53c6380a600a030d3722bff7ecde36f749fb6964\"\n },\n {\n \"path\": \"utils\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"a592549c9f74db40b51efefcda2fd76810405f27\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/a592549c9f74db40b51efefcda2fd76810405f27\"\n },\n {\n \"path\": \"yarn.lock\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"475c9c1924ca752a0686303e2fdeb7b13ad75f57\",\n \"size\": 793903,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/475c9c1924ca752a0686303e2fdeb7b13ad75f57\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"message\":\"Create Post “1970-01-01-first-title”\",\"tree\":\"daee8d5d15d144e8779955166a2afeccde2770e1\",\"parents\":[\"726172deae99c8a2cea4c71e734a02a793d4d9e5\"]}", + "method": "POST", + "url": "/repos/owner/repo/git/commits?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:03:20 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "1504", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4260", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"c17e75c44874f3558d1fb4d1c7eae576\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/commits/7eda8e6c32feffd740986916f444193ea5ebf2fd", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BB5:9D21:177562D:1C95F4E:5D77AD27", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"7eda8e6c32feffd740986916f444193ea5ebf2fd\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NTc1Mjc2OjdlZGE4ZTZjMzJmZWZmZDc0MDk4NjkxNmY0NDQxOTNlYTVlYmYyZmQ=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/7eda8e6c32feffd740986916f444193ea5ebf2fd\",\n \"html_url\": \"https://github.com/owner/repo/commit/7eda8e6c32feffd740986916f444193ea5ebf2fd\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T14:03:20Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T14:03:20Z\"\n },\n \"tree\": {\n \"sha\": \"daee8d5d15d144e8779955166a2afeccde2770e1\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/daee8d5d15d144e8779955166a2afeccde2770e1\"\n },\n \"message\": \"Create Post “1970-01-01-first-title”\",\n \"parents\": [\n {\n \"sha\": \"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"html_url\": \"https://github.com/owner/repo/commit/726172deae99c8a2cea4c71e734a02a793d4d9e5\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "status": 201 + }, + { + "body": "{\"ref\":\"refs/heads/cms/1970-01-01-first-title\",\"sha\":\"7eda8e6c32feffd740986916f444193ea5ebf2fd\"}", + "method": "POST", + "url": "/repos/owner/repo/git/refs?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:03:21 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "518", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4259", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"78379110da472445ff37e304ffe733cc\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "Location": "https://api.github.com/repos/owner/repo/git/refs/heads/cms/1970-01-01-first-title", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BB6:244DF:1AC824:209F2F:5D77AD28", + "connection": "keep-alive" + }, + "response": "{\n \"ref\": \"refs/heads/cms/1970-01-01-first-title\",\n \"node_id\": \"MDM6UmVmMjA3NTc1Mjc2OmNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxl\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/heads/cms/1970-01-01-first-title\",\n \"object\": {\n \"sha\": \"7eda8e6c32feffd740986916f444193ea5ebf2fd\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/7eda8e6c32feffd740986916f444193ea5ebf2fd\"\n }\n}\n", + "status": 201 + }, + { + "body": "{\"title\":\"Create Post “1970-01-01-first-title”\",\"body\":\"Automatically generated by Netlify CMS\",\"head\":\"cms/1970-01-01-first-title\",\"base\":\"master\"}", + "method": "POST", + "url": "/repos/owner/repo/pulls?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:03:23 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "21715", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4258", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"c992159b520dbe4cd82655b5dce3e5b9\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/pulls/2", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BBB:B4DA:53AD2E:66148C:5D77AD29", + "connection": "keep-alive" + }, + "response": "{\n \"url\": \"https://api.github.com/repos/owner/repo/pulls/2\",\n \"id\": 316011553,\n \"node_id\": \"MDExOlB1bGxSZXF1ZXN0MzE2MDExNTUz\",\n \"html_url\": \"https://github.com/owner/repo/pull/2\",\n \"diff_url\": \"https://github.com/owner/repo/pull/2.diff\",\n \"patch_url\": \"https://github.com/owner/repo/pull/2.patch\",\n \"issue_url\": \"https://api.github.com/repos/owner/repo/issues/2\",\n \"number\": 2,\n \"state\": \"open\",\n \"locked\": false,\n \"title\": \"Create Post “1970-01-01-first-title”\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Automatically generated by Netlify CMS\",\n \"created_at\": \"2019-09-10T14:03:22Z\",\n \"updated_at\": \"2019-09-10T14:03:22Z\",\n \"closed_at\": null,\n \"merged_at\": null,\n \"merge_commit_sha\": null,\n \"assignee\": null,\n \"assignees\": [\n\n ],\n \"requested_reviewers\": [\n\n ],\n \"requested_teams\": [\n\n ],\n \"labels\": [\n\n ],\n \"milestone\": null,\n \"commits_url\": \"https://api.github.com/repos/owner/repo/pulls/2/commits\",\n \"review_comments_url\": \"https://api.github.com/repos/owner/repo/pulls/2/comments\",\n \"review_comment_url\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/issues/2/comments\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/7eda8e6c32feffd740986916f444193ea5ebf2fd\",\n \"head\": {\n \"label\": \"owner:cms/1970-01-01-first-title\",\n \"ref\": \"cms/1970-01-01-first-title\",\n \"sha\": \"7eda8e6c32feffd740986916f444193ea5ebf2fd\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 207575276,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NzUyNzY=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-10T14:01:42Z\",\n \"updated_at\": \"2019-09-10T14:02:10Z\",\n \"pushed_at\": \"2019-09-10T14:03:21Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 1,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 1,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"base\": {\n \"label\": \"owner:master\",\n \"ref\": \"master\",\n \"sha\": \"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 207575276,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NzUyNzY=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-10T14:01:42Z\",\n \"updated_at\": \"2019-09-10T14:02:10Z\",\n \"pushed_at\": \"2019-09-10T14:03:21Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 1,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 1,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/2\"\n },\n \"html\": {\n \"href\": \"https://github.com/owner/repo/pull/2\"\n },\n \"issue\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/2\"\n },\n \"comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/2/comments\"\n },\n \"review_comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/2/comments\"\n },\n \"review_comment\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\"\n },\n \"commits\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/2/commits\"\n },\n \"statuses\": {\n \"href\": \"https://api.github.com/repos/owner/repo/statuses/7eda8e6c32feffd740986916f444193ea5ebf2fd\"\n }\n },\n \"author_association\": \"OWNER\",\n \"merged\": false,\n \"mergeable\": null,\n \"rebaseable\": null,\n \"mergeable_state\": \"unknown\",\n \"merged_by\": null,\n \"comments\": 0,\n \"review_comments\": 0,\n \"maintainer_can_modify\": false,\n \"commits\": 1,\n \"additions\": 11,\n \"deletions\": 0,\n \"changed_files\": 1\n}\n", + "status": 201 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:03:23 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4257", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"663d408185bd74cc1a8e77efebaa57e3\"", + "Last-Modified": "Tue, 10 Sep 2019 14:02:10 GMT", + "X-Poll-Interval": "300", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BBE:15110:18BFB31:1E12D59:5D77AD2B", + "content-length": "484", + "connection": "keep-alive" + }, + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NTc1Mjc2OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"913f86327dbd4d4e8decf74015ab0085dfb37803\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/913f86327dbd4d4e8decf74015ab0085dfb37803\"\n }\n}\n", + "status": 200 + }, + { + "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjIsImhlYWQiOiI3ZWRhOGU2YzMyZmVmZmQ3NDA5ODY5MTZmNDQ0MTkzZWE1ZWJmMmZkIn0sInVzZXIiOiJvd25lciIsInN0YXR1cyI6ImRyYWZ0IiwiYnJhbmNoIjoiY21zLzE5NzAtMDEtMDEtZmlyc3QtdGl0bGUiLCJjb2xsZWN0aW9uIjoicG9zdHMiLCJjb21taXRNZXNzYWdlIjoiQ3JlYXRlIFBvc3Qg4oCcMTk3MC0wMS0wMS1maXJzdC10aXRsZeKAnSIsInRpdGxlIjoiZmlyc3QgdGl0bGUiLCJkZXNjcmlwdGlvbiI6ImZpcnN0IGRlc2NyaXB0aW9uIiwib2JqZWN0cyI6eyJlbnRyeSI6eyJwYXRoIjoiY29udGVudC9wb3N0cy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxlLm1kIiwic2hhIjoiYTA0MTI0NTgxNDg5MmUzZjczZjYzY2E1NDMzM2ZkYTY0OWI3ZmMwYiJ9LCJmaWxlcyI6W119LCJ0aW1lU3RhbXAiOiIxOTcwLTAxLTAxVDAwOjAwOjAwLjMwMFoifQ==\",\"encoding\":\"base64\"}", + "method": "POST", + "url": "/repos/owner/repo/git/blobs?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:03:24 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "207", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4256", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"02f6d84a937fd0ea23a02c2c6d599f81\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/blobs/bf19947389b80f8afd82bfbf02ef9b49d1af444f", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BC2:B4DE:1220D9F:1612906:5D77AD2C", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"bf19947389b80f8afd82bfbf02ef9b49d1af444f\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/bf19947389b80f8afd82bfbf02ef9b49d1af444f\"\n}\n", + "status": 201 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/trees/913f86327dbd4d4e8decf74015ab0085dfb37803?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:03:25 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4255", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"56bc91c79e0147fcb847c9be1fc4df18\"", + "Last-Modified": "Tue, 10 Sep 2019 14:02:10 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BC4:9D20:117E833:15657C3:5D77AD2C", + "content-length": "895", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"913f86327dbd4d4e8decf74015ab0085dfb37803\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/913f86327dbd4d4e8decf74015ab0085dfb37803\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"8786a8f396427d4acbff359e9b8d70e8997e7e0f\",\n \"size\": 462,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/8786a8f396427d4acbff359e9b8d70e8997e7e0f\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 200 + }, + { + "body": "{\"base_tree\":\"913f86327dbd4d4e8decf74015ab0085dfb37803\",\"tree\":[{\"path\":\"1970-01-01-first-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"bf19947389b80f8afd82bfbf02ef9b49d1af444f\"}]}", + "method": "POST", + "url": "/repos/owner/repo/git/trees?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:03:26 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "895", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4254", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"5b5ed051f7d6ef4997dfa45ce473edca\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/trees/b2216d5066f7f9a8bff263b81c78ad5f2d59ac61", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BC6:3ED7B:12936C1:16916B2:5D77AD2D", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"b2216d5066f7f9a8bff263b81c78ad5f2d59ac61\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/b2216d5066f7f9a8bff263b81c78ad5f2d59ac61\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"bf19947389b80f8afd82bfbf02ef9b49d1af444f\",\n \"size\": 462,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/bf19947389b80f8afd82bfbf02ef9b49d1af444f\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"message\":\"Updating “1970-01-01-first-title” metadata\",\"tree\":\"b2216d5066f7f9a8bff263b81c78ad5f2d59ac61\",\"parents\":[\"913f86327dbd4d4e8decf74015ab0085dfb37803\"]}", + "method": "POST", + "url": "/repos/owner/repo/git/commits?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:03:26 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "1510", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4253", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"fe0e1e0fdff1d41be65667450b5dfe94\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/commits/6391e767696a332140ac93ceb96a14205d0c8f13", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BC8:2B24:1808C59:1D38787:5D77AD2E", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"6391e767696a332140ac93ceb96a14205d0c8f13\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NTc1Mjc2OjYzOTFlNzY3Njk2YTMzMjE0MGFjOTNjZWI5NmExNDIwNWQwYzhmMTM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/6391e767696a332140ac93ceb96a14205d0c8f13\",\n \"html_url\": \"https://github.com/owner/repo/commit/6391e767696a332140ac93ceb96a14205d0c8f13\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T14:03:26Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T14:03:26Z\"\n },\n \"tree\": {\n \"sha\": \"b2216d5066f7f9a8bff263b81c78ad5f2d59ac61\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/b2216d5066f7f9a8bff263b81c78ad5f2d59ac61\"\n },\n \"message\": \"Updating “1970-01-01-first-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"913f86327dbd4d4e8decf74015ab0085dfb37803\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/913f86327dbd4d4e8decf74015ab0085dfb37803\",\n \"html_url\": \"https://github.com/owner/repo/commit/913f86327dbd4d4e8decf74015ab0085dfb37803\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "status": 201 + }, + { + "body": "{\"sha\":\"6391e767696a332140ac93ceb96a14205d0c8f13\",\"force\":false}", + "method": "PATCH", + "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:03:28 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4252", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"c6a872f1344d6f5d742b0318182753a3\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BCC:9D1F:A4C6CB:C91699:5D77AD2F", + "content-length": "484", + "connection": "keep-alive" + }, + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NTc1Mjc2OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"6391e767696a332140ac93ceb96a14205d0c8f13\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/6391e767696a332140ac93ceb96a14205d0c8f13\"\n }\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=master", + "headers": { + "Date": "Tue, 10 Sep 2019 14:03:28 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "404 Not Found", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4251", + "X-RateLimit-Reset": "1568126651", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BD1:1510A:23B44:2D4E8:5D77AD30", + "content-length": "116", + "connection": "keep-alive" + }, + "response": "{\n \"message\": \"Not Found\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/#get-contents\"\n}\n", + "status": 404 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=cms/1970-01-01-first-title", + "headers": { + "Date": "Tue, 10 Sep 2019 14:03:29 GMT", + "Content-Type": "application/vnd.github.VERSION.raw; charset=utf-8", + "Content-Length": "167", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4250", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"a041245814892e3f73f63ca54333fda649b7fc0b\"", + "Last-Modified": "Tue, 10 Sep 2019 14:03:20 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BCE:1510E:AE540A:D47213:5D77AD30", + "connection": "keep-alive" + }, + "response": "---\ntemplate: post\ntitle: first title\ndraft: true\ndate: 1970-01-01T00:00:00.000Z\ndescription: first description\ncategory: first category\ntags:\n - tag1\n---\nfirst body\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/commits/7eda8e6c32feffd740986916f444193ea5ebf2fd/status?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:03:30 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4249", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"86deebc3e06e886c964c41e0a4314895\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo, repo:status", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BD2:244E7:11D3F60:15C2624:5D77AD31", + "content-length": "6574", + "connection": "keep-alive" + }, + "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"7eda8e6c32feffd740986916f444193ea5ebf2fd\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 207575276,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NzUyNzY=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/7eda8e6c32feffd740986916f444193ea5ebf2fd\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/7eda8e6c32feffd740986916f444193ea5ebf2fd/status\"\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/refs/heads/cms?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:03:30 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4248", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"f53077fdd348097b5b817fc8ed658b87\"", + "Last-Modified": "Tue, 10 Sep 2019 14:02:10 GMT", + "X-Poll-Interval": "300", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BD5:2B19:AB47D0:D08155:5D77AD31", + "content-length": "542", + "connection": "keep-alive" + }, + "response": "[\n {\n \"ref\": \"refs/heads/cms/1970-01-01-first-title\",\n \"node_id\": \"MDM6UmVmMjA3NTc1Mjc2OmNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxl\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/heads/cms/1970-01-01-first-title\",\n \"object\": {\n \"sha\": \"7eda8e6c32feffd740986916f444193ea5ebf2fd\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/7eda8e6c32feffd740986916f444193ea5ebf2fd\"\n }\n }\n]\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/pulls?ts=300&head=cms/1970-01-01-first-title&state=open&base=master", + "headers": { + "Date": "Tue, 10 Sep 2019 14:03:31 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4247", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"8e9afd80c3fdeca67ead70b26d2f24a9\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BD6:1510C:183DEB:1DB0FA:5D77AD32", + "content-length": "22154", + "connection": "keep-alive" + }, + "response": "[\n {\n \"url\": \"https://api.github.com/repos/owner/repo/pulls/2\",\n \"id\": 316011553,\n \"node_id\": \"MDExOlB1bGxSZXF1ZXN0MzE2MDExNTUz\",\n \"html_url\": \"https://github.com/owner/repo/pull/2\",\n \"diff_url\": \"https://github.com/owner/repo/pull/2.diff\",\n \"patch_url\": \"https://github.com/owner/repo/pull/2.patch\",\n \"issue_url\": \"https://api.github.com/repos/owner/repo/issues/2\",\n \"number\": 2,\n \"state\": \"open\",\n \"locked\": false,\n \"title\": \"Create Post “1970-01-01-first-title”\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Automatically generated by Netlify CMS\",\n \"created_at\": \"2019-09-10T14:03:22Z\",\n \"updated_at\": \"2019-09-10T14:03:22Z\",\n \"closed_at\": null,\n \"merged_at\": null,\n \"merge_commit_sha\": \"05c232b22a3bf896e7fe90b097f2429e65386bc4\",\n \"assignee\": null,\n \"assignees\": [\n\n ],\n \"requested_reviewers\": [\n\n ],\n \"requested_teams\": [\n\n ],\n \"labels\": [\n\n ],\n \"milestone\": null,\n \"commits_url\": \"https://api.github.com/repos/owner/repo/pulls/2/commits\",\n \"review_comments_url\": \"https://api.github.com/repos/owner/repo/pulls/2/comments\",\n \"review_comment_url\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/issues/2/comments\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/7eda8e6c32feffd740986916f444193ea5ebf2fd\",\n \"head\": {\n \"label\": \"owner:cms/1970-01-01-first-title\",\n \"ref\": \"cms/1970-01-01-first-title\",\n \"sha\": \"7eda8e6c32feffd740986916f444193ea5ebf2fd\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 207575276,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NzUyNzY=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-10T14:01:42Z\",\n \"updated_at\": \"2019-09-10T14:02:10Z\",\n \"pushed_at\": \"2019-09-10T14:03:27Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 1,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 1,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"base\": {\n \"label\": \"owner:master\",\n \"ref\": \"master\",\n \"sha\": \"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 207575276,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NzUyNzY=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-10T14:01:42Z\",\n \"updated_at\": \"2019-09-10T14:02:10Z\",\n \"pushed_at\": \"2019-09-10T14:03:27Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 1,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 1,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/2\"\n },\n \"html\": {\n \"href\": \"https://github.com/owner/repo/pull/2\"\n },\n \"issue\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/2\"\n },\n \"comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/2/comments\"\n },\n \"review_comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/2/comments\"\n },\n \"review_comment\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\"\n },\n \"commits\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/2/commits\"\n },\n \"statuses\": {\n \"href\": \"https://api.github.com/repos/owner/repo/statuses/7eda8e6c32feffd740986916f444193ea5ebf2fd\"\n }\n },\n \"author_association\": \"OWNER\"\n }\n]\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=cms/1970-01-01-first-title", + "headers": { + "Date": "Tue, 10 Sep 2019 14:03:31 GMT", + "Content-Type": "application/vnd.github.VERSION.raw; charset=utf-8", + "Content-Length": "167", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4246", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"a041245814892e3f73f63ca54333fda649b7fc0b\"", + "Last-Modified": "Tue, 10 Sep 2019 14:03:20 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BD9:2B1F:125552C:1660FDD:5D77AD33", + "connection": "keep-alive" + }, + "response": "---\ntemplate: post\ntitle: first title\ndraft: true\ndate: 1970-01-01T00:00:00.000Z\ndescription: first description\ncategory: first category\ntags:\n - tag1\n---\nfirst body\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=master", + "headers": { + "Date": "Tue, 10 Sep 2019 14:03:31 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "404 Not Found", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4245", + "X-RateLimit-Reset": "1568126651", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BDA:1510E:AE56CD:D4756C:5D77AD33", + "content-length": "116", + "connection": "keep-alive" + }, + "response": "{\n \"message\": \"Not Found\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/#get-contents\"\n}\n", + "status": 404 + }, + { + "method": "GET", + "url": "/repos/owner/repo/commits/7eda8e6c32feffd740986916f444193ea5ebf2fd/status?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:03:32 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4244", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"86deebc3e06e886c964c41e0a4314895\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo, repo:status", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BDC:15110:18C0A01:1E13FB2:5D77AD34", + "content-length": "6574", + "connection": "keep-alive" + }, + "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"7eda8e6c32feffd740986916f444193ea5ebf2fd\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 207575276,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NzUyNzY=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/7eda8e6c32feffd740986916f444193ea5ebf2fd\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/7eda8e6c32feffd740986916f444193ea5ebf2fd/status\"\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=cms/1970-01-01-first-title", + "headers": { + "Date": "Tue, 10 Sep 2019 14:03:32 GMT", + "Content-Type": "application/vnd.github.VERSION.raw; charset=utf-8", + "Content-Length": "167", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4243", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"a041245814892e3f73f63ca54333fda649b7fc0b\"", + "Last-Modified": "Tue, 10 Sep 2019 14:03:20 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BE0:B4E0:16F589A:1BF26FD:5D77AD34", + "connection": "keep-alive" + }, + "response": "---\ntemplate: post\ntitle: first title\ndraft: true\ndate: 1970-01-01T00:00:00.000Z\ndescription: first description\ncategory: first category\ntags:\n - tag1\n---\nfirst body\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=master", + "headers": { + "Date": "Tue, 10 Sep 2019 14:03:33 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "404 Not Found", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4242", + "X-RateLimit-Reset": "1568126651", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BDF:3ED82:18BADA0:1E1785E:5D77AD34", + "content-length": "116", + "connection": "keep-alive" + }, + "response": "{\n \"message\": \"Not Found\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/#get-contents\"\n}\n", + "status": 404 + }, + { + "method": "GET", + "url": "/repos/owner/repo/commits/7eda8e6c32feffd740986916f444193ea5ebf2fd/status?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:03:34 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4241", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"86deebc3e06e886c964c41e0a4314895\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo, repo:status", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BE4:3ED7B:12940AF:1692327:5D77AD35", + "content-length": "6574", + "connection": "keep-alive" + }, + "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"7eda8e6c32feffd740986916f444193ea5ebf2fd\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 207575276,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NzUyNzY=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/7eda8e6c32feffd740986916f444193ea5ebf2fd\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/7eda8e6c32feffd740986916f444193ea5ebf2fd/status\"\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/commits/7eda8e6c32feffd740986916f444193ea5ebf2fd/status?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:03:35 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4240", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"86deebc3e06e886c964c41e0a4314895\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo, repo:status", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BF2:1510F:1262A51:16515B6:5D77AD37", + "content-length": "6574", + "connection": "keep-alive" + }, + "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"7eda8e6c32feffd740986916f444193ea5ebf2fd\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 207575276,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NzUyNzY=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/7eda8e6c32feffd740986916f444193ea5ebf2fd\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/7eda8e6c32feffd740986916f444193ea5ebf2fd/status\"\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/commits/7eda8e6c32feffd740986916f444193ea5ebf2fd/status?ts=600", + "headers": { + "Date": "Tue, 10 Sep 2019 14:03:38 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4239", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"86deebc3e06e886c964c41e0a4314895\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo, repo:status", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BF4:B4DE:1222020:1613FF7:5D77AD3A", + "content-length": "6574", + "connection": "keep-alive" + }, + "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"7eda8e6c32feffd740986916f444193ea5ebf2fd\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 207575276,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NzUyNzY=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/7eda8e6c32feffd740986916f444193ea5ebf2fd\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/7eda8e6c32feffd740986916f444193ea5ebf2fd/status\"\n}\n", + "status": 200 + }, + { + "body": "{\"content\":\"LS0tCnRlbXBsYXRlOiBwb3N0CnRpdGxlOiBzZWNvbmQgdGl0bGUKZHJhZnQ6IHRydWUKZGF0ZTogMTk3MC0wMS0wMVQwMDowMDowMC4wMDBaCmRlc2NyaXB0aW9uOiBzZWNvbmQgZGVzY3JpcHRpb24KY2F0ZWdvcnk6IHNlY29uZCBjYXRlZ29yeQp0YWdzOgogIC0gdGFnMgotLS0Kc2Vjb25kIGJvZHkK\",\"encoding\":\"base64\"}", + "method": "POST", + "url": "/repos/owner/repo/git/blobs?ts=600", + "headers": { + "Date": "Tue, 10 Sep 2019 14:03:39 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "207", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4238", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"c0a9de1e57dbf70d40c2d7e695d21914\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/blobs/3e5676c8285a456a6604603042b5428883f50417", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BF6:1510D:47F9BF:5847F3:5D77AD3A", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"3e5676c8285a456a6604603042b5428883f50417\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/3e5676c8285a456a6604603042b5428883f50417\"\n}\n", + "status": 201 + }, + { + "method": "GET", + "url": "/repos/owner/repo/commits/7eda8e6c32feffd740986916f444193ea5ebf2fd/status?ts=600", + "headers": { + "Date": "Tue, 10 Sep 2019 14:03:39 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4237", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"86deebc3e06e886c964c41e0a4314895\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo, repo:status", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BF8:9D20:117F998:1566D82:5D77AD3B", + "content-length": "6574", + "connection": "keep-alive" + }, + "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"7eda8e6c32feffd740986916f444193ea5ebf2fd\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 207575276,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NzUyNzY=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/7eda8e6c32feffd740986916f444193ea5ebf2fd\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/7eda8e6c32feffd740986916f444193ea5ebf2fd/status\"\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/branches/cms%2F1970-01-01-first-title?ts=600", + "headers": { + "Date": "Tue, 10 Sep 2019 14:03:39 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4236", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"bc4bdd65b534df084fbdcb4a53c4374c\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BFA:15110:18C15B8:1E14E12:5D77AD3B", + "content-length": "4815", + "connection": "keep-alive" + }, + "response": "{\n \"name\": \"cms/1970-01-01-first-title\",\n \"commit\": {\n \"sha\": \"7eda8e6c32feffd740986916f444193ea5ebf2fd\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NTc1Mjc2OjdlZGE4ZTZjMzJmZWZmZDc0MDk4NjkxNmY0NDQxOTNlYTVlYmYyZmQ=\",\n \"commit\": {\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T14:03:20Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T14:03:20Z\"\n },\n \"message\": \"Create Post “1970-01-01-first-title”\",\n \"tree\": {\n \"sha\": \"daee8d5d15d144e8779955166a2afeccde2770e1\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/daee8d5d15d144e8779955166a2afeccde2770e1\"\n },\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/7eda8e6c32feffd740986916f444193ea5ebf2fd\",\n \"comment_count\": 0,\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n },\n \"url\": \"https://api.github.com/repos/owner/repo/commits/7eda8e6c32feffd740986916f444193ea5ebf2fd\",\n \"html_url\": \"https://github.com/owner/repo/commit/7eda8e6c32feffd740986916f444193ea5ebf2fd\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/commits/7eda8e6c32feffd740986916f444193ea5ebf2fd/comments\",\n \"author\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"committer\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"parents\": [\n {\n \"sha\": \"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"html_url\": \"https://github.com/owner/repo/commit/726172deae99c8a2cea4c71e734a02a793d4d9e5\"\n }\n ]\n },\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/branches/cms/1970-01-01-first-title\",\n \"html\": \"https://github.com/owner/repo/tree/cms/1970-01-01-first-title\"\n },\n \"protected\": false,\n \"protection\": {\n \"enabled\": false,\n \"required_status_checks\": {\n \"enforcement_level\": \"off\",\n \"contexts\": [\n\n ]\n }\n },\n \"protection_url\": \"https://api.github.com/repos/owner/repo/branches/cms/1970-01-01-first-title/protection\"\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/trees/7eda8e6c32feffd740986916f444193ea5ebf2fd?ts=600", + "headers": { + "Date": "Tue, 10 Sep 2019 14:03:40 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4235", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"7aa3b8361bf6fb1c379eb851fa9435d6\"", + "Last-Modified": "Tue, 10 Sep 2019 14:02:10 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BFD:B4E0:16F6526:1BF364A:5D77AD3B", + "content-length": "11769", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"7eda8e6c32feffd740986916f444193ea5ebf2fd\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/7eda8e6c32feffd740986916f444193ea5ebf2fd\",\n \"tree\": [\n {\n \"path\": \".circleci\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"e5e9af3301cac61f120b8e4d40b1733c7a45685a\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/e5e9af3301cac61f120b8e4d40b1733c7a45685a\"\n },\n {\n \"path\": \".eslintignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"80b4531b026d19f8fa589efd122e76199d23f967\",\n \"size\": 39,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/80b4531b026d19f8fa589efd122e76199d23f967\"\n },\n {\n \"path\": \".eslintrc.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"370684994aaed5b858da3a006f48cfa57e88fd27\",\n \"size\": 414,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/370684994aaed5b858da3a006f48cfa57e88fd27\"\n },\n {\n \"path\": \".flowconfig\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14aa2ac4cc0e15223ad98630a6f1325fc81f8043\",\n \"size\": 283,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14aa2ac4cc0e15223ad98630a6f1325fc81f8043\"\n },\n {\n \"path\": \".gitattributes\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"10a369ddf4f603337cabc6f21646508323941ce1\",\n \"size\": 135,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/10a369ddf4f603337cabc6f21646508323941ce1\"\n },\n {\n \"path\": \".github\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4ebeece548b52b20af59622354530a6d33b50b43\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4ebeece548b52b20af59622354530a6d33b50b43\"\n },\n {\n \"path\": \".gitignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"c071ba35b0e49899bab6d610a68eef667dbbf157\",\n \"size\": 169,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/c071ba35b0e49899bab6d610a68eef667dbbf157\"\n },\n {\n \"path\": \".prettierignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"393f050e123d998cf8c8b362ff95cc8ac4d250e5\",\n \"size\": 45,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/393f050e123d998cf8c8b362ff95cc8ac4d250e5\"\n },\n {\n \"path\": \".prettierrc\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e52ad05bb13b084d7949dd76e1b2517455162150\",\n \"size\": 223,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/e52ad05bb13b084d7949dd76e1b2517455162150\"\n },\n {\n \"path\": \".stylelintrc.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"4b4c9698d10d756f5faa025659b86375428ed0a7\",\n \"size\": 718,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/4b4c9698d10d756f5faa025659b86375428ed0a7\"\n },\n {\n \"path\": \".vscode\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"286e97ec0113ea8242b41ac222e2c3e8077e6f1e\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/286e97ec0113ea8242b41ac222e2c3e8077e6f1e\"\n },\n {\n \"path\": \"CHANGELOG.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"070a5d4f0eacd2dc0be81ae8996f8982de43046e\",\n \"size\": 2113,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/070a5d4f0eacd2dc0be81ae8996f8982de43046e\"\n },\n {\n \"path\": \"CODE_OF_CONDUCT.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"92bc7565ff0ee145a0041b5179a820f14f39ab22\",\n \"size\": 3355,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/92bc7565ff0ee145a0041b5179a820f14f39ab22\"\n },\n {\n \"path\": \"CONTRIBUTING.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"8552aa241254a61258e1ff9666ab36f32fb1e3b9\",\n \"size\": 3548,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/8552aa241254a61258e1ff9666ab36f32fb1e3b9\"\n },\n {\n \"path\": \"LICENSE\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"42d85938357b49977c126ca03b199129082d4fb8\",\n \"size\": 1091,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/42d85938357b49977c126ca03b199129082d4fb8\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"19df50a78654c8d757ca7f38447aa3d09c7abcce\",\n \"size\": 3698,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/19df50a78654c8d757ca7f38447aa3d09c7abcce\"\n },\n {\n \"path\": \"backend\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\"\n },\n {\n \"path\": \"config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"58afd573bbb69fcca000efd0f5d90b93c93a98dd\",\n \"size\": 853,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/58afd573bbb69fcca000efd0f5d90b93c93a98dd\"\n },\n {\n \"path\": \"content\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639\"\n },\n {\n \"path\": \"flow-typed\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"86c32fd6c3118be5e0dbbb231a834447357236c6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/86c32fd6c3118be5e0dbbb231a834447357236c6\"\n },\n {\n \"path\": \"flow\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"0af45ad00d155c8d8c7407d913ff85278244c9ce\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/0af45ad00d155c8d8c7407d913ff85278244c9ce\"\n },\n {\n \"path\": \"gatsby-browser.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9bd2c9dce175f04980e91cd9dc295a299e3cdb80\",\n \"size\": 90,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9bd2c9dce175f04980e91cd9dc295a299e3cdb80\"\n },\n {\n \"path\": \"gatsby-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"353a109dad62e3f25bf9f5e6a2167f21a6c8b459\",\n \"size\": 7228,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/353a109dad62e3f25bf9f5e6a2167f21a6c8b459\"\n },\n {\n \"path\": \"gatsby-node.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14a207883c2093d2cc071bc5a464e165bcc1fead\",\n \"size\": 409,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14a207883c2093d2cc071bc5a464e165bcc1fead\"\n },\n {\n \"path\": \"gatsby\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4f23c06cd1740bf78304d2c0b29bf6bfdf427981\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4f23c06cd1740bf78304d2c0b29bf6bfdf427981\"\n },\n {\n \"path\": \"jest\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\"\n },\n {\n \"path\": \"netlify.toml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"599b99cc5700404fde316a7ede829776f23e7d45\",\n \"size\": 137,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/599b99cc5700404fde316a7ede829776f23e7d45\"\n },\n {\n \"path\": \"package.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9d777616438b90a18f1a4ebfd5f114b4c06c6f17\",\n \"size\": 6855,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9d777616438b90a18f1a4ebfd5f114b4c06c6f17\"\n },\n {\n \"path\": \"postcss-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d216501e9b351a72e00ba0b7459a6500e27e7da2\",\n \"size\": 703,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d216501e9b351a72e00ba0b7459a6500e27e7da2\"\n },\n {\n \"path\": \"renovate.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"dcc309398785698b8870545c32051a3d72dd8271\",\n \"size\": 460,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/dcc309398785698b8870545c32051a3d72dd8271\"\n },\n {\n \"path\": \"serverless-scripts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ee3701f2fbfc7196ba340f6481d1387d20527898\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ee3701f2fbfc7196ba340f6481d1387d20527898\"\n },\n {\n \"path\": \"serverless-single-page-app-plugin\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"08763fcfba643a06a452398517019bea4a5850ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/08763fcfba643a06a452398517019bea4a5850ba\"\n },\n {\n \"path\": \"serverless.yml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"20b22c5fad229f35d029bf6614d333d82fe8a987\",\n \"size\": 7803,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/20b22c5fad229f35d029bf6614d333d82fe8a987\"\n },\n {\n \"path\": \"src\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"8cdb35a88232c0f32f12f130c92c7cc55f97f471\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/8cdb35a88232c0f32f12f130c92c7cc55f97f471\"\n },\n {\n \"path\": \"static\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"53c6380a600a030d3722bff7ecde36f749fb6964\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/53c6380a600a030d3722bff7ecde36f749fb6964\"\n },\n {\n \"path\": \"utils\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"a592549c9f74db40b51efefcda2fd76810405f27\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/a592549c9f74db40b51efefcda2fd76810405f27\"\n },\n {\n \"path\": \"yarn.lock\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"475c9c1924ca752a0686303e2fdeb7b13ad75f57\",\n \"size\": 793903,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/475c9c1924ca752a0686303e2fdeb7b13ad75f57\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639?ts=600", + "headers": { + "Date": "Tue, 10 Sep 2019 14:03:40 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4234", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"8a08d49c75e6316b7eedd97658f5dd3d\"", + "Last-Modified": "Tue, 10 Sep 2019 14:02:10 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BFE:1510F:1263148:1651E59:5D77AD3C", + "content-length": "831", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"tree\": [\n {\n \"path\": \"pages\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\"\n },\n {\n \"path\": \"posts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba?ts=600", + "headers": { + "Date": "Tue, 10 Sep 2019 14:03:41 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4233", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"ec28ace732cd92ce67ac2d4bb75b73a8\"", + "Last-Modified": "Tue, 10 Sep 2019 14:02:10 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A00:B4E0:16F670C:1BF38A1:5D77AD3D", + "content-length": "2362", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a041245814892e3f73f63ca54333fda649b7fc0b\",\n \"size\": 167,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b\"\n },\n {\n \"path\": \"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"size\": 1707,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\"\n },\n {\n \"path\": \"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"size\": 2565,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\"\n },\n {\n \"path\": \"2016-02-02---A-Brief-History-of-Typography.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"0eea554365f002d0f1572af9a58522d335a794d5\",\n \"size\": 2786,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\"\n },\n {\n \"path\": \"2017-18-08---The-Birth-of-Movable-Type.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"44f78c474d04273185a95821426f75affc9b0044\",\n \"size\": 16071,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\"\n },\n {\n \"path\": \"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"size\": 7465,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/commits/7eda8e6c32feffd740986916f444193ea5ebf2fd/status?ts=600", + "headers": { + "Date": "Tue, 10 Sep 2019 14:03:41 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4232", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"86deebc3e06e886c964c41e0a4314895\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo, repo:status", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A02:244EB:1848A70:1D80728:5D77AD3D", + "content-length": "6574", + "connection": "keep-alive" + }, + "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"7eda8e6c32feffd740986916f444193ea5ebf2fd\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 207575276,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NzUyNzY=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/7eda8e6c32feffd740986916f444193ea5ebf2fd\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/7eda8e6c32feffd740986916f444193ea5ebf2fd/status\"\n}\n", + "status": 200 + }, + { + "body": "{\"base_tree\":\"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\"tree\":[{\"path\":\"1970-01-01-first-title.md\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"3e5676c8285a456a6604603042b5428883f50417\"}]}", + "method": "POST", + "url": "/repos/owner/repo/git/trees?ts=600", + "headers": { + "Date": "Tue, 10 Sep 2019 14:03:42 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "2362", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4231", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"1132c54deef4ab0d66c9e3777832642f\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/trees/7db8b5bca921590c7c398d029d9172111750f5fc", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A04:3ED77:AD8236:D25D40:5D77AD3D", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"7db8b5bca921590c7c398d029d9172111750f5fc\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/7db8b5bca921590c7c398d029d9172111750f5fc\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"3e5676c8285a456a6604603042b5428883f50417\",\n \"size\": 171,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/3e5676c8285a456a6604603042b5428883f50417\"\n },\n {\n \"path\": \"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"size\": 1707,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\"\n },\n {\n \"path\": \"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"size\": 2565,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\"\n },\n {\n \"path\": \"2016-02-02---A-Brief-History-of-Typography.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"0eea554365f002d0f1572af9a58522d335a794d5\",\n \"size\": 2786,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\"\n },\n {\n \"path\": \"2017-18-08---The-Birth-of-Movable-Type.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"44f78c474d04273185a95821426f75affc9b0044\",\n \"size\": 16071,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\"\n },\n {\n \"path\": \"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"size\": 7465,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"base_tree\":\"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\"tree\":[{\"path\":\"posts\",\"mode\":\"040000\",\"type\":\"tree\",\"sha\":\"7db8b5bca921590c7c398d029d9172111750f5fc\",\"parentSha\":\"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\"}]}", + "method": "POST", + "url": "/repos/owner/repo/git/trees?ts=600", + "headers": { + "Date": "Tue, 10 Sep 2019 14:03:43 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "831", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4230", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"1c18cfefc08a8e5a8deec65ae191cf03\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/trees/4663bc351c2b79f066f9434722d865f8a0fc88cd", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A06:9D21:1777B1A:1C98D2A:5D77AD3E", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"4663bc351c2b79f066f9434722d865f8a0fc88cd\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4663bc351c2b79f066f9434722d865f8a0fc88cd\",\n \"tree\": [\n {\n \"path\": \"pages\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\"\n },\n {\n \"path\": \"posts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"7db8b5bca921590c7c398d029d9172111750f5fc\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/7db8b5bca921590c7c398d029d9172111750f5fc\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"base_tree\":\"7eda8e6c32feffd740986916f444193ea5ebf2fd\",\"tree\":[{\"path\":\"content\",\"mode\":\"040000\",\"type\":\"tree\",\"sha\":\"4663bc351c2b79f066f9434722d865f8a0fc88cd\",\"parentSha\":\"93da0f3541510f5f9ec829a3cdc6e8147f611639\"}]}", + "method": "POST", + "url": "/repos/owner/repo/git/trees?ts=600", + "headers": { + "Date": "Tue, 10 Sep 2019 14:03:44 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "11769", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4229", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"64ea88f84d11527f5487e9de0cde4801\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/trees/9011d70a132ecce386da7098e3ca594bbb772623", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A08:244EB:1848E17:1D80BC5:5D77AD3F", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"9011d70a132ecce386da7098e3ca594bbb772623\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/9011d70a132ecce386da7098e3ca594bbb772623\",\n \"tree\": [\n {\n \"path\": \".circleci\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"e5e9af3301cac61f120b8e4d40b1733c7a45685a\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/e5e9af3301cac61f120b8e4d40b1733c7a45685a\"\n },\n {\n \"path\": \".eslintignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"80b4531b026d19f8fa589efd122e76199d23f967\",\n \"size\": 39,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/80b4531b026d19f8fa589efd122e76199d23f967\"\n },\n {\n \"path\": \".eslintrc.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"370684994aaed5b858da3a006f48cfa57e88fd27\",\n \"size\": 414,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/370684994aaed5b858da3a006f48cfa57e88fd27\"\n },\n {\n \"path\": \".flowconfig\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14aa2ac4cc0e15223ad98630a6f1325fc81f8043\",\n \"size\": 283,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14aa2ac4cc0e15223ad98630a6f1325fc81f8043\"\n },\n {\n \"path\": \".gitattributes\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"10a369ddf4f603337cabc6f21646508323941ce1\",\n \"size\": 135,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/10a369ddf4f603337cabc6f21646508323941ce1\"\n },\n {\n \"path\": \".github\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4ebeece548b52b20af59622354530a6d33b50b43\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4ebeece548b52b20af59622354530a6d33b50b43\"\n },\n {\n \"path\": \".gitignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"c071ba35b0e49899bab6d610a68eef667dbbf157\",\n \"size\": 169,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/c071ba35b0e49899bab6d610a68eef667dbbf157\"\n },\n {\n \"path\": \".prettierignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"393f050e123d998cf8c8b362ff95cc8ac4d250e5\",\n \"size\": 45,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/393f050e123d998cf8c8b362ff95cc8ac4d250e5\"\n },\n {\n \"path\": \".prettierrc\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e52ad05bb13b084d7949dd76e1b2517455162150\",\n \"size\": 223,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/e52ad05bb13b084d7949dd76e1b2517455162150\"\n },\n {\n \"path\": \".stylelintrc.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"4b4c9698d10d756f5faa025659b86375428ed0a7\",\n \"size\": 718,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/4b4c9698d10d756f5faa025659b86375428ed0a7\"\n },\n {\n \"path\": \".vscode\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"286e97ec0113ea8242b41ac222e2c3e8077e6f1e\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/286e97ec0113ea8242b41ac222e2c3e8077e6f1e\"\n },\n {\n \"path\": \"CHANGELOG.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"070a5d4f0eacd2dc0be81ae8996f8982de43046e\",\n \"size\": 2113,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/070a5d4f0eacd2dc0be81ae8996f8982de43046e\"\n },\n {\n \"path\": \"CODE_OF_CONDUCT.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"92bc7565ff0ee145a0041b5179a820f14f39ab22\",\n \"size\": 3355,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/92bc7565ff0ee145a0041b5179a820f14f39ab22\"\n },\n {\n \"path\": \"CONTRIBUTING.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"8552aa241254a61258e1ff9666ab36f32fb1e3b9\",\n \"size\": 3548,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/8552aa241254a61258e1ff9666ab36f32fb1e3b9\"\n },\n {\n \"path\": \"LICENSE\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"42d85938357b49977c126ca03b199129082d4fb8\",\n \"size\": 1091,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/42d85938357b49977c126ca03b199129082d4fb8\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"19df50a78654c8d757ca7f38447aa3d09c7abcce\",\n \"size\": 3698,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/19df50a78654c8d757ca7f38447aa3d09c7abcce\"\n },\n {\n \"path\": \"backend\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\"\n },\n {\n \"path\": \"config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"58afd573bbb69fcca000efd0f5d90b93c93a98dd\",\n \"size\": 853,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/58afd573bbb69fcca000efd0f5d90b93c93a98dd\"\n },\n {\n \"path\": \"content\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4663bc351c2b79f066f9434722d865f8a0fc88cd\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4663bc351c2b79f066f9434722d865f8a0fc88cd\"\n },\n {\n \"path\": \"flow-typed\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"86c32fd6c3118be5e0dbbb231a834447357236c6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/86c32fd6c3118be5e0dbbb231a834447357236c6\"\n },\n {\n \"path\": \"flow\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"0af45ad00d155c8d8c7407d913ff85278244c9ce\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/0af45ad00d155c8d8c7407d913ff85278244c9ce\"\n },\n {\n \"path\": \"gatsby-browser.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9bd2c9dce175f04980e91cd9dc295a299e3cdb80\",\n \"size\": 90,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9bd2c9dce175f04980e91cd9dc295a299e3cdb80\"\n },\n {\n \"path\": \"gatsby-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"353a109dad62e3f25bf9f5e6a2167f21a6c8b459\",\n \"size\": 7228,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/353a109dad62e3f25bf9f5e6a2167f21a6c8b459\"\n },\n {\n \"path\": \"gatsby-node.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14a207883c2093d2cc071bc5a464e165bcc1fead\",\n \"size\": 409,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14a207883c2093d2cc071bc5a464e165bcc1fead\"\n },\n {\n \"path\": \"gatsby\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4f23c06cd1740bf78304d2c0b29bf6bfdf427981\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4f23c06cd1740bf78304d2c0b29bf6bfdf427981\"\n },\n {\n \"path\": \"jest\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\"\n },\n {\n \"path\": \"netlify.toml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"599b99cc5700404fde316a7ede829776f23e7d45\",\n \"size\": 137,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/599b99cc5700404fde316a7ede829776f23e7d45\"\n },\n {\n \"path\": \"package.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9d777616438b90a18f1a4ebfd5f114b4c06c6f17\",\n \"size\": 6855,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9d777616438b90a18f1a4ebfd5f114b4c06c6f17\"\n },\n {\n \"path\": \"postcss-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d216501e9b351a72e00ba0b7459a6500e27e7da2\",\n \"size\": 703,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d216501e9b351a72e00ba0b7459a6500e27e7da2\"\n },\n {\n \"path\": \"renovate.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"dcc309398785698b8870545c32051a3d72dd8271\",\n \"size\": 460,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/dcc309398785698b8870545c32051a3d72dd8271\"\n },\n {\n \"path\": \"serverless-scripts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ee3701f2fbfc7196ba340f6481d1387d20527898\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ee3701f2fbfc7196ba340f6481d1387d20527898\"\n },\n {\n \"path\": \"serverless-single-page-app-plugin\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"08763fcfba643a06a452398517019bea4a5850ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/08763fcfba643a06a452398517019bea4a5850ba\"\n },\n {\n \"path\": \"serverless.yml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"20b22c5fad229f35d029bf6614d333d82fe8a987\",\n \"size\": 7803,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/20b22c5fad229f35d029bf6614d333d82fe8a987\"\n },\n {\n \"path\": \"src\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"8cdb35a88232c0f32f12f130c92c7cc55f97f471\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/8cdb35a88232c0f32f12f130c92c7cc55f97f471\"\n },\n {\n \"path\": \"static\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"53c6380a600a030d3722bff7ecde36f749fb6964\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/53c6380a600a030d3722bff7ecde36f749fb6964\"\n },\n {\n \"path\": \"utils\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"a592549c9f74db40b51efefcda2fd76810405f27\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/a592549c9f74db40b51efefcda2fd76810405f27\"\n },\n {\n \"path\": \"yarn.lock\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"475c9c1924ca752a0686303e2fdeb7b13ad75f57\",\n \"size\": 793903,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/475c9c1924ca752a0686303e2fdeb7b13ad75f57\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "method": "GET", + "url": "/repos/owner/repo/commits/7eda8e6c32feffd740986916f444193ea5ebf2fd/status?ts=600", + "headers": { + "Date": "Tue, 10 Sep 2019 14:03:44 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4228", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"86deebc3e06e886c964c41e0a4314895\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo, repo:status", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A0A:9D20:117FF5E:15674B8:5D77AD40", + "content-length": "6574", + "connection": "keep-alive" + }, + "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"7eda8e6c32feffd740986916f444193ea5ebf2fd\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 207575276,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NzUyNzY=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/7eda8e6c32feffd740986916f444193ea5ebf2fd\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/7eda8e6c32feffd740986916f444193ea5ebf2fd/status\"\n}\n", + "status": 200 + }, + { + "body": "{\"message\":\"Update Post “1970-01-01-first-title”\",\"tree\":\"9011d70a132ecce386da7098e3ca594bbb772623\",\"parents\":[\"7eda8e6c32feffd740986916f444193ea5ebf2fd\"]}", + "method": "POST", + "url": "/repos/owner/repo/git/commits?ts=600", + "headers": { + "Date": "Tue, 10 Sep 2019 14:03:44 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "1504", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4227", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"bf0bbdef3c80e1155ac5debb5aeb8e2c\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/commits/aa841468a3b89fcf33dbafa7fdec1f39515773b6", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A0D:9D1F:A4D458:C927AD:5D77AD40", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"aa841468a3b89fcf33dbafa7fdec1f39515773b6\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NTc1Mjc2OmFhODQxNDY4YTNiODlmY2YzM2RiYWZhN2ZkZWMxZjM5NTE1NzczYjY=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/aa841468a3b89fcf33dbafa7fdec1f39515773b6\",\n \"html_url\": \"https://github.com/owner/repo/commit/aa841468a3b89fcf33dbafa7fdec1f39515773b6\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T14:03:44Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T14:03:44Z\"\n },\n \"tree\": {\n \"sha\": \"9011d70a132ecce386da7098e3ca594bbb772623\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/9011d70a132ecce386da7098e3ca594bbb772623\"\n },\n \"message\": \"Update Post “1970-01-01-first-title”\",\n \"parents\": [\n {\n \"sha\": \"7eda8e6c32feffd740986916f444193ea5ebf2fd\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/7eda8e6c32feffd740986916f444193ea5ebf2fd\",\n \"html_url\": \"https://github.com/owner/repo/commit/7eda8e6c32feffd740986916f444193ea5ebf2fd\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "status": 201 + }, + { + "method": "GET", + "url": "/repos/owner/repo/commits/7eda8e6c32feffd740986916f444193ea5ebf2fd/status?ts=600", + "headers": { + "Date": "Tue, 10 Sep 2019 14:03:45 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4226", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"86deebc3e06e886c964c41e0a4314895\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo, repo:status", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A0E:1510D:47FC17:584AEB:5D77AD40", + "content-length": "6574", + "connection": "keep-alive" + }, + "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"7eda8e6c32feffd740986916f444193ea5ebf2fd\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 207575276,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NzUyNzY=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/7eda8e6c32feffd740986916f444193ea5ebf2fd\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/7eda8e6c32feffd740986916f444193ea5ebf2fd/status\"\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/branches/master?ts=600", + "headers": { + "Date": "Tue, 10 Sep 2019 14:03:45 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4225", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"80c77d2f81ab07f51b5d129d0995389d\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A10:9D1F:A4D4E7:C92864:5D77AD41", + "content-length": "5961", + "connection": "keep-alive" + }, + "response": "{\n \"name\": \"master\",\n \"commit\": {\n \"sha\": \"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NTc1Mjc2OjcyNjE3MmRlYWU5OWM4YTJjZWE0YzcxZTczNGEwMmE3OTNkNGQ5ZTU=\",\n \"commit\": {\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-08T09:08:14Z\"\n },\n \"committer\": {\n \"name\": \"GitHub\",\n \"email\": \"noreply@github.com\",\n \"date\": \"2019-09-08T09:08:14Z\"\n },\n \"message\": \"Merge pull request #10 from owner/chore/update_dependencies\\n\\nChore: update dependencies\",\n \"tree\": {\n \"sha\": \"c5b7f6d674ba193bb7b4a5fcf4933034e1b7f2b7\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/c5b7f6d674ba193bb7b4a5fcf4933034e1b7f2b7\"\n },\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"comment_count\": 0,\n \"verification\": {\n \"verified\": true,\n \"reason\": \"valid\",\n \"signature\": \"-----BEGIN PGP SIGNATURE-----\\n\\nwsBcBAABCAAQBQJddMT+CRBK7hj4Ov3rIwAAdHIIABWcobVYZFMuqSPezceRaKDr\\npXGqxvB3WLiIrvsQiBz2si9SvufXxLUdq72iaYTbXMCqIAAIBDNwHLltOKcbUF9J\\nKa8pD6cq7jpNyZfhI8xlapMwEZPu53as0tSvwdOnl/0iL+WYjUZUFQR+vrWEmllu\\nhIES9QxU2nk5zcS7t8sFRA+sJdll8GzzhoWYkpw3wgqpxCzJdf5HJS0tWyVCZM5U\\nCgSpSgTvz9bALnQxu7YVrfLGEvi8S7LaOEz5HQc+TV1hNR2dfl5hhiHhWQ1Rsx5w\\nUECV01vItNWhx2dyMn77hIu/G+bTH89WZDU+CmifsNkmvkq90fk4eNt8Hg1mxn4=\\n=6ayM\\n-----END PGP SIGNATURE-----\\n\",\n \"payload\": \"tree c5b7f6d674ba193bb7b4a5fcf4933034e1b7f2b7\\nparent 8ade583d7c02e7769dd685ca64c10851c09f51cf\\nparent 4940957ff42b034d8c47d64b383c34548a34fbb5\\nauthor owner 1567933694 +0300\\ncommitter GitHub 1567933694 +0300\\n\\nMerge pull request #10 from owner/chore/update_dependencies\\n\\nChore: update dependencies\"\n }\n },\n \"url\": \"https://api.github.com/repos/owner/repo/commits/726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"html_url\": \"https://github.com/owner/repo/commit/726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/commits/726172deae99c8a2cea4c71e734a02a793d4d9e5/comments\",\n \"author\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"committer\": {\n \"login\": \"web-flow\",\n \"id\": 19864447,\n \"node_id\": \"MDQ6VXNlcjE5ODY0NDQ3\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/web-flow\",\n \"html_url\": \"https://github.com/web-flow\",\n \"followers_url\": \"https://api.github.com/users/web-flow/followers\",\n \"following_url\": \"https://api.github.com/users/web-flow/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/web-flow/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/web-flow/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/web-flow/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/web-flow/orgs\",\n \"repos_url\": \"https://api.github.com/users/web-flow/repos\",\n \"events_url\": \"https://api.github.com/users/web-flow/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/web-flow/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"parents\": [\n {\n \"sha\": \"8ade583d7c02e7769dd685ca64c10851c09f51cf\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/8ade583d7c02e7769dd685ca64c10851c09f51cf\",\n \"html_url\": \"https://github.com/owner/repo/commit/8ade583d7c02e7769dd685ca64c10851c09f51cf\"\n },\n {\n \"sha\": \"4940957ff42b034d8c47d64b383c34548a34fbb5\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/4940957ff42b034d8c47d64b383c34548a34fbb5\",\n \"html_url\": \"https://github.com/owner/repo/commit/4940957ff42b034d8c47d64b383c34548a34fbb5\"\n }\n ]\n },\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/branches/master\",\n \"html\": \"https://github.com/owner/repo/tree/master\"\n },\n \"protected\": false,\n \"protection\": {\n \"enabled\": false,\n \"required_status_checks\": {\n \"enforcement_level\": \"off\",\n \"contexts\": [\n\n ]\n }\n },\n \"protection_url\": \"https://api.github.com/repos/owner/repo/branches/master/protection\"\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/pulls/2/commits?ts=600", + "headers": { + "Date": "Tue, 10 Sep 2019 14:03:45 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4224", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"cca628b189e9e37915779ec51ab9f4bd\"", + "Last-Modified": "Tue, 10 Sep 2019 14:03:22 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A12:15110:18C1FA0:1E15A18:5D77AD41", + "content-length": "4157", + "connection": "keep-alive" + }, + "response": "[\n {\n \"sha\": \"7eda8e6c32feffd740986916f444193ea5ebf2fd\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NTc1Mjc2OjdlZGE4ZTZjMzJmZWZmZDc0MDk4NjkxNmY0NDQxOTNlYTVlYmYyZmQ=\",\n \"commit\": {\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T14:03:20Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T14:03:20Z\"\n },\n \"message\": \"Create Post “1970-01-01-first-title”\",\n \"tree\": {\n \"sha\": \"daee8d5d15d144e8779955166a2afeccde2770e1\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/daee8d5d15d144e8779955166a2afeccde2770e1\"\n },\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/7eda8e6c32feffd740986916f444193ea5ebf2fd\",\n \"comment_count\": 0,\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n },\n \"url\": \"https://api.github.com/repos/owner/repo/commits/7eda8e6c32feffd740986916f444193ea5ebf2fd\",\n \"html_url\": \"https://github.com/owner/repo/commit/7eda8e6c32feffd740986916f444193ea5ebf2fd\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/commits/7eda8e6c32feffd740986916f444193ea5ebf2fd/comments\",\n \"author\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"committer\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"parents\": [\n {\n \"sha\": \"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"html_url\": \"https://github.com/owner/repo/commit/726172deae99c8a2cea4c71e734a02a793d4d9e5\"\n }\n ]\n }\n]\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=600", + "headers": { + "Date": "Tue, 10 Sep 2019 14:03:46 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4223", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"c6a872f1344d6f5d742b0318182753a3\"", + "Last-Modified": "Tue, 10 Sep 2019 14:02:10 GMT", + "X-Poll-Interval": "300", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B81:2B24:180AEF7:1D3B1CE:5D77AD41", + "content-length": "484", + "connection": "keep-alive" + }, + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NTc1Mjc2OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"6391e767696a332140ac93ceb96a14205d0c8f13\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/6391e767696a332140ac93ceb96a14205d0c8f13\"\n }\n}\n", + "status": 200 + }, + { + "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjIsImhlYWQiOiJhYTg0MTQ2OGEzYjg5ZmNmMzNkYmFmYTdmZGVjMWYzOTUxNTc3M2I2In0sInVzZXIiOiJvd25lciIsInN0YXR1cyI6ImRyYWZ0IiwiYnJhbmNoIjoiY21zLzE5NzAtMDEtMDEtZmlyc3QtdGl0bGUiLCJjb2xsZWN0aW9uIjoicG9zdHMiLCJjb21taXRNZXNzYWdlIjoiQ3JlYXRlIFBvc3Qg4oCcMTk3MC0wMS0wMS1maXJzdC10aXRsZeKAnSIsInRpdGxlIjoiZmlyc3QgdGl0bGUiLCJkZXNjcmlwdGlvbiI6ImZpcnN0IGRlc2NyaXB0aW9uIiwib2JqZWN0cyI6eyJlbnRyeSI6eyJwYXRoIjoiY29udGVudC9wb3N0cy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxlLm1kIiwic2hhIjoiYTA0MTI0NTgxNDg5MmUzZjczZjYzY2E1NDMzM2ZkYTY0OWI3ZmMwYiJ9LCJmaWxlcyI6W119LCJ0aW1lU3RhbXAiOiIxOTcwLTAxLTAxVDAwOjAwOjAwLjYwMFoifQ==\",\"encoding\":\"base64\"}", + "method": "POST", + "url": "/repos/owner/repo/git/blobs?ts=600", + "headers": { + "Date": "Tue, 10 Sep 2019 14:03:47 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "207", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4222", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"662be841ee079a3669f95168961f93d7\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/blobs/b5fc06e89712b37ab1037186fbf3c093b1de020b", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B82:B4E0:16F7015:1BF43A1:5D77AD42", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"b5fc06e89712b37ab1037186fbf3c093b1de020b\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/b5fc06e89712b37ab1037186fbf3c093b1de020b\"\n}\n", + "status": 201 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/trees/6391e767696a332140ac93ceb96a14205d0c8f13?ts=600", + "headers": { + "Date": "Tue, 10 Sep 2019 14:03:47 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4221", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"ae44ff3067e409ac8f909993ce3285d0\"", + "Last-Modified": "Tue, 10 Sep 2019 14:02:10 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B84:15110:18C239D:1E15F11:5D77AD43", + "content-length": "895", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"6391e767696a332140ac93ceb96a14205d0c8f13\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/6391e767696a332140ac93ceb96a14205d0c8f13\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"bf19947389b80f8afd82bfbf02ef9b49d1af444f\",\n \"size\": 462,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/bf19947389b80f8afd82bfbf02ef9b49d1af444f\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 200 + }, + { + "body": "{\"base_tree\":\"6391e767696a332140ac93ceb96a14205d0c8f13\",\"tree\":[{\"path\":\"1970-01-01-first-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"b5fc06e89712b37ab1037186fbf3c093b1de020b\"}]}", + "method": "POST", + "url": "/repos/owner/repo/git/trees?ts=600", + "headers": { + "Date": "Tue, 10 Sep 2019 14:03:48 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "895", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4220", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"0c0330b50c19b895714f80591fa50265\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/trees/7d18dddac635b3cc912bddd0a8e3423c9e460c78", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B86:244EB:18494B4:1D813F0:5D77AD44", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"7d18dddac635b3cc912bddd0a8e3423c9e460c78\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/7d18dddac635b3cc912bddd0a8e3423c9e460c78\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"b5fc06e89712b37ab1037186fbf3c093b1de020b\",\n \"size\": 462,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/b5fc06e89712b37ab1037186fbf3c093b1de020b\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"message\":\"Updating “1970-01-01-first-title” metadata\",\"tree\":\"7d18dddac635b3cc912bddd0a8e3423c9e460c78\",\"parents\":[\"6391e767696a332140ac93ceb96a14205d0c8f13\"]}", + "method": "POST", + "url": "/repos/owner/repo/git/commits?ts=600", + "headers": { + "Date": "Tue, 10 Sep 2019 14:03:49 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "1510", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4219", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"fe88d62b5da46046611e7a742b109a9a\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/commits/f9319ef1e58827df9f7733d199a9a2e40d444e65", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B88:3ED77:AD882A:D26481:5D77AD44", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"f9319ef1e58827df9f7733d199a9a2e40d444e65\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NTc1Mjc2OmY5MzE5ZWYxZTU4ODI3ZGY5Zjc3MzNkMTk5YTlhMmU0MGQ0NDRlNjU=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/f9319ef1e58827df9f7733d199a9a2e40d444e65\",\n \"html_url\": \"https://github.com/owner/repo/commit/f9319ef1e58827df9f7733d199a9a2e40d444e65\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T14:03:49Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T14:03:49Z\"\n },\n \"tree\": {\n \"sha\": \"7d18dddac635b3cc912bddd0a8e3423c9e460c78\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/7d18dddac635b3cc912bddd0a8e3423c9e460c78\"\n },\n \"message\": \"Updating “1970-01-01-first-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"6391e767696a332140ac93ceb96a14205d0c8f13\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/6391e767696a332140ac93ceb96a14205d0c8f13\",\n \"html_url\": \"https://github.com/owner/repo/commit/6391e767696a332140ac93ceb96a14205d0c8f13\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "status": 201 + }, + { + "body": "{\"sha\":\"f9319ef1e58827df9f7733d199a9a2e40d444e65\",\"force\":false}", + "method": "PATCH", + "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=600", + "headers": { + "Date": "Tue, 10 Sep 2019 14:03:50 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4218", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"42efdb36d7506f9104eaa462303d67e5\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B8A:244EB:1849707:1D816BE:5D77AD45", + "content-length": "484", + "connection": "keep-alive" + }, + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NTc1Mjc2OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"f9319ef1e58827df9f7733d199a9a2e40d444e65\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/f9319ef1e58827df9f7733d199a9a2e40d444e65\"\n }\n}\n", + "status": 200 + }, + { + "body": "{\"sha\":\"aa841468a3b89fcf33dbafa7fdec1f39515773b6\",\"force\":true}", + "method": "PATCH", + "url": "/repos/owner/repo/git/refs/heads/cms%2F1970-01-01-first-title?ts=600", + "headers": { + "Date": "Tue, 10 Sep 2019 14:03:51 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4217", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"0f97c0a732c574dc0f268666015c7017\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B8C:15110:18C2934:1E165D6:5D77AD46", + "content-length": "518", + "connection": "keep-alive" + }, + "response": "{\n \"ref\": \"refs/heads/cms/1970-01-01-first-title\",\n \"node_id\": \"MDM6UmVmMjA3NTc1Mjc2OmNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxl\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/heads/cms/1970-01-01-first-title\",\n \"object\": {\n \"sha\": \"aa841468a3b89fcf33dbafa7fdec1f39515773b6\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/aa841468a3b89fcf33dbafa7fdec1f39515773b6\"\n }\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/commits/aa841468a3b89fcf33dbafa7fdec1f39515773b6/status?ts=600", + "headers": { + "Date": "Tue, 10 Sep 2019 14:03:52 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4216", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"e8ee3cf1f9d5ac4ab54d54086b0caea8\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo, repo:status", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B8E:2B19:AB5B89:D09997:5D77AD48", + "content-length": "6574", + "connection": "keep-alive" + }, + "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"aa841468a3b89fcf33dbafa7fdec1f39515773b6\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 207575276,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NzUyNzY=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/aa841468a3b89fcf33dbafa7fdec1f39515773b6\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/aa841468a3b89fcf33dbafa7fdec1f39515773b6/status\"\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/refs/heads/cms?ts=600", + "headers": { + "Date": "Tue, 10 Sep 2019 14:03:52 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4215", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"0d1af0121c8878bb46a0f6b2e9d15b09\"", + "Last-Modified": "Tue, 10 Sep 2019 14:02:10 GMT", + "X-Poll-Interval": "300", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B90:3ED7B:12956F4:1693F2F:5D77AD48", + "content-length": "542", + "connection": "keep-alive" + }, + "response": "[\n {\n \"ref\": \"refs/heads/cms/1970-01-01-first-title\",\n \"node_id\": \"MDM6UmVmMjA3NTc1Mjc2OmNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxl\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/heads/cms/1970-01-01-first-title\",\n \"object\": {\n \"sha\": \"aa841468a3b89fcf33dbafa7fdec1f39515773b6\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/aa841468a3b89fcf33dbafa7fdec1f39515773b6\"\n }\n }\n]\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/pulls?ts=600&head=cms/1970-01-01-first-title&state=open&base=master", + "headers": { + "Date": "Tue, 10 Sep 2019 14:03:53 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4214", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"2efa9375f1594341d0a23dc4aae4fc70\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B92:2B24:180BAC1:1D3C029:5D77AD48", + "content-length": "22154", + "connection": "keep-alive" + }, + "response": "[\n {\n \"url\": \"https://api.github.com/repos/owner/repo/pulls/2\",\n \"id\": 316011553,\n \"node_id\": \"MDExOlB1bGxSZXF1ZXN0MzE2MDExNTUz\",\n \"html_url\": \"https://github.com/owner/repo/pull/2\",\n \"diff_url\": \"https://github.com/owner/repo/pull/2.diff\",\n \"patch_url\": \"https://github.com/owner/repo/pull/2.patch\",\n \"issue_url\": \"https://api.github.com/repos/owner/repo/issues/2\",\n \"number\": 2,\n \"state\": \"open\",\n \"locked\": false,\n \"title\": \"Create Post “1970-01-01-first-title”\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Automatically generated by Netlify CMS\",\n \"created_at\": \"2019-09-10T14:03:22Z\",\n \"updated_at\": \"2019-09-10T14:03:52Z\",\n \"closed_at\": null,\n \"merged_at\": null,\n \"merge_commit_sha\": \"05c232b22a3bf896e7fe90b097f2429e65386bc4\",\n \"assignee\": null,\n \"assignees\": [\n\n ],\n \"requested_reviewers\": [\n\n ],\n \"requested_teams\": [\n\n ],\n \"labels\": [\n\n ],\n \"milestone\": null,\n \"commits_url\": \"https://api.github.com/repos/owner/repo/pulls/2/commits\",\n \"review_comments_url\": \"https://api.github.com/repos/owner/repo/pulls/2/comments\",\n \"review_comment_url\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/issues/2/comments\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/aa841468a3b89fcf33dbafa7fdec1f39515773b6\",\n \"head\": {\n \"label\": \"owner:cms/1970-01-01-first-title\",\n \"ref\": \"cms/1970-01-01-first-title\",\n \"sha\": \"aa841468a3b89fcf33dbafa7fdec1f39515773b6\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 207575276,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NzUyNzY=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-10T14:01:42Z\",\n \"updated_at\": \"2019-09-10T14:02:10Z\",\n \"pushed_at\": \"2019-09-10T14:03:52Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 1,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 1,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"base\": {\n \"label\": \"owner:master\",\n \"ref\": \"master\",\n \"sha\": \"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 207575276,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NzUyNzY=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-10T14:01:42Z\",\n \"updated_at\": \"2019-09-10T14:02:10Z\",\n \"pushed_at\": \"2019-09-10T14:03:52Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 1,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 1,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/2\"\n },\n \"html\": {\n \"href\": \"https://github.com/owner/repo/pull/2\"\n },\n \"issue\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/2\"\n },\n \"comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/2/comments\"\n },\n \"review_comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/2/comments\"\n },\n \"review_comment\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\"\n },\n \"commits\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/2/commits\"\n },\n \"statuses\": {\n \"href\": \"https://api.github.com/repos/owner/repo/statuses/aa841468a3b89fcf33dbafa7fdec1f39515773b6\"\n }\n },\n \"author_association\": \"OWNER\"\n }\n]\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=600&ref=master", + "headers": { + "Date": "Tue, 10 Sep 2019 14:03:54 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "404 Not Found", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4213", + "X-RateLimit-Reset": "1568126651", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B96:15110:18C2E31:1E16C0D:5D77AD49", + "content-length": "116", + "connection": "keep-alive" + }, + "response": "{\n \"message\": \"Not Found\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/#get-contents\"\n}\n", + "status": 404 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=600&ref=cms/1970-01-01-first-title", + "headers": { + "Date": "Tue, 10 Sep 2019 14:03:54 GMT", + "Content-Type": "application/vnd.github.VERSION.raw; charset=utf-8", + "Content-Length": "171", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4212", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"3e5676c8285a456a6604603042b5428883f50417\"", + "Last-Modified": "Tue, 10 Sep 2019 14:03:44 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B94:244E7:11D5CBD:15C4AAD:5D77AD49", + "connection": "keep-alive" + }, + "response": "---\ntemplate: post\ntitle: second title\ndraft: true\ndate: 1970-01-01T00:00:00.000Z\ndescription: second description\ncategory: second category\ntags:\n - tag2\n---\nsecond body\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/commits/aa841468a3b89fcf33dbafa7fdec1f39515773b6/status?ts=600", + "headers": { + "Date": "Tue, 10 Sep 2019 14:03:58 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4207", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"e8ee3cf1f9d5ac4ab54d54086b0caea8\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo, repo:status", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BA0:244E1:52B705:63DBB1:5D77AD4D", + "content-length": "6574", + "connection": "keep-alive" + }, + "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"aa841468a3b89fcf33dbafa7fdec1f39515773b6\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 207575276,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NzUyNzY=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/aa841468a3b89fcf33dbafa7fdec1f39515773b6\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/aa841468a3b89fcf33dbafa7fdec1f39515773b6/status\"\n}\n", + "status": 200 + } +] \ No newline at end of file diff --git a/cypress/fixtures/Github Backend Editorial Workflow - REST API__can update workflow status from within the editor.json b/cypress/fixtures/Github Backend Editorial Workflow - REST API__can update workflow status from within the editor.json new file mode 100644 index 00000000..0b770edd --- /dev/null +++ b/cypress/fixtures/Github Backend Editorial Workflow - REST API__can update workflow status from within the editor.json @@ -0,0 +1,1708 @@ +[ + { + "method": "GET", + "url": "/repos/owner/repo/contents/1970-01-01-first-title.json?ts=1568124516968&ref=refs/meta/_netlify_cms", + "headers": { + "Date": "Tue, 10 Sep 2019 14:08:37 GMT", + "Content-Type": "application/vnd.github.VERSION.raw; charset=utf-8", + "Content-Length": "462", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3922", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"7562834922e3879c752751c218d12efe731b62cb\"", + "Last-Modified": "Tue, 10 Sep 2019 14:08:23 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B3C:244EB:1866770:1DA57E5:5D77AE65", + "connection": "keep-alive" + }, + "response": "{\"type\":\"PR\",\"pr\":{\"number\":8,\"head\":\"bc1cb417abb97e691ef06d9d237f4521d31e4ca1\"},\"user\":\"owner\",\"status\":\"draft\",\"branch\":\"cms/1970-01-01-first-title\",\"collection\":\"posts\",\"commitMessage\":\"Create Post “1970-01-01-first-title”\",\"title\":\"first title\",\"description\":\"first description\",\"objects\":{\"entry\":{\"path\":\"content/posts/1970-01-01-first-title.md\",\"sha\":\"a041245814892e3f73f63ca54333fda649b7fc0b\"},\"files\":[]},\"timeStamp\":\"1970-01-01T00:00:00.300Z\"}", + "status": 200 + }, + { + "method": "GET", + "url": "/user?ts=0", + "headers": { + "Date": "Tue, 10 Sep 2019 14:08:38 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3921", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"fb606f875be1d23b690ea5f5e26b9fe9\"", + "Last-Modified": "Wed, 28 Aug 2019 04:48:54 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B46:B4DC:AE84DE:D4618D:5D77AE65", + "content-length": "1321", + "connection": "keep-alive" + }, + "response": "{\"login\":\"owner\",\"id\":1,\"avatar_url\":\"https://avatars1.githubusercontent.com/u/7892489?v=4\",\"name\":\"owner\"}", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo?ts=0", + "headers": { + "Date": "Tue, 10 Sep 2019 14:08:38 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3920", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"a26f9847e7caaf29e3327c5416048f2e\"", + "Last-Modified": "Tue, 10 Sep 2019 14:07:57 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B48:2B1F:126D51A:167F0FA:5D77AE66", + "content-length": "7296", + "connection": "keep-alive" + }, + "response": "{\n \"id\": 207575276,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NzUyNzY=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-10T14:01:42Z\",\n \"updated_at\": \"2019-09-10T14:07:57Z\",\n \"pushed_at\": \"2019-09-10T14:08:27Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\",\n \"permissions\": {\n \"admin\": true,\n \"push\": true,\n \"pull\": true\n },\n \"allow_squash_merge\": true,\n \"allow_merge_commit\": true,\n \"allow_rebase_merge\": true,\n \"network_count\": 0,\n \"subscribers_count\": 1\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/content/posts?ts=0&ref=master", + "headers": { + "Date": "Tue, 10 Sep 2019 14:08:39 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3919", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"c5b7f6d674ba193bb7b4a5fcf4933034e1b7f2b7\"", + "Last-Modified": "Tue, 10 Sep 2019 14:07:57 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B4A:244E4:B1EB54:D7AB9F:5D77AE67", + "content-length": "7422", + "connection": "keep-alive" + }, + "response": "[\n {\n \"name\": \"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"path\": \"content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"sha\": \"6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"size\": 1707,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"html\": \"https://github.com/owner/repo/blob/master/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md\"\n }\n },\n {\n \"name\": \"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"path\": \"content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"sha\": \"d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"size\": 2565,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"html\": \"https://github.com/owner/repo/blob/master/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\"\n }\n },\n {\n \"name\": \"2016-02-02---A-Brief-History-of-Typography.md\",\n \"path\": \"content/posts/2016-02-02---A-Brief-History-of-Typography.md\",\n \"sha\": \"0eea554365f002d0f1572af9a58522d335a794d5\",\n \"size\": 2786,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2016-02-02---A-Brief-History-of-Typography.md?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/content/posts/2016-02-02---A-Brief-History-of-Typography.md\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/content/posts/2016-02-02---A-Brief-History-of-Typography.md\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2016-02-02---A-Brief-History-of-Typography.md?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\",\n \"html\": \"https://github.com/owner/repo/blob/master/content/posts/2016-02-02---A-Brief-History-of-Typography.md\"\n }\n },\n {\n \"name\": \"2017-18-08---The-Birth-of-Movable-Type.md\",\n \"path\": \"content/posts/2017-18-08---The-Birth-of-Movable-Type.md\",\n \"sha\": \"44f78c474d04273185a95821426f75affc9b0044\",\n \"size\": 16071,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2017-18-08---The-Birth-of-Movable-Type.md?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/content/posts/2017-18-08---The-Birth-of-Movable-Type.md\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/content/posts/2017-18-08---The-Birth-of-Movable-Type.md\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2017-18-08---The-Birth-of-Movable-Type.md?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\",\n \"html\": \"https://github.com/owner/repo/blob/master/content/posts/2017-18-08---The-Birth-of-Movable-Type.md\"\n }\n },\n {\n \"name\": \"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"path\": \"content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"sha\": \"a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"size\": 7465,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"html\": \"https://github.com/owner/repo/blob/master/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md\"\n }\n }\n]\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/static/media?ts=0&ref=master", + "headers": { + "Date": "Tue, 10 Sep 2019 14:08:39 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3918", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"c5b7f6d674ba193bb7b4a5fcf4933034e1b7f2b7\"", + "Last-Modified": "Tue, 10 Sep 2019 14:07:57 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B4C:3ED82:18DA78A:1E3EE74:5D77AE67", + "content-length": "12362", + "connection": "keep-alive" + }, + "response": "[\n {\n \"name\": \"42-line-bible.jpg\",\n \"path\": \"static/media/42-line-bible.jpg\",\n \"sha\": \"41c8d12f9ca5864beb827c381fbeff935209d5fb\",\n \"size\": 671242,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/static/media/42-line-bible.jpg?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/static/media/42-line-bible.jpg\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/41c8d12f9ca5864beb827c381fbeff935209d5fb\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/static/media/42-line-bible.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/static/media/42-line-bible.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/41c8d12f9ca5864beb827c381fbeff935209d5fb\",\n \"html\": \"https://github.com/owner/repo/blob/master/static/media/42-line-bible.jpg\"\n }\n },\n {\n \"name\": \"gutenberg.jpg\",\n \"path\": \"static/media/gutenberg.jpg\",\n \"sha\": \"04315e355873ea5d358d9c371c39a6845c1ae4ae\",\n \"size\": 155002,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/static/media/gutenberg.jpg?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/static/media/gutenberg.jpg\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/04315e355873ea5d358d9c371c39a6845c1ae4ae\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/static/media/gutenberg.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/static/media/gutenberg.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/04315e355873ea5d358d9c371c39a6845c1ae4ae\",\n \"html\": \"https://github.com/owner/repo/blob/master/static/media/gutenberg.jpg\"\n }\n },\n {\n \"name\": \"image-0.jpg\",\n \"path\": \"static/media/image-0.jpg\",\n \"sha\": \"b70a1b64fd4fa9635823231a0ba92c6dc9393f16\",\n \"size\": 660287,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/static/media/image-0.jpg?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/static/media/image-0.jpg\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/b70a1b64fd4fa9635823231a0ba92c6dc9393f16\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/static/media/image-0.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/static/media/image-0.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/b70a1b64fd4fa9635823231a0ba92c6dc9393f16\",\n \"html\": \"https://github.com/owner/repo/blob/master/static/media/image-0.jpg\"\n }\n },\n {\n \"name\": \"image-1.jpg\",\n \"path\": \"static/media/image-1.jpg\",\n \"sha\": \"05eedae372b829c62501ac751b2d42dcc432541b\",\n \"size\": 392411,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/static/media/image-1.jpg?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/static/media/image-1.jpg\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/05eedae372b829c62501ac751b2d42dcc432541b\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/static/media/image-1.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/static/media/image-1.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/05eedae372b829c62501ac751b2d42dcc432541b\",\n \"html\": \"https://github.com/owner/repo/blob/master/static/media/image-1.jpg\"\n }\n },\n {\n \"name\": \"image-2.jpg\",\n \"path\": \"static/media/image-2.jpg\",\n \"sha\": \"53845ed35faf8939bea242bb85eda7c324b1be0b\",\n \"size\": 99147,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/static/media/image-2.jpg?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/static/media/image-2.jpg\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/53845ed35faf8939bea242bb85eda7c324b1be0b\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/static/media/image-2.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/static/media/image-2.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/53845ed35faf8939bea242bb85eda7c324b1be0b\",\n \"html\": \"https://github.com/owner/repo/blob/master/static/media/image-2.jpg\"\n }\n },\n {\n \"name\": \"image-3.jpg\",\n \"path\": \"static/media/image-3.jpg\",\n \"sha\": \"8b2339d97069e826fae1f156212e40ae458454e3\",\n \"size\": 358022,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/static/media/image-3.jpg?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/static/media/image-3.jpg\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/8b2339d97069e826fae1f156212e40ae458454e3\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/static/media/image-3.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/static/media/image-3.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/8b2339d97069e826fae1f156212e40ae458454e3\",\n \"html\": \"https://github.com/owner/repo/blob/master/static/media/image-3.jpg\"\n }\n },\n {\n \"name\": \"image-4.jpg\",\n \"path\": \"static/media/image-4.jpg\",\n \"sha\": \"a8f6f21253a67a4284b5a953b2fe633d44152ecd\",\n \"size\": 114837,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/static/media/image-4.jpg?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/static/media/image-4.jpg\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/a8f6f21253a67a4284b5a953b2fe633d44152ecd\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/static/media/image-4.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/static/media/image-4.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/a8f6f21253a67a4284b5a953b2fe633d44152ecd\",\n \"html\": \"https://github.com/owner/repo/blob/master/static/media/image-4.jpg\"\n }\n },\n {\n \"name\": \"movable-type.jpg\",\n \"path\": \"static/media/movable-type.jpg\",\n \"sha\": \"57b4e925ea00bd8e195cf4418eb6eb2995ea5f10\",\n \"size\": 559028,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/static/media/movable-type.jpg?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/static/media/movable-type.jpg\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/57b4e925ea00bd8e195cf4418eb6eb2995ea5f10\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/static/media/movable-type.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/static/media/movable-type.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/57b4e925ea00bd8e195cf4418eb6eb2995ea5f10\",\n \"html\": \"https://github.com/owner/repo/blob/master/static/media/movable-type.jpg\"\n }\n },\n {\n \"name\": \"printing-press.jpg\",\n \"path\": \"static/media/printing-press.jpg\",\n \"sha\": \"d27f56c9437d9becd2f56cc627c9322c2f1f61f6\",\n \"size\": 279283,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/static/media/printing-press.jpg?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/static/media/printing-press.jpg\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/d27f56c9437d9becd2f56cc627c9322c2f1f61f6\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/static/media/printing-press.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/static/media/printing-press.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/d27f56c9437d9becd2f56cc627c9322c2f1f61f6\",\n \"html\": \"https://github.com/owner/repo/blob/master/static/media/printing-press.jpg\"\n }\n },\n {\n \"name\": \"type-through-time.jpg\",\n \"path\": \"static/media/type-through-time.jpg\",\n \"sha\": \"3f08366a805c51a60ec5056010f22de4ba08abaa\",\n \"size\": 117689,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/static/media/type-through-time.jpg?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/static/media/type-through-time.jpg\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/3f08366a805c51a60ec5056010f22de4ba08abaa\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/static/media/type-through-time.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/static/media/type-through-time.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/3f08366a805c51a60ec5056010f22de4ba08abaa\",\n \"html\": \"https://github.com/owner/repo/blob/master/static/media/type-through-time.jpg\"\n }\n }\n]\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9?ts=0", + "headers": { + "Date": "Tue, 10 Sep 2019 14:08:40 GMT", + "Content-Type": "text/plain; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3917", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"f9b97e27090d24f9b7c773ede73acd0c\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B54:B4E0:171574B:1C19B4D:5D77AE67", + "content-length": "2565", + "connection": "keep-alive" + }, + "response": "---\ntitle: The Origins of Social Stationery Lettering\ndate: \"2016-12-01T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Design Culture\"\ndescription: \"Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante.\"\ncanonical: ''\n---\n\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\n\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-3.jpg)\n\n## Header Level 2\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \n\n
\n\t
\n\t\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\n\t\t
\n\t\t\t— Aliquam tincidunt mauris eu risus.\n\t\t
\n\t
\n
\n\n### Header Level 3\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\n\n```css\n#header h1 a {\n display: block;\n width: 300px;\n height: 80px;\n}\n```\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043?ts=0", + "headers": { + "Date": "Tue, 10 Sep 2019 14:08:40 GMT", + "Content-Type": "text/plain; charset=iso-8859-1", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3916", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"b11610ec1fe2f13ce388952c3fdf3423\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B4F:15110:18E1423:1E3C60C:5D77AE67", + "content-length": "1707", + "connection": "keep-alive" + }, + "response": "---\ntitle: Perfecting the Art of Perfection\ndate: \"2016-09-01T23:46:37.121Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Design Inspiration\"\ntags:\n - \"Handwriting\"\n - \"Learning to write\"\ndescription: \"Quisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\"\ncanonical: ''\n---\n\nQuisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\n\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-2.jpg)\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. \n\nPraesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5?ts=0", + "headers": { + "Date": "Tue, 10 Sep 2019 14:08:40 GMT", + "Content-Type": "text/plain; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3915", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"733ab4cffe213d8db3be254e7fee8f69\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B5A:9D20:1197244:15842C5:5D77AE67", + "content-length": "2786", + "connection": "keep-alive" + }, + "response": "---\ntitle: \"A Brief History of Typography\"\ndate: \"2016-02-02T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Design Inspiration\"\ntags:\n - \"Linotype\"\n - \"Monotype\"\n - \"History of typography\"\n - \"Helvetica\"\ndescription: \"Morbi in sem quis dui placerat ornare. Pellentesque odio nisi, euismod in, pharetra a, ultricies in, diam. Sed arcu. Cras consequat.\"\ncanonical: ''\n---\n\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\n\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-0.jpg)\n\n## Header Level 2\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \n\n
\n\t
\n\t\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\n\t\t
\n\t\t\t— Aliquam tincidunt mauris eu risus.\n\t\t
\n\t
\n
\n\n### Header Level 3\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\n\n```css\n#header h1 a {\n display: block;\n width: 300px;\n height: 80px;\n}\n```\n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044?ts=0", + "headers": { + "Date": "Tue, 10 Sep 2019 14:08:40 GMT", + "Content-Type": "text/plain; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3914", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"6e2453f34250f47bb0adc4ff2f6887a8\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B64:244E7:11ED00F:15E16C5:5D77AE68", + "content-length": "16071", + "connection": "keep-alive" + }, + "response": "---\ntitle: \"Johannes Gutenberg: The Birth of Movable Type\"\ndate: \"2017-08-18T22:12:03.284Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Typography\"\ntags:\n - \"Open source\"\n - \"Gatsby\"\n - \"Typography\"\ndescription: \"German inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\"\ncanonical: ''\n---\n\nGerman inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\n\n**Johannes Gensfleisch zur Laden zum Gutenberg** (c. 1398 – 1468) was a German blacksmith, goldsmith, printer, and publisher who introduced printing to Europe. His invention of mechanical movable type printing started the Printing Revolution and is widely regarded as the most important event of the modern period. It played a key role in the development of the Renaissance, Reformation, the Age of Enlightenment, and the Scientific revolution and laid the material basis for the modern knowledge-based economy and the spread of learning to the masses.\n\n
\n\t\"Gutenberg\"\n\t
Johannes Gutenberg
\n
\n\nWith his invention of the printing press, Gutenberg was the first European to use movable type printing, in around 1439. Among his many contributions to printing are: the invention of a process for mass-producing movable type; the use of oil-based ink; and the use of a wooden printing press similar to the agricultural screw presses of the period. His truly epochal invention was the combination of these elements into a practical system that allowed the mass production of printed books and was economically viable for printers and readers alike. Gutenberg's method for making type is traditionally considered to have included a type metal alloy and a hand mould for casting type. The alloy was a mixture of lead, tin, and antimony that melted at a relatively low temperature for faster and more economical casting, cast well, and created a durable type.\n\nIn Renaissance Europe, the arrival of mechanical movable type printing introduced the era of mass communication which permanently altered the structure of society. The relatively unrestricted circulation of information — including revolutionary ideas — transcended borders, captured the masses in the Reformation and threatened the power of political and religious authorities; the sharp increase in literacy broke the monopoly of the literate elite on education and learning and bolstered the emerging middle class. Across Europe, the increasing cultural self-awareness of its people led to the rise of proto-nationalism, accelerated by the flowering of the European vernacular languages to the detriment of Latin's status as lingua franca. In the 19th century, the replacement of the hand-operated Gutenberg-style press by steam-powered rotary presses allowed printing on an industrial scale, while Western-style printing was adopted all over the world, becoming practically the sole medium for modern bulk printing.\n\nThe use of movable type was a marked improvement on the handwritten manuscript, which was the existing method of book production in Europe, and upon woodblock printing, and revolutionized European book-making. Gutenberg's printing technology spread rapidly throughout Europe and later the world.\n\nHis major work, the Gutenberg Bible (also known as the 42-line Bible), has been acclaimed for its high aesthetic and technical quality.\n\n## Printing Press\n\nAround 1439, Gutenberg was involved in a financial misadventure making polished metal mirrors (which were believed to capture holy light from religious relics) for sale to pilgrims to Aachen: in 1439 the city was planning to exhibit its collection of relics from Emperor Charlemagne but the event was delayed by one year due to a severe flood and the capital already spent could not be repaid. When the question of satisfying the investors came up, Gutenberg is said to have promised to share a “secret”. It has been widely speculated that this secret may have been the idea of printing with movable type. Also around 1439–1440, the Dutch Laurens Janszoon Coster came up with the idea of printing. Legend has it that the idea came to him “like a ray of light”.\n\n
\n\t\"Early\n\t
Early wooden printing press as depicted in 1568.
\n
\n\nUntil at least 1444 he lived in Strasbourg, most likely in the St. Arbogast parish. It was in Strasbourg in 1440 that Gutenberg is said to have perfected and unveiled the secret of printing based on his research, mysteriously entitled Kunst und Aventur (art and enterprise). It is not clear what work he was engaged in, or whether some early trials with printing from movable type may have been conducted there. After this, there is a gap of four years in the record. In 1448, he was back in Mainz, where he took out a loan from his brother-in-law Arnold Gelthus, quite possibly for a printing press or related paraphernalia. By this date, Gutenberg may have been familiar with intaglio printing; it is claimed that he had worked on copper engravings with an artist known as the Master of Playing Cards.\n\nBy 1450, the press was in operation, and a German poem had been printed, possibly the first item to be printed there. Gutenberg was able to convince the wealthy moneylender Johann Fust for a loan of 800 guilders. Peter Schöffer, who became Fust’s son-in-law, also joined the enterprise. Schöffer had worked as a scribe in Paris and is believed to have designed some of the first typefaces.\n\n
\n\t
\n\t\t

All that has been written to me about that marvelous man seen at Frankfurt is true. I have not seen complete Bibles but only a number of quires of various books of the Bible. The script was very neat and legible, not at all difficult to follow—your grace would be able to read it without effort, and indeed without glasses.

\n\t\t
\n\t\t\t—Future pope Pius II in a letter to Cardinal Carvajal, March 1455\n\t\t
\n\t
\n
\n\nGutenberg's workshop was set up at Hof Humbrecht, a property belonging to a distant relative. It is not clear when Gutenberg conceived the Bible project, but for this he borrowed another 800 guilders from Fust, and work commenced in 1452. At the same time, the press was also printing other, more lucrative texts (possibly Latin grammars). There is also some speculation that there may have been two presses, one for the pedestrian texts, and one for the Bible. One of the profit-making enterprises of the new press was the printing of thousands of indulgences for the church, documented from 1454–55.\n\nIn 1455 Gutenberg completed his 42-line Bible, known as the Gutenberg Bible. About 180 copies were printed, most on paper and some on vellum.\n\n## Court Case\n\nSome time in 1456, there was a dispute between Gutenberg and Fust, and Fust demanded his money back, accusing Gutenberg of misusing the funds. Meanwhile the expenses of the Bible project had proliferated, and Gutenberg's debt now exceeded 20,000 guilders. Fust sued at the archbishop's court. A November 1455 legal document records that there was a partnership for a \"project of the books,\" the funds for which Gutenberg had used for other purposes, according to Fust. The court decided in favor of Fust, giving him control over the Bible printing workshop and half of all printed Bibles.\n\nThus Gutenberg was effectively bankrupt, but it appears he retained (or re-started) a small printing shop, and participated in the printing of a Bible in the town of Bamberg around 1459, for which he seems at least to have supplied the type. But since his printed books never carry his name or a date, it is difficult to be certain, and there is consequently a considerable scholarly debate on this subject. It is also possible that the large Catholicon dictionary, 300 copies of 754 pages, printed in Mainz in 1460, may have been executed in his workshop.\n\nMeanwhile, the Fust–Schöffer shop was the first in Europe to bring out a book with the printer's name and date, the Mainz Psalter of August 1457, and while proudly proclaiming the mechanical process by which it had been produced, it made no mention of Gutenberg.\n\n## Later Life\n\nIn 1462, during a conflict between two archbishops, Mainz was sacked by archbishop Adolph von Nassau, and Gutenberg was exiled. An old man by now, he moved to Eltville where he may have initiated and supervised a new printing press belonging to the brothers Bechtermünze.\n\nIn January 1465, Gutenberg's achievements were recognized and he was given the title Hofmann (gentleman of the court) by von Nassau. This honor included a stipend, an annual court outfit, as well as 2,180 litres of grain and 2,000 litres of wine tax-free. It is believed he may have moved back to Mainz around this time, but this is not certain.\n\n***\n\nGutenberg died in 1468 and was buried in the Franciscan church at Mainz, his contributions largely unknown. This church and the cemetery were later destroyed, and Gutenberg's grave is now lost.\n\nIn 1504, he was mentioned as the inventor of typography in a book by Professor Ivo Wittig. It was not until 1567 that the first portrait of Gutenberg, almost certainly an imaginary reconstruction, appeared in Heinrich Pantaleon's biography of famous Germans.\n\n## Printing Method With Movable Type\n\nGutenberg's early printing process, and what tests he may have made with movable type, are not known in great detail. His later Bibles were printed in such a way as to have required large quantities of type, some estimates suggesting as many as 100,000 individual sorts. Setting each page would take, perhaps, half a day, and considering all the work in loading the press, inking the type, pulling the impressions, hanging up the sheets, distributing the type, etc., it is thought that the Gutenberg–Fust shop might have employed as many as 25 craftsmen.\n\n![Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5](/media/movable-type.jpg)\n\n*Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5*\n\nGutenberg's technique of making movable type remains unclear. In the following decades, punches and copper matrices became standardized in the rapidly disseminating printing presses across Europe. Whether Gutenberg used this sophisticated technique or a somewhat primitive version has been the subject of considerable debate.\n\nIn the standard process of making type, a hard metal punch (made by punchcutting, with the letter carved back to front) is hammered into a softer copper bar, creating a matrix. This is then placed into a hand-held mould and a piece of type, or \"sort\", is cast by filling the mould with molten type-metal; this cools almost at once, and the resulting piece of type can be removed from the mould. The matrix can be reused to create hundreds, or thousands, of identical sorts so that the same character appearing anywhere within the book will appear very uniform, giving rise, over time, to the development of distinct styles of typefaces or fonts. After casting, the sorts are arranged into type-cases, and used to make up pages which are inked and printed, a procedure which can be repeated hundreds, or thousands, of times. The sorts can be reused in any combination, earning the process the name of “movable type”.\n\nThe invention of the making of types with punch, matrix and mold has been widely attributed to Gutenberg. However, recent evidence suggests that Gutenberg's process was somewhat different. If he used the punch and matrix approach, all his letters should have been nearly identical, with some variations due to miscasting and inking. However, the type used in Gutenberg's earliest work shows other variations.\n\n
\n\t
\n\t\t

It is a press, certainly, but a press from which shall flow in inexhaustible streams… Through it, god will spread his word.

\n\t\t
\n\t\t\t—Johannes Gutenberg\n\t\t
\n\t
\n
\n\nIn 2001, the physicist Blaise Agüera y Arcas and Princeton librarian Paul Needham, used digital scans of a Papal bull in the Scheide Library, Princeton, to carefully compare the same letters (types) appearing in different parts of the printed text. The irregularities in Gutenberg's type, particularly in simple characters such as the hyphen, suggested that the variations could not have come from either ink smear or from wear and damage on the pieces of metal on the types themselves. While some identical types are clearly used on other pages, other variations, subjected to detailed image analysis, suggested that they could not have been produced from the same matrix. Transmitted light pictures of the page also appeared to reveal substructures in the type that could not arise from traditional punchcutting techniques. They hypothesized that the method may have involved impressing simple shapes to create alphabets in “cuneiform” style in a matrix made of some soft material, perhaps sand. Casting the type would destroy the mould, and the matrix would need to be recreated to make each additional sort. This could explain the variations in the type, as well as the substructures observed in the printed images.\n\nThus, they feel that “the decisive factor for the birth of typography”, the use of reusable moulds for casting type, might have been a more progressive process than was previously thought. They suggest that the additional step of using the punch to create a mould that could be reused many times was not taken until twenty years later, in the 1470s. Others have not accepted some or all of their suggestions, and have interpreted the evidence in other ways, and the truth of the matter remains very uncertain.\n\nA 1568 history by Hadrianus Junius of Holland claims that the basic idea of the movable type came to Gutenberg from Laurens Janszoon Coster via Fust, who was apprenticed to Coster in the 1430s and may have brought some of his equipment from Haarlem to Mainz. While Coster appears to have experimented with moulds and castable metal type, there is no evidence that he had actually printed anything with this technology. He was an inventor and a goldsmith. However, there is one indirect supporter of the claim that Coster might be the inventor. The author of the Cologne Chronicle of 1499 quotes Ulrich Zell, the first printer of Cologne, that printing was performed in Mainz in 1450, but that some type of printing of lower quality had previously occurred in the Netherlands. However, the chronicle does not mention the name of Coster, while it actually credits Gutenberg as the \"first inventor of printing\" in the very same passage (fol. 312). The first securely dated book by Dutch printers is from 1471, and the Coster connection is today regarded as a mere legend.\n\nThe 19th century printer and typefounder Fournier Le Jeune suggested that Gutenberg might not have been using type cast with a reusable matrix, but possibly wooden types that were carved individually. A similar suggestion was made by Nash in 2004. This remains possible, albeit entirely unproven.\n\nIt has also been questioned whether Gutenberg used movable types at all. In 2004, Italian professor Bruno Fabbiani claimed that examination of the 42-line Bible revealed an overlapping of letters, suggesting that Gutenberg did not in fact use movable type (individual cast characters) but rather used whole plates made from a system somewhat like a modern typewriter, whereby the letters were stamped successively into the plate and then printed. However, most specialists regard the occasional overlapping of type as caused by paper movement over pieces of type of slightly unequal height.", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774?ts=0", + "headers": { + "Date": "Tue, 10 Sep 2019 14:08:41 GMT", + "Content-Type": "text/plain; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3913", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"d2bb4e67afce9cad20457cc0c72b8a41\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B66:244E7:11ED18C:15E1885:5D77AE69", + "content-length": "7465", + "connection": "keep-alive" + }, + "response": "---\ntitle: Humane Typography in the Digital Age\ndate: \"2017-08-19T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Typography\"\ntags:\n - \"Design\"\n - \"Typography\"\n - \"Web Development\"\ndescription: \"An Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\"\ncanonical: ''\n---\n\n- [The first transition](#the-first-transition)\n- [The digital age](#the-digital-age)\n- [Loss of humanity through transitions](#loss-of-humanity-through-transitions)\n- [Chasing perfection](#chasing-perfection)\n\nAn Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\n\nThe typography of this industrial age was no longer handcrafted. Mass production and profit became more important. Quantity mattered more than the quality. The books and printed works in general lost a part of its humanity. The typefaces were not produced by craftsmen anymore. It was the machines printing and tying the books together now. The craftsmen had to let go of their craft and became a cog in the process. An extension of the industrial machine.\n\nBut the victory of the industrialism didn’t mean that the craftsmen were completely extinct. The two worlds continued to coexist independently. Each recognising the good in the other — the power of industrialism and the humanity of craftsmanship. This was the second transition that would strip typography of a part of its humanity. We have to go 500 years back in time to meet the first one.\n\n## The first transition\n\nA similar conflict emerged after the invention of the first printing press in Europe. Johannes Gutenberg invented movable type and used it to produce different compositions. His workshop could print up to 240 impressions per hour. Until then, the books were being copied by hand. All the books were handwritten and decorated with hand drawn ornaments and figures. A process of copying a book was long but each book, even a copy, was a work of art.\n\nThe first printed books were, at first, perceived as inferior to the handwritten ones. They were smaller and cheaper to produce. Movable type provided the printers with flexibility that allowed them to print books in languages other than Latin. Gill describes the transition to industrialism as something that people needed and wanted. Something similar happened after the first printed books emerged. People wanted books in a language they understood and they wanted books they could take with them. They were hungry for knowledge and printed books satisfied this hunger.\n\n![42-line-bible.jpg](/media/42-line-bible.jpg)\n\n*The 42–Line Bible, printed by Gutenberg.*\n\nBut, through this transition, the book lost a large part of its humanity. The machine took over most of the process but craftsmanship was still a part of it. The typefaces were cut manually by the first punch cutters. The paper was made by hand. The illustrations and ornaments were still being hand drawn. These were the remains of the craftsmanship that went almost extinct in the times of Eric Gill.\n\n## The digital age\n\nThe first transition took away a large part of humanity from written communication. Industrialisation, the second transition described by Eric Gill, took away most of what was left. But it’s the third transition that stripped it naked. Typefaces are faceless these days. They’re just fonts on our computers. Hardly anyone knows their stories. Hardly anyone cares. Flicking through thousands of typefaces and finding the “right one” is a matter of minutes.\n\n> In the new computer age the proliferation of typefaces and type manipulations represents a new level of visual pollution threatening our culture. Out of thousands of typefaces, all we need are a few basic ones, and trash the rest.\n>\n— Massimo Vignelli\n\nTypography is not about typefaces. It’s not about what looks best, it’s about what feels right. What communicates the message best. Typography, in its essence, is about the message. “Typographical design should perform optically what the speaker creates through voice and gesture of his thoughts.”, as El Lissitzky, a famous Russian typographer, put it.\n\n## Loss of humanity through transitions\n\nEach transition took away a part of humanity from written language. Handwritten books being the most humane form and the digital typefaces being the least. Overuse of Helvetica is a good example. Messages are being told in a typeface just because it’s a safe option. It’s always there. Everyone knows it but yet, nobody knows it. Stop someone on the street and ask him what Helvetica is? Ask a designer the same question. Ask him where it came from, when, why and who designed it. Most of them will fail to answer these questions. Most of them used it in their precious projects but they still don’t spot it in the street.\n\n
\n\t
\n\t\t

Knowledge of the quality of a typeface is of the greatest importance for the functional, aesthetic and psychological effect.

\n\t\t
\n\t\t\t— Josef Mueller-Brockmann\n\t\t
\n\t
\n
\n\nTypefaces don’t look handmade these days. And that’s all right. They don’t have to. Industrialism took that away from them and we’re fine with it. We’ve traded that part of humanity for a process that produces more books that are easier to read. That can’t be bad. And it isn’t.\n\n> Humane typography will often be comparatively rough and even uncouth; but while a certain uncouthness does not seriously matter in humane works, uncouthness has no excuse whatever in the productions of the machine.\n>\n> — Eric Gill\n\nWe’ve come close to “perfection” in the last five centuries. The letters are crisp and without rough edges. We print our compositions with high–precision printers on a high quality, machine made paper.\n\n![type-through-time.jpg](/media/type-through-time.jpg)\n\n*Type through 5 centuries.*\n\nWe lost a part of ourselves because of this chase after perfection. We forgot about the craftsmanship along the way. And the worst part is that we don’t care. The transition to the digital age made that clear. We choose typefaces like clueless zombies. There’s no meaning in our work. Type sizes, leading, margins… It’s all just a few clicks or lines of code. The message isn’t important anymore. There’s no more “why” behind the “what”.\n\n## Chasing perfection\n\nHuman beings aren’t perfect. Perfection is something that will always elude us. There will always be a small part of humanity in everything we do. No matter how small that part, we should make sure that it transcends the limits of the medium. We have to think about the message first. What typeface should we use and why? Does the typeface match the message and what we want to communicate with it? What will be the leading and why? Will there be more typefaces in our design? On what ground will they be combined? What makes our design unique and why? This is the part of humanity that is left in typography. It might be the last part. Are we really going to give it up?\n\n*Originally published by [Matej Latin](http://matejlatin.co.uk/) on [Medium](https://medium.com/design-notes/humane-typography-in-the-digital-age-9bd5c16199bd?ref=webdesignernews.com#.lygo82z0x).*", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/1970-01-01-first-title.json?ts=300&ref=refs/meta/_netlify_cms", + "headers": { + "Date": "Tue, 10 Sep 2019 14:08:43 GMT", + "Content-Type": "application/vnd.github.VERSION.raw; charset=utf-8", + "Content-Length": "462", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3912", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"7562834922e3879c752751c218d12efe731b62cb\"", + "Last-Modified": "Tue, 10 Sep 2019 14:08:23 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B68:3ED7B:12AE4C4:16B28F8:5D77AE6B", + "connection": "keep-alive" + }, + "response": "{\"type\":\"PR\",\"pr\":{\"number\":8,\"head\":\"bc1cb417abb97e691ef06d9d237f4521d31e4ca1\"},\"user\":\"owner\",\"status\":\"draft\",\"branch\":\"cms/1970-01-01-first-title\",\"collection\":\"posts\",\"commitMessage\":\"Create Post “1970-01-01-first-title”\",\"title\":\"first title\",\"description\":\"first description\",\"objects\":{\"entry\":{\"path\":\"content/posts/1970-01-01-first-title.md\",\"sha\":\"a041245814892e3f73f63ca54333fda649b7fc0b\"},\"files\":[]},\"timeStamp\":\"1970-01-01T00:00:00.300Z\"}", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=master", + "headers": { + "Date": "Tue, 10 Sep 2019 14:08:44 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "404 Not Found", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3911", + "X-RateLimit-Reset": "1568126651", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B6C:3ED77:AE950F:D3AE8A:5D77AE6C", + "content-length": "116", + "connection": "keep-alive" + }, + "response": "{\n \"message\": \"Not Found\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/#get-contents\"\n}\n", + "status": 404 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=cms/1970-01-01-first-title", + "headers": { + "Date": "Tue, 10 Sep 2019 14:08:44 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "404 Not Found", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3910", + "X-RateLimit-Reset": "1568126651", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B6A:1510F:127B266:166FD21:5D77AE6C", + "content-length": "148", + "connection": "keep-alive" + }, + "response": "{\n \"message\": \"No commit found for the ref cms/1970-01-01-first-title\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/\"\n}\n", + "status": 404 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=master", + "headers": { + "Date": "Tue, 10 Sep 2019 14:08:44 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "404 Not Found", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3909", + "X-RateLimit-Reset": "1568126651", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B70:244EB:186733D:1DA6688:5D77AE6C", + "content-length": "116", + "connection": "keep-alive" + }, + "response": "{\n \"message\": \"Not Found\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/#get-contents\"\n}\n", + "status": 404 + }, + { + "body": "{\"content\":\"LS0tCnRlbXBsYXRlOiBwb3N0CnRpdGxlOiBmaXJzdCB0aXRsZQpkcmFmdDogdHJ1ZQpkYXRlOiAxOTcwLTAxLTAxVDAwOjAwOjAwLjAwMFoKZGVzY3JpcHRpb246IGZpcnN0IGRlc2NyaXB0aW9uCmNhdGVnb3J5OiBmaXJzdCBjYXRlZ29yeQp0YWdzOgogIC0gdGFnMQotLS0KZmlyc3QgYm9keQo=\",\"encoding\":\"base64\"}", + "method": "POST", + "url": "/repos/owner/repo/git/blobs?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:08:45 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "207", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3908", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"cb99eafe6ceb0316a6aa5e0717f30f21\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B72:3ED77:AE961B:D3AFC5:5D77AE6D", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"a041245814892e3f73f63ca54333fda649b7fc0b\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b\"\n}\n", + "status": 201 + }, + { + "method": "GET", + "url": "/repos/owner/repo/branches/master?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:08:46 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3907", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"80c77d2f81ab07f51b5d129d0995389d\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B75:9D21:1796C4F:1CBF398:5D77AE6D", + "content-length": "5961", + "connection": "keep-alive" + }, + "response": "{\n \"name\": \"master\",\n \"commit\": {\n \"sha\": \"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NTc1Mjc2OjcyNjE3MmRlYWU5OWM4YTJjZWE0YzcxZTczNGEwMmE3OTNkNGQ5ZTU=\",\n \"commit\": {\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-08T09:08:14Z\"\n },\n \"committer\": {\n \"name\": \"GitHub\",\n \"email\": \"noreply@github.com\",\n \"date\": \"2019-09-08T09:08:14Z\"\n },\n \"message\": \"Merge pull request #10 from owner/chore/update_dependencies\\n\\nChore: update dependencies\",\n \"tree\": {\n \"sha\": \"c5b7f6d674ba193bb7b4a5fcf4933034e1b7f2b7\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/c5b7f6d674ba193bb7b4a5fcf4933034e1b7f2b7\"\n },\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"comment_count\": 0,\n \"verification\": {\n \"verified\": true,\n \"reason\": \"valid\",\n \"signature\": \"-----BEGIN PGP SIGNATURE-----\\n\\nwsBcBAABCAAQBQJddMT+CRBK7hj4Ov3rIwAAdHIIABWcobVYZFMuqSPezceRaKDr\\npXGqxvB3WLiIrvsQiBz2si9SvufXxLUdq72iaYTbXMCqIAAIBDNwHLltOKcbUF9J\\nKa8pD6cq7jpNyZfhI8xlapMwEZPu53as0tSvwdOnl/0iL+WYjUZUFQR+vrWEmllu\\nhIES9QxU2nk5zcS7t8sFRA+sJdll8GzzhoWYkpw3wgqpxCzJdf5HJS0tWyVCZM5U\\nCgSpSgTvz9bALnQxu7YVrfLGEvi8S7LaOEz5HQc+TV1hNR2dfl5hhiHhWQ1Rsx5w\\nUECV01vItNWhx2dyMn77hIu/G+bTH89WZDU+CmifsNkmvkq90fk4eNt8Hg1mxn4=\\n=6ayM\\n-----END PGP SIGNATURE-----\\n\",\n \"payload\": \"tree c5b7f6d674ba193bb7b4a5fcf4933034e1b7f2b7\\nparent 8ade583d7c02e7769dd685ca64c10851c09f51cf\\nparent 4940957ff42b034d8c47d64b383c34548a34fbb5\\nauthor owner 1567933694 +0300\\ncommitter GitHub 1567933694 +0300\\n\\nMerge pull request #10 from owner/chore/update_dependencies\\n\\nChore: update dependencies\"\n }\n },\n \"url\": \"https://api.github.com/repos/owner/repo/commits/726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"html_url\": \"https://github.com/owner/repo/commit/726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/commits/726172deae99c8a2cea4c71e734a02a793d4d9e5/comments\",\n \"author\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"committer\": {\n \"login\": \"web-flow\",\n \"id\": 19864447,\n \"node_id\": \"MDQ6VXNlcjE5ODY0NDQ3\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/web-flow\",\n \"html_url\": \"https://github.com/web-flow\",\n \"followers_url\": \"https://api.github.com/users/web-flow/followers\",\n \"following_url\": \"https://api.github.com/users/web-flow/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/web-flow/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/web-flow/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/web-flow/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/web-flow/orgs\",\n \"repos_url\": \"https://api.github.com/users/web-flow/repos\",\n \"events_url\": \"https://api.github.com/users/web-flow/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/web-flow/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"parents\": [\n {\n \"sha\": \"8ade583d7c02e7769dd685ca64c10851c09f51cf\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/8ade583d7c02e7769dd685ca64c10851c09f51cf\",\n \"html_url\": \"https://github.com/owner/repo/commit/8ade583d7c02e7769dd685ca64c10851c09f51cf\"\n },\n {\n \"sha\": \"4940957ff42b034d8c47d64b383c34548a34fbb5\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/4940957ff42b034d8c47d64b383c34548a34fbb5\",\n \"html_url\": \"https://github.com/owner/repo/commit/4940957ff42b034d8c47d64b383c34548a34fbb5\"\n }\n ]\n },\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/branches/master\",\n \"html\": \"https://github.com/owner/repo/tree/master\"\n },\n \"protected\": false,\n \"protection\": {\n \"enabled\": false,\n \"required_status_checks\": {\n \"enforcement_level\": \"off\",\n \"contexts\": [\n\n ]\n }\n },\n \"protection_url\": \"https://api.github.com/repos/owner/repo/branches/master/protection\"\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/trees/726172deae99c8a2cea4c71e734a02a793d4d9e5?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:08:46 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3906", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"7a035f3359b977cd956a086f27ff138d\"", + "Last-Modified": "Tue, 10 Sep 2019 14:07:57 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B76:1510F:127B502:1670085:5D77AE6E", + "content-length": "11769", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"tree\": [\n {\n \"path\": \".circleci\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"e5e9af3301cac61f120b8e4d40b1733c7a45685a\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/e5e9af3301cac61f120b8e4d40b1733c7a45685a\"\n },\n {\n \"path\": \".eslintignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"80b4531b026d19f8fa589efd122e76199d23f967\",\n \"size\": 39,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/80b4531b026d19f8fa589efd122e76199d23f967\"\n },\n {\n \"path\": \".eslintrc.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"370684994aaed5b858da3a006f48cfa57e88fd27\",\n \"size\": 414,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/370684994aaed5b858da3a006f48cfa57e88fd27\"\n },\n {\n \"path\": \".flowconfig\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14aa2ac4cc0e15223ad98630a6f1325fc81f8043\",\n \"size\": 283,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14aa2ac4cc0e15223ad98630a6f1325fc81f8043\"\n },\n {\n \"path\": \".gitattributes\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"10a369ddf4f603337cabc6f21646508323941ce1\",\n \"size\": 135,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/10a369ddf4f603337cabc6f21646508323941ce1\"\n },\n {\n \"path\": \".github\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4ebeece548b52b20af59622354530a6d33b50b43\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4ebeece548b52b20af59622354530a6d33b50b43\"\n },\n {\n \"path\": \".gitignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"c071ba35b0e49899bab6d610a68eef667dbbf157\",\n \"size\": 169,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/c071ba35b0e49899bab6d610a68eef667dbbf157\"\n },\n {\n \"path\": \".prettierignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"393f050e123d998cf8c8b362ff95cc8ac4d250e5\",\n \"size\": 45,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/393f050e123d998cf8c8b362ff95cc8ac4d250e5\"\n },\n {\n \"path\": \".prettierrc\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e52ad05bb13b084d7949dd76e1b2517455162150\",\n \"size\": 223,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/e52ad05bb13b084d7949dd76e1b2517455162150\"\n },\n {\n \"path\": \".stylelintrc.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"4b4c9698d10d756f5faa025659b86375428ed0a7\",\n \"size\": 718,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/4b4c9698d10d756f5faa025659b86375428ed0a7\"\n },\n {\n \"path\": \".vscode\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"286e97ec0113ea8242b41ac222e2c3e8077e6f1e\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/286e97ec0113ea8242b41ac222e2c3e8077e6f1e\"\n },\n {\n \"path\": \"CHANGELOG.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"070a5d4f0eacd2dc0be81ae8996f8982de43046e\",\n \"size\": 2113,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/070a5d4f0eacd2dc0be81ae8996f8982de43046e\"\n },\n {\n \"path\": \"CODE_OF_CONDUCT.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"92bc7565ff0ee145a0041b5179a820f14f39ab22\",\n \"size\": 3355,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/92bc7565ff0ee145a0041b5179a820f14f39ab22\"\n },\n {\n \"path\": \"CONTRIBUTING.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"8552aa241254a61258e1ff9666ab36f32fb1e3b9\",\n \"size\": 3548,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/8552aa241254a61258e1ff9666ab36f32fb1e3b9\"\n },\n {\n \"path\": \"LICENSE\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"42d85938357b49977c126ca03b199129082d4fb8\",\n \"size\": 1091,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/42d85938357b49977c126ca03b199129082d4fb8\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"19df50a78654c8d757ca7f38447aa3d09c7abcce\",\n \"size\": 3698,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/19df50a78654c8d757ca7f38447aa3d09c7abcce\"\n },\n {\n \"path\": \"backend\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\"\n },\n {\n \"path\": \"config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"58afd573bbb69fcca000efd0f5d90b93c93a98dd\",\n \"size\": 853,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/58afd573bbb69fcca000efd0f5d90b93c93a98dd\"\n },\n {\n \"path\": \"content\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/0294ef106c58743907a5c855da1eb0f87b0b6dfc\"\n },\n {\n \"path\": \"flow-typed\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"86c32fd6c3118be5e0dbbb231a834447357236c6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/86c32fd6c3118be5e0dbbb231a834447357236c6\"\n },\n {\n \"path\": \"flow\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"0af45ad00d155c8d8c7407d913ff85278244c9ce\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/0af45ad00d155c8d8c7407d913ff85278244c9ce\"\n },\n {\n \"path\": \"gatsby-browser.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9bd2c9dce175f04980e91cd9dc295a299e3cdb80\",\n \"size\": 90,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9bd2c9dce175f04980e91cd9dc295a299e3cdb80\"\n },\n {\n \"path\": \"gatsby-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"353a109dad62e3f25bf9f5e6a2167f21a6c8b459\",\n \"size\": 7228,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/353a109dad62e3f25bf9f5e6a2167f21a6c8b459\"\n },\n {\n \"path\": \"gatsby-node.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14a207883c2093d2cc071bc5a464e165bcc1fead\",\n \"size\": 409,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14a207883c2093d2cc071bc5a464e165bcc1fead\"\n },\n {\n \"path\": \"gatsby\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4f23c06cd1740bf78304d2c0b29bf6bfdf427981\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4f23c06cd1740bf78304d2c0b29bf6bfdf427981\"\n },\n {\n \"path\": \"jest\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\"\n },\n {\n \"path\": \"netlify.toml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"599b99cc5700404fde316a7ede829776f23e7d45\",\n \"size\": 137,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/599b99cc5700404fde316a7ede829776f23e7d45\"\n },\n {\n \"path\": \"package.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9d777616438b90a18f1a4ebfd5f114b4c06c6f17\",\n \"size\": 6855,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9d777616438b90a18f1a4ebfd5f114b4c06c6f17\"\n },\n {\n \"path\": \"postcss-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d216501e9b351a72e00ba0b7459a6500e27e7da2\",\n \"size\": 703,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d216501e9b351a72e00ba0b7459a6500e27e7da2\"\n },\n {\n \"path\": \"renovate.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"dcc309398785698b8870545c32051a3d72dd8271\",\n \"size\": 460,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/dcc309398785698b8870545c32051a3d72dd8271\"\n },\n {\n \"path\": \"serverless-scripts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ee3701f2fbfc7196ba340f6481d1387d20527898\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ee3701f2fbfc7196ba340f6481d1387d20527898\"\n },\n {\n \"path\": \"serverless-single-page-app-plugin\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"08763fcfba643a06a452398517019bea4a5850ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/08763fcfba643a06a452398517019bea4a5850ba\"\n },\n {\n \"path\": \"serverless.yml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"20b22c5fad229f35d029bf6614d333d82fe8a987\",\n \"size\": 7803,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/20b22c5fad229f35d029bf6614d333d82fe8a987\"\n },\n {\n \"path\": \"src\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"8cdb35a88232c0f32f12f130c92c7cc55f97f471\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/8cdb35a88232c0f32f12f130c92c7cc55f97f471\"\n },\n {\n \"path\": \"static\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"53c6380a600a030d3722bff7ecde36f749fb6964\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/53c6380a600a030d3722bff7ecde36f749fb6964\"\n },\n {\n \"path\": \"utils\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"a592549c9f74db40b51efefcda2fd76810405f27\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/a592549c9f74db40b51efefcda2fd76810405f27\"\n },\n {\n \"path\": \"yarn.lock\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"475c9c1924ca752a0686303e2fdeb7b13ad75f57\",\n \"size\": 793903,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/475c9c1924ca752a0686303e2fdeb7b13ad75f57\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/trees/0294ef106c58743907a5c855da1eb0f87b0b6dfc?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:08:47 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3905", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"7d6ed23edb93fdd710127003bd99d3e3\"", + "Last-Modified": "Tue, 10 Sep 2019 14:07:57 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B78:9D20:1197C49:1584EF4:5D77AE6F", + "content-length": "831", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\n \"tree\": [\n {\n \"path\": \"pages\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\"\n },\n {\n \"path\": \"posts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"34892575e216c06e757093f036bd8e057c78a52f\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/34892575e216c06e757093f036bd8e057c78a52f\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/trees/34892575e216c06e757093f036bd8e057c78a52f?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:08:48 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3904", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"9485ec7bb0224060380d07454fc25c0a\"", + "Last-Modified": "Tue, 10 Sep 2019 14:07:57 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B7A:2B1F:126DF9D:167FE0E:5D77AE6F", + "content-length": "2030", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"34892575e216c06e757093f036bd8e057c78a52f\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/34892575e216c06e757093f036bd8e057c78a52f\",\n \"tree\": [\n {\n \"path\": \"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"size\": 1707,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\"\n },\n {\n \"path\": \"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"size\": 2565,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\"\n },\n {\n \"path\": \"2016-02-02---A-Brief-History-of-Typography.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"0eea554365f002d0f1572af9a58522d335a794d5\",\n \"size\": 2786,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\"\n },\n {\n \"path\": \"2017-18-08---The-Birth-of-Movable-Type.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"44f78c474d04273185a95821426f75affc9b0044\",\n \"size\": 16071,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\"\n },\n {\n \"path\": \"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"size\": 7465,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 200 + }, + { + "body": "{\"base_tree\":\"34892575e216c06e757093f036bd8e057c78a52f\",\"tree\":[{\"path\":\"1970-01-01-first-title.md\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"a041245814892e3f73f63ca54333fda649b7fc0b\"}]}", + "method": "POST", + "url": "/repos/owner/repo/git/trees?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:08:49 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "2362", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3903", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"ec28ace732cd92ce67ac2d4bb75b73a8\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B7C:9D20:1197E05:1585109:5D77AE70", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a041245814892e3f73f63ca54333fda649b7fc0b\",\n \"size\": 167,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a041245814892e3f73f63ca54333fda649b7fc0b\"\n },\n {\n \"path\": \"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"size\": 1707,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\"\n },\n {\n \"path\": \"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"size\": 2565,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\"\n },\n {\n \"path\": \"2016-02-02---A-Brief-History-of-Typography.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"0eea554365f002d0f1572af9a58522d335a794d5\",\n \"size\": 2786,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\"\n },\n {\n \"path\": \"2017-18-08---The-Birth-of-Movable-Type.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"44f78c474d04273185a95821426f75affc9b0044\",\n \"size\": 16071,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\"\n },\n {\n \"path\": \"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"size\": 7465,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"base_tree\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\",\"tree\":[{\"path\":\"posts\",\"mode\":\"040000\",\"type\":\"tree\",\"sha\":\"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\"parentSha\":\"34892575e216c06e757093f036bd8e057c78a52f\"}]}", + "method": "POST", + "url": "/repos/owner/repo/git/trees?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:08:49 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "831", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3902", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"8a08d49c75e6316b7eedd97658f5dd3d\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B7E:15110:18E2446:1E3D9DA:5D77AE71", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"tree\": [\n {\n \"path\": \"pages\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/1f5cc182dad3e6fae6a9d605d19b3c9f4cb73363\"\n },\n {\n \"path\": \"posts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ab5a1bbfe1486ea0e93182b719c927d84ee1f1ba\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"base_tree\":\"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\"tree\":[{\"path\":\"content\",\"mode\":\"040000\",\"type\":\"tree\",\"sha\":\"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\"parentSha\":\"0294ef106c58743907a5c855da1eb0f87b0b6dfc\"}]}", + "method": "POST", + "url": "/repos/owner/repo/git/trees?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:08:50 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "11769", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3901", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"fb9e1158542ab7bb09a23b22e7f7dbd8\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/trees/daee8d5d15d144e8779955166a2afeccde2770e1", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B81:2B24:182BB9B:1D6371F:5D77AE72", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"daee8d5d15d144e8779955166a2afeccde2770e1\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/daee8d5d15d144e8779955166a2afeccde2770e1\",\n \"tree\": [\n {\n \"path\": \".circleci\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"e5e9af3301cac61f120b8e4d40b1733c7a45685a\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/e5e9af3301cac61f120b8e4d40b1733c7a45685a\"\n },\n {\n \"path\": \".eslintignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"80b4531b026d19f8fa589efd122e76199d23f967\",\n \"size\": 39,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/80b4531b026d19f8fa589efd122e76199d23f967\"\n },\n {\n \"path\": \".eslintrc.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"370684994aaed5b858da3a006f48cfa57e88fd27\",\n \"size\": 414,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/370684994aaed5b858da3a006f48cfa57e88fd27\"\n },\n {\n \"path\": \".flowconfig\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14aa2ac4cc0e15223ad98630a6f1325fc81f8043\",\n \"size\": 283,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14aa2ac4cc0e15223ad98630a6f1325fc81f8043\"\n },\n {\n \"path\": \".gitattributes\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"10a369ddf4f603337cabc6f21646508323941ce1\",\n \"size\": 135,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/10a369ddf4f603337cabc6f21646508323941ce1\"\n },\n {\n \"path\": \".github\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4ebeece548b52b20af59622354530a6d33b50b43\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4ebeece548b52b20af59622354530a6d33b50b43\"\n },\n {\n \"path\": \".gitignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"c071ba35b0e49899bab6d610a68eef667dbbf157\",\n \"size\": 169,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/c071ba35b0e49899bab6d610a68eef667dbbf157\"\n },\n {\n \"path\": \".prettierignore\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"393f050e123d998cf8c8b362ff95cc8ac4d250e5\",\n \"size\": 45,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/393f050e123d998cf8c8b362ff95cc8ac4d250e5\"\n },\n {\n \"path\": \".prettierrc\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"e52ad05bb13b084d7949dd76e1b2517455162150\",\n \"size\": 223,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/e52ad05bb13b084d7949dd76e1b2517455162150\"\n },\n {\n \"path\": \".stylelintrc.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"4b4c9698d10d756f5faa025659b86375428ed0a7\",\n \"size\": 718,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/4b4c9698d10d756f5faa025659b86375428ed0a7\"\n },\n {\n \"path\": \".vscode\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"286e97ec0113ea8242b41ac222e2c3e8077e6f1e\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/286e97ec0113ea8242b41ac222e2c3e8077e6f1e\"\n },\n {\n \"path\": \"CHANGELOG.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"070a5d4f0eacd2dc0be81ae8996f8982de43046e\",\n \"size\": 2113,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/070a5d4f0eacd2dc0be81ae8996f8982de43046e\"\n },\n {\n \"path\": \"CODE_OF_CONDUCT.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"92bc7565ff0ee145a0041b5179a820f14f39ab22\",\n \"size\": 3355,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/92bc7565ff0ee145a0041b5179a820f14f39ab22\"\n },\n {\n \"path\": \"CONTRIBUTING.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"8552aa241254a61258e1ff9666ab36f32fb1e3b9\",\n \"size\": 3548,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/8552aa241254a61258e1ff9666ab36f32fb1e3b9\"\n },\n {\n \"path\": \"LICENSE\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"42d85938357b49977c126ca03b199129082d4fb8\",\n \"size\": 1091,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/42d85938357b49977c126ca03b199129082d4fb8\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"19df50a78654c8d757ca7f38447aa3d09c7abcce\",\n \"size\": 3698,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/19df50a78654c8d757ca7f38447aa3d09c7abcce\"\n },\n {\n \"path\": \"backend\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/b9f1cfbf4d901fe13c3af4e0d8f46bbe5a6addd6\"\n },\n {\n \"path\": \"config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"58afd573bbb69fcca000efd0f5d90b93c93a98dd\",\n \"size\": 853,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/58afd573bbb69fcca000efd0f5d90b93c93a98dd\"\n },\n {\n \"path\": \"content\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"93da0f3541510f5f9ec829a3cdc6e8147f611639\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/93da0f3541510f5f9ec829a3cdc6e8147f611639\"\n },\n {\n \"path\": \"flow-typed\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"86c32fd6c3118be5e0dbbb231a834447357236c6\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/86c32fd6c3118be5e0dbbb231a834447357236c6\"\n },\n {\n \"path\": \"flow\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"0af45ad00d155c8d8c7407d913ff85278244c9ce\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/0af45ad00d155c8d8c7407d913ff85278244c9ce\"\n },\n {\n \"path\": \"gatsby-browser.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9bd2c9dce175f04980e91cd9dc295a299e3cdb80\",\n \"size\": 90,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9bd2c9dce175f04980e91cd9dc295a299e3cdb80\"\n },\n {\n \"path\": \"gatsby-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"353a109dad62e3f25bf9f5e6a2167f21a6c8b459\",\n \"size\": 7228,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/353a109dad62e3f25bf9f5e6a2167f21a6c8b459\"\n },\n {\n \"path\": \"gatsby-node.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"14a207883c2093d2cc071bc5a464e165bcc1fead\",\n \"size\": 409,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/14a207883c2093d2cc071bc5a464e165bcc1fead\"\n },\n {\n \"path\": \"gatsby\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"4f23c06cd1740bf78304d2c0b29bf6bfdf427981\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/4f23c06cd1740bf78304d2c0b29bf6bfdf427981\"\n },\n {\n \"path\": \"jest\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/5a6bc7be680ba053df0f8ffdc2aaa80e62c3e819\"\n },\n {\n \"path\": \"netlify.toml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"599b99cc5700404fde316a7ede829776f23e7d45\",\n \"size\": 137,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/599b99cc5700404fde316a7ede829776f23e7d45\"\n },\n {\n \"path\": \"package.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9d777616438b90a18f1a4ebfd5f114b4c06c6f17\",\n \"size\": 6855,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9d777616438b90a18f1a4ebfd5f114b4c06c6f17\"\n },\n {\n \"path\": \"postcss-config.js\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"d216501e9b351a72e00ba0b7459a6500e27e7da2\",\n \"size\": 703,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/d216501e9b351a72e00ba0b7459a6500e27e7da2\"\n },\n {\n \"path\": \"renovate.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"dcc309398785698b8870545c32051a3d72dd8271\",\n \"size\": 460,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/dcc309398785698b8870545c32051a3d72dd8271\"\n },\n {\n \"path\": \"serverless-scripts\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"ee3701f2fbfc7196ba340f6481d1387d20527898\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/ee3701f2fbfc7196ba340f6481d1387d20527898\"\n },\n {\n \"path\": \"serverless-single-page-app-plugin\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"08763fcfba643a06a452398517019bea4a5850ba\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/08763fcfba643a06a452398517019bea4a5850ba\"\n },\n {\n \"path\": \"serverless.yml\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"20b22c5fad229f35d029bf6614d333d82fe8a987\",\n \"size\": 7803,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/20b22c5fad229f35d029bf6614d333d82fe8a987\"\n },\n {\n \"path\": \"src\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"8cdb35a88232c0f32f12f130c92c7cc55f97f471\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/8cdb35a88232c0f32f12f130c92c7cc55f97f471\"\n },\n {\n \"path\": \"static\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"53c6380a600a030d3722bff7ecde36f749fb6964\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/53c6380a600a030d3722bff7ecde36f749fb6964\"\n },\n {\n \"path\": \"utils\",\n \"mode\": \"040000\",\n \"type\": \"tree\",\n \"sha\": \"a592549c9f74db40b51efefcda2fd76810405f27\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/a592549c9f74db40b51efefcda2fd76810405f27\"\n },\n {\n \"path\": \"yarn.lock\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"475c9c1924ca752a0686303e2fdeb7b13ad75f57\",\n \"size\": 793903,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/475c9c1924ca752a0686303e2fdeb7b13ad75f57\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"message\":\"Create Post “1970-01-01-first-title”\",\"tree\":\"daee8d5d15d144e8779955166a2afeccde2770e1\",\"parents\":[\"726172deae99c8a2cea4c71e734a02a793d4d9e5\"]}", + "method": "POST", + "url": "/repos/owner/repo/git/commits?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:08:51 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "1504", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3900", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"36ce8e6809f14c1e5077b19f3ff1c0bf\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/commits/1ee507558f15c3f892f08f7be6699a7d2f66edba", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B82:B4DC:AE8F18:D46E17:5D77AE73", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"1ee507558f15c3f892f08f7be6699a7d2f66edba\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NTc1Mjc2OjFlZTUwNzU1OGYxNWMzZjg5MmYwOGY3YmU2Njk5YTdkMmY2NmVkYmE=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/1ee507558f15c3f892f08f7be6699a7d2f66edba\",\n \"html_url\": \"https://github.com/owner/repo/commit/1ee507558f15c3f892f08f7be6699a7d2f66edba\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T14:08:51Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T14:08:51Z\"\n },\n \"tree\": {\n \"sha\": \"daee8d5d15d144e8779955166a2afeccde2770e1\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/daee8d5d15d144e8779955166a2afeccde2770e1\"\n },\n \"message\": \"Create Post “1970-01-01-first-title”\",\n \"parents\": [\n {\n \"sha\": \"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"html_url\": \"https://github.com/owner/repo/commit/726172deae99c8a2cea4c71e734a02a793d4d9e5\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "status": 201 + }, + { + "body": "{\"ref\":\"refs/heads/cms/1970-01-01-first-title\",\"sha\":\"1ee507558f15c3f892f08f7be6699a7d2f66edba\"}", + "method": "POST", + "url": "/repos/owner/repo/git/refs?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:08:52 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "518", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3899", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"e1cb3ca854a9f02515b3d45eeea198ad\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "Location": "https://api.github.com/repos/owner/repo/git/refs/heads/cms/1970-01-01-first-title", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B84:1510F:127BB9B:16708B8:5D77AE73", + "connection": "keep-alive" + }, + "response": "{\n \"ref\": \"refs/heads/cms/1970-01-01-first-title\",\n \"node_id\": \"MDM6UmVmMjA3NTc1Mjc2OmNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxl\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/heads/cms/1970-01-01-first-title\",\n \"object\": {\n \"sha\": \"1ee507558f15c3f892f08f7be6699a7d2f66edba\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/1ee507558f15c3f892f08f7be6699a7d2f66edba\"\n }\n}\n", + "status": 201 + }, + { + "body": "{\"title\":\"Create Post “1970-01-01-first-title”\",\"body\":\"Automatically generated by Netlify CMS\",\"head\":\"cms/1970-01-01-first-title\",\"base\":\"master\"}", + "method": "POST", + "url": "/repos/owner/repo/pulls?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:08:54 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "21715", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3898", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"afceff8cbb664ac849e6f01bd8191262\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/pulls/9", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B86:244EB:1867FDB:1DA768A:5D77AE74", + "connection": "keep-alive" + }, + "response": "{\n \"url\": \"https://api.github.com/repos/owner/repo/pulls/9\",\n \"id\": 316014218,\n \"node_id\": \"MDExOlB1bGxSZXF1ZXN0MzE2MDE0MjE4\",\n \"html_url\": \"https://github.com/owner/repo/pull/9\",\n \"diff_url\": \"https://github.com/owner/repo/pull/9.diff\",\n \"patch_url\": \"https://github.com/owner/repo/pull/9.patch\",\n \"issue_url\": \"https://api.github.com/repos/owner/repo/issues/9\",\n \"number\": 9,\n \"state\": \"open\",\n \"locked\": false,\n \"title\": \"Create Post “1970-01-01-first-title”\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Automatically generated by Netlify CMS\",\n \"created_at\": \"2019-09-10T14:08:53Z\",\n \"updated_at\": \"2019-09-10T14:08:53Z\",\n \"closed_at\": null,\n \"merged_at\": null,\n \"merge_commit_sha\": null,\n \"assignee\": null,\n \"assignees\": [\n\n ],\n \"requested_reviewers\": [\n\n ],\n \"requested_teams\": [\n\n ],\n \"labels\": [\n\n ],\n \"milestone\": null,\n \"commits_url\": \"https://api.github.com/repos/owner/repo/pulls/9/commits\",\n \"review_comments_url\": \"https://api.github.com/repos/owner/repo/pulls/9/comments\",\n \"review_comment_url\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/issues/9/comments\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/1ee507558f15c3f892f08f7be6699a7d2f66edba\",\n \"head\": {\n \"label\": \"owner:cms/1970-01-01-first-title\",\n \"ref\": \"cms/1970-01-01-first-title\",\n \"sha\": \"1ee507558f15c3f892f08f7be6699a7d2f66edba\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 207575276,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NzUyNzY=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-10T14:01:42Z\",\n \"updated_at\": \"2019-09-10T14:07:57Z\",\n \"pushed_at\": \"2019-09-10T14:08:52Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 1,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 1,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"base\": {\n \"label\": \"owner:master\",\n \"ref\": \"master\",\n \"sha\": \"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 207575276,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NzUyNzY=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-10T14:01:42Z\",\n \"updated_at\": \"2019-09-10T14:07:57Z\",\n \"pushed_at\": \"2019-09-10T14:08:52Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 1,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 1,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/9\"\n },\n \"html\": {\n \"href\": \"https://github.com/owner/repo/pull/9\"\n },\n \"issue\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/9\"\n },\n \"comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/9/comments\"\n },\n \"review_comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/9/comments\"\n },\n \"review_comment\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\"\n },\n \"commits\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/9/commits\"\n },\n \"statuses\": {\n \"href\": \"https://api.github.com/repos/owner/repo/statuses/1ee507558f15c3f892f08f7be6699a7d2f66edba\"\n }\n },\n \"author_association\": \"OWNER\",\n \"merged\": false,\n \"mergeable\": null,\n \"rebaseable\": null,\n \"mergeable_state\": \"unknown\",\n \"merged_by\": null,\n \"comments\": 0,\n \"review_comments\": 0,\n \"maintainer_can_modify\": false,\n \"commits\": 1,\n \"additions\": 11,\n \"deletions\": 0,\n \"changed_files\": 1\n}\n", + "status": 201 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:08:55 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3897", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"1aaf4ccb2d2d35f69e7e839ddee19165\"", + "Last-Modified": "Tue, 10 Sep 2019 14:07:57 GMT", + "X-Poll-Interval": "300", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B89:3ED7B:12AF2DD:16B3A2E:5D77AE76", + "content-length": "484", + "connection": "keep-alive" + }, + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NTc1Mjc2OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"277bea8590f367c8190e7c0f148f0e2891c26232\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/277bea8590f367c8190e7c0f148f0e2891c26232\"\n }\n}\n", + "status": 200 + }, + { + "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjksImhlYWQiOiIxZWU1MDc1NThmMTVjM2Y4OTJmMDhmN2JlNjY5OWE3ZDJmNjZlZGJhIn0sInVzZXIiOiJvd25lciIsInN0YXR1cyI6ImRyYWZ0IiwiYnJhbmNoIjoiY21zLzE5NzAtMDEtMDEtZmlyc3QtdGl0bGUiLCJjb2xsZWN0aW9uIjoicG9zdHMiLCJjb21taXRNZXNzYWdlIjoiQ3JlYXRlIFBvc3Qg4oCcMTk3MC0wMS0wMS1maXJzdC10aXRsZeKAnSIsInRpdGxlIjoiZmlyc3QgdGl0bGUiLCJkZXNjcmlwdGlvbiI6ImZpcnN0IGRlc2NyaXB0aW9uIiwib2JqZWN0cyI6eyJlbnRyeSI6eyJwYXRoIjoiY29udGVudC9wb3N0cy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxlLm1kIiwic2hhIjoiYTA0MTI0NTgxNDg5MmUzZjczZjYzY2E1NDMzM2ZkYTY0OWI3ZmMwYiJ9LCJmaWxlcyI6W119LCJ0aW1lU3RhbXAiOiIxOTcwLTAxLTAxVDAwOjAwOjAwLjMwMFoifQ==\",\"encoding\":\"base64\"}", + "method": "POST", + "url": "/repos/owner/repo/git/blobs?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:08:55 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "207", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3896", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"c0cf38b37b2bd5e44dbc85cec8e10f49\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/blobs/35665d9e45377d2b68fb0a9fff4c6d967771c053", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B8B:2B19:AC6F60:D1EB88:5D77AE77", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"35665d9e45377d2b68fb0a9fff4c6d967771c053\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/35665d9e45377d2b68fb0a9fff4c6d967771c053\"\n}\n", + "status": 201 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/trees/277bea8590f367c8190e7c0f148f0e2891c26232?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:08:56 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3895", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"6f6c246b49046dc310f8b6bead0cc639\"", + "Last-Modified": "Tue, 10 Sep 2019 14:07:57 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B8D:244EB:18684A1:1DA7C68:5D77AE78", + "content-length": "1564", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"277bea8590f367c8190e7c0f148f0e2891c26232\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/277bea8590f367c8190e7c0f148f0e2891c26232\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"7562834922e3879c752751c218d12efe731b62cb\",\n \"size\": 462,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/7562834922e3879c752751c218d12efe731b62cb\"\n },\n {\n \"path\": \"1970-01-01-second-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"8b4aa8156d6c1a58ae781d64e9f01a233489c27e\",\n \"size\": 477,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/8b4aa8156d6c1a58ae781d64e9f01a233489c27e\"\n },\n {\n \"path\": \"1970-01-01-third-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a35fa423e583bf2886d81800136f323d0c0f5a28\",\n \"size\": 472,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a35fa423e583bf2886d81800136f323d0c0f5a28\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 200 + }, + { + "body": "{\"base_tree\":\"277bea8590f367c8190e7c0f148f0e2891c26232\",\"tree\":[{\"path\":\"1970-01-01-first-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"35665d9e45377d2b68fb0a9fff4c6d967771c053\"}]}", + "method": "POST", + "url": "/repos/owner/repo/git/trees?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:08:57 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "1564", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3894", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"2bb592609012d08e71abddda9165df49\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/trees/d7bb458cd1e3e2f48164ef68cf7c67e8cd20596f", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B8F:2B15:4FB4CC:60C6D8:5D77AE78", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"d7bb458cd1e3e2f48164ef68cf7c67e8cd20596f\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/d7bb458cd1e3e2f48164ef68cf7c67e8cd20596f\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"35665d9e45377d2b68fb0a9fff4c6d967771c053\",\n \"size\": 462,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/35665d9e45377d2b68fb0a9fff4c6d967771c053\"\n },\n {\n \"path\": \"1970-01-01-second-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"8b4aa8156d6c1a58ae781d64e9f01a233489c27e\",\n \"size\": 477,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/8b4aa8156d6c1a58ae781d64e9f01a233489c27e\"\n },\n {\n \"path\": \"1970-01-01-third-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a35fa423e583bf2886d81800136f323d0c0f5a28\",\n \"size\": 472,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a35fa423e583bf2886d81800136f323d0c0f5a28\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"message\":\"Updating “1970-01-01-first-title” metadata\",\"tree\":\"d7bb458cd1e3e2f48164ef68cf7c67e8cd20596f\",\"parents\":[\"277bea8590f367c8190e7c0f148f0e2891c26232\"]}", + "method": "POST", + "url": "/repos/owner/repo/git/commits?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:08:58 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "1510", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3893", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"17a418681dec454a7c657dec0806efdb\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/commits/bd85b645a6f802ad8e69bec1656f6fd62bfbe85a", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B91:1510F:127C1C9:1671061:5D77AE79", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"bd85b645a6f802ad8e69bec1656f6fd62bfbe85a\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NTc1Mjc2OmJkODViNjQ1YTZmODAyYWQ4ZTY5YmVjMTY1NmY2ZmQ2MmJmYmU4NWE=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/bd85b645a6f802ad8e69bec1656f6fd62bfbe85a\",\n \"html_url\": \"https://github.com/owner/repo/commit/bd85b645a6f802ad8e69bec1656f6fd62bfbe85a\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T14:08:57Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T14:08:57Z\"\n },\n \"tree\": {\n \"sha\": \"d7bb458cd1e3e2f48164ef68cf7c67e8cd20596f\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/d7bb458cd1e3e2f48164ef68cf7c67e8cd20596f\"\n },\n \"message\": \"Updating “1970-01-01-first-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"277bea8590f367c8190e7c0f148f0e2891c26232\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/277bea8590f367c8190e7c0f148f0e2891c26232\",\n \"html_url\": \"https://github.com/owner/repo/commit/277bea8590f367c8190e7c0f148f0e2891c26232\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "status": 201 + }, + { + "body": "{\"sha\":\"bd85b645a6f802ad8e69bec1656f6fd62bfbe85a\",\"force\":false}", + "method": "PATCH", + "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:08:59 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3892", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"c782dbbac77169e5b76103a0824982f7\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B93:9D21:1798083:1CC0C6C:5D77AE7A", + "content-length": "484", + "connection": "keep-alive" + }, + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NTc1Mjc2OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"bd85b645a6f802ad8e69bec1656f6fd62bfbe85a\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/bd85b645a6f802ad8e69bec1656f6fd62bfbe85a\"\n }\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=cms/1970-01-01-first-title", + "headers": { + "Date": "Tue, 10 Sep 2019 14:09:00 GMT", + "Content-Type": "application/vnd.github.VERSION.raw; charset=utf-8", + "Content-Length": "167", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3891", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"a041245814892e3f73f63ca54333fda649b7fc0b\"", + "Last-Modified": "Tue, 10 Sep 2019 14:08:51 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B97:244EB:1868B78:1DA84FB:5D77AE7C", + "connection": "keep-alive" + }, + "response": "---\ntemplate: post\ntitle: first title\ndraft: true\ndate: 1970-01-01T00:00:00.000Z\ndescription: first description\ncategory: first category\ntags:\n - tag1\n---\nfirst body\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=master", + "headers": { + "Date": "Tue, 10 Sep 2019 14:09:00 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "404 Not Found", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3890", + "X-RateLimit-Reset": "1568126651", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B95:2B19:AC7386:D1F0B1:5D77AE7C", + "content-length": "116", + "connection": "keep-alive" + }, + "response": "{\n \"message\": \"Not Found\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/#get-contents\"\n}\n", + "status": 404 + }, + { + "method": "GET", + "url": "/repos/owner/repo/commits/1ee507558f15c3f892f08f7be6699a7d2f66edba/status?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:09:01 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3889", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"4c9453bf5bf87d43f4639fc3e4f052c0\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo, repo:status", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B99:B4DC:AE9712:D47829:5D77AE7D", + "content-length": "6574", + "connection": "keep-alive" + }, + "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"1ee507558f15c3f892f08f7be6699a7d2f66edba\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 207575276,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NzUyNzY=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/1ee507558f15c3f892f08f7be6699a7d2f66edba\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/1ee507558f15c3f892f08f7be6699a7d2f66edba/status\"\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:09:03 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3888", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"c782dbbac77169e5b76103a0824982f7\"", + "Last-Modified": "Tue, 10 Sep 2019 14:07:57 GMT", + "X-Poll-Interval": "300", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B9B:3ED7B:12AFDC0:16B4776:5D77AE7E", + "content-length": "484", + "connection": "keep-alive" + }, + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NTc1Mjc2OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"bd85b645a6f802ad8e69bec1656f6fd62bfbe85a\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/bd85b645a6f802ad8e69bec1656f6fd62bfbe85a\"\n }\n}\n", + "status": 200 + }, + { + "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjksImhlYWQiOiIxZWU1MDc1NThmMTVjM2Y4OTJmMDhmN2JlNjY5OWE3ZDJmNjZlZGJhIn0sInVzZXIiOiJvd25lciIsInN0YXR1cyI6InBlbmRpbmdfcmV2aWV3IiwiYnJhbmNoIjoiY21zLzE5NzAtMDEtMDEtZmlyc3QtdGl0bGUiLCJjb2xsZWN0aW9uIjoicG9zdHMiLCJjb21taXRNZXNzYWdlIjoiQ3JlYXRlIFBvc3Qg4oCcMTk3MC0wMS0wMS1maXJzdC10aXRsZeKAnSIsInRpdGxlIjoiZmlyc3QgdGl0bGUiLCJkZXNjcmlwdGlvbiI6ImZpcnN0IGRlc2NyaXB0aW9uIiwib2JqZWN0cyI6eyJlbnRyeSI6eyJwYXRoIjoiY29udGVudC9wb3N0cy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxlLm1kIiwic2hhIjoiYTA0MTI0NTgxNDg5MmUzZjczZjYzY2E1NDMzM2ZkYTY0OWI3ZmMwYiJ9LCJmaWxlcyI6W119LCJ0aW1lU3RhbXAiOiIxOTcwLTAxLTAxVDAwOjAwOjAwLjMwMFoifQ==\",\"encoding\":\"base64\"}", + "method": "POST", + "url": "/repos/owner/repo/git/blobs?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:09:04 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "207", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3887", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"c0a29ccadd0e3764e0c304af3e30180d\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/blobs/db2fb0c5b6bec1af6cf167325eb6707ef6ff794e", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7B9D:9D1F:A5D0D9:CA625D:5D77AE7F", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"db2fb0c5b6bec1af6cf167325eb6707ef6ff794e\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/db2fb0c5b6bec1af6cf167325eb6707ef6ff794e\"\n}\n", + "status": 201 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/trees/bd85b645a6f802ad8e69bec1656f6fd62bfbe85a?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:09:04 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3886", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"e30df524020fc2faec3feeead1d4cbdf\"", + "Last-Modified": "Tue, 10 Sep 2019 14:07:57 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BA1:B4E0:1717E43:1C1CB90:5D77AE80", + "content-length": "1564", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"bd85b645a6f802ad8e69bec1656f6fd62bfbe85a\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/bd85b645a6f802ad8e69bec1656f6fd62bfbe85a\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"35665d9e45377d2b68fb0a9fff4c6d967771c053\",\n \"size\": 462,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/35665d9e45377d2b68fb0a9fff4c6d967771c053\"\n },\n {\n \"path\": \"1970-01-01-second-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"8b4aa8156d6c1a58ae781d64e9f01a233489c27e\",\n \"size\": 477,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/8b4aa8156d6c1a58ae781d64e9f01a233489c27e\"\n },\n {\n \"path\": \"1970-01-01-third-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a35fa423e583bf2886d81800136f323d0c0f5a28\",\n \"size\": 472,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a35fa423e583bf2886d81800136f323d0c0f5a28\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 200 + }, + { + "body": "{\"base_tree\":\"bd85b645a6f802ad8e69bec1656f6fd62bfbe85a\",\"tree\":[{\"path\":\"1970-01-01-first-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"db2fb0c5b6bec1af6cf167325eb6707ef6ff794e\"}]}", + "method": "POST", + "url": "/repos/owner/repo/git/trees?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:09:05 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "1564", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3885", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"3901e4b42a55f1b46720013b3f8a5c5a\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/trees/686841d7b36470e7b8a88a057c7ffb70edb926ac", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BA3:B4DC:AE9A3B:D47C1A:5D77AE81", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"686841d7b36470e7b8a88a057c7ffb70edb926ac\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/686841d7b36470e7b8a88a057c7ffb70edb926ac\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"db2fb0c5b6bec1af6cf167325eb6707ef6ff794e\",\n \"size\": 471,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/db2fb0c5b6bec1af6cf167325eb6707ef6ff794e\"\n },\n {\n \"path\": \"1970-01-01-second-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"8b4aa8156d6c1a58ae781d64e9f01a233489c27e\",\n \"size\": 477,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/8b4aa8156d6c1a58ae781d64e9f01a233489c27e\"\n },\n {\n \"path\": \"1970-01-01-third-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a35fa423e583bf2886d81800136f323d0c0f5a28\",\n \"size\": 472,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a35fa423e583bf2886d81800136f323d0c0f5a28\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"message\":\"Updating “1970-01-01-first-title” metadata\",\"tree\":\"686841d7b36470e7b8a88a057c7ffb70edb926ac\",\"parents\":[\"bd85b645a6f802ad8e69bec1656f6fd62bfbe85a\"]}", + "method": "POST", + "url": "/repos/owner/repo/git/commits?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:09:06 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "1510", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3884", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"c51f7c03055bf7b9440cb406939a00fe\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/commits/56386115ed338888523584de4e89a913048d9afd", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BA5:2B1F:126F747:1681B9E:5D77AE82", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"56386115ed338888523584de4e89a913048d9afd\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NTc1Mjc2OjU2Mzg2MTE1ZWQzMzg4ODg1MjM1ODRkZTRlODlhOTEzMDQ4ZDlhZmQ=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/56386115ed338888523584de4e89a913048d9afd\",\n \"html_url\": \"https://github.com/owner/repo/commit/56386115ed338888523584de4e89a913048d9afd\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T14:09:06Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T14:09:06Z\"\n },\n \"tree\": {\n \"sha\": \"686841d7b36470e7b8a88a057c7ffb70edb926ac\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/686841d7b36470e7b8a88a057c7ffb70edb926ac\"\n },\n \"message\": \"Updating “1970-01-01-first-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"bd85b645a6f802ad8e69bec1656f6fd62bfbe85a\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/bd85b645a6f802ad8e69bec1656f6fd62bfbe85a\",\n \"html_url\": \"https://github.com/owner/repo/commit/bd85b645a6f802ad8e69bec1656f6fd62bfbe85a\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "status": 201 + }, + { + "method": "GET", + "url": "/repos/owner/repo/commits/1ee507558f15c3f892f08f7be6699a7d2f66edba/status?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:09:07 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3883", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"4c9453bf5bf87d43f4639fc3e4f052c0\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo, repo:status", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BA7:1510D:48871D:58F802:5D77AE83", + "content-length": "6574", + "connection": "keep-alive" + }, + "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"1ee507558f15c3f892f08f7be6699a7d2f66edba\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 207575276,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NzUyNzY=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/1ee507558f15c3f892f08f7be6699a7d2f66edba\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/1ee507558f15c3f892f08f7be6699a7d2f66edba/status\"\n}\n", + "status": 200 + }, + { + "body": "{\"sha\":\"56386115ed338888523584de4e89a913048d9afd\",\"force\":false}", + "method": "PATCH", + "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:09:09 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3882", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"af082c26839d5062e27bec2519b77702\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BA6:B4DC:AE9BF8:D47E1F:5D77AE83", + "content-length": "484", + "connection": "keep-alive" + }, + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NTc1Mjc2OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"56386115ed338888523584de4e89a913048d9afd\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/56386115ed338888523584de4e89a913048d9afd\"\n }\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:09:11 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3881", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"af082c26839d5062e27bec2519b77702\"", + "Last-Modified": "Tue, 10 Sep 2019 14:07:57 GMT", + "X-Poll-Interval": "300", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BAA:2B1F:126FD6D:1682358:5D77AE87", + "content-length": "484", + "connection": "keep-alive" + }, + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NTc1Mjc2OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"56386115ed338888523584de4e89a913048d9afd\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/56386115ed338888523584de4e89a913048d9afd\"\n }\n}\n", + "status": 200 + }, + { + "body": "{\"content\":\"eyJ0eXBlIjoiUFIiLCJwciI6eyJudW1iZXIiOjksImhlYWQiOiIxZWU1MDc1NThmMTVjM2Y4OTJmMDhmN2JlNjY5OWE3ZDJmNjZlZGJhIn0sInVzZXIiOiJvd25lciIsInN0YXR1cyI6InBlbmRpbmdfcHVibGlzaCIsImJyYW5jaCI6ImNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxlIiwiY29sbGVjdGlvbiI6InBvc3RzIiwiY29tbWl0TWVzc2FnZSI6IkNyZWF0ZSBQb3N0IOKAnDE5NzAtMDEtMDEtZmlyc3QtdGl0bGXigJ0iLCJ0aXRsZSI6ImZpcnN0IHRpdGxlIiwiZGVzY3JpcHRpb24iOiJmaXJzdCBkZXNjcmlwdGlvbiIsIm9iamVjdHMiOnsiZW50cnkiOnsicGF0aCI6ImNvbnRlbnQvcG9zdHMvMTk3MC0wMS0wMS1maXJzdC10aXRsZS5tZCIsInNoYSI6ImEwNDEyNDU4MTQ4OTJlM2Y3M2Y2M2NhNTQzMzNmZGE2NDliN2ZjMGIifSwiZmlsZXMiOltdfSwidGltZVN0YW1wIjoiMTk3MC0wMS0wMVQwMDowMDowMC4zMDBaIn0=\",\"encoding\":\"base64\"}", + "method": "POST", + "url": "/repos/owner/repo/git/blobs?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:09:12 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "207", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3880", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"d71d4b59a718aa5bbe29657cc608d185\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/blobs/9f9d0e4738ac507be7c58f2af99473968d949c11", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BAC:2B15:4FBB74:60CF5A:5D77AE88", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"9f9d0e4738ac507be7c58f2af99473968d949c11\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9f9d0e4738ac507be7c58f2af99473968d949c11\"\n}\n", + "status": 201 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/trees/56386115ed338888523584de4e89a913048d9afd?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:09:13 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3879", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"151c523c7e9056096efa1193c1b05ced\"", + "Last-Modified": "Tue, 10 Sep 2019 14:07:57 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BAF:1510F:127D64B:16729DD:5D77AE88", + "content-length": "1564", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"56386115ed338888523584de4e89a913048d9afd\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/56386115ed338888523584de4e89a913048d9afd\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"db2fb0c5b6bec1af6cf167325eb6707ef6ff794e\",\n \"size\": 471,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/db2fb0c5b6bec1af6cf167325eb6707ef6ff794e\"\n },\n {\n \"path\": \"1970-01-01-second-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"8b4aa8156d6c1a58ae781d64e9f01a233489c27e\",\n \"size\": 477,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/8b4aa8156d6c1a58ae781d64e9f01a233489c27e\"\n },\n {\n \"path\": \"1970-01-01-third-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a35fa423e583bf2886d81800136f323d0c0f5a28\",\n \"size\": 472,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a35fa423e583bf2886d81800136f323d0c0f5a28\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/commits/1ee507558f15c3f892f08f7be6699a7d2f66edba/status?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:09:13 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3878", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"4c9453bf5bf87d43f4639fc3e4f052c0\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo, repo:status", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BB0:1510E:AF8393:D5E97B:5D77AE89", + "content-length": "6574", + "connection": "keep-alive" + }, + "response": "{\n \"state\": \"pending\",\n \"statuses\": [\n\n ],\n \"sha\": \"1ee507558f15c3f892f08f7be6699a7d2f66edba\",\n \"total_count\": 0,\n \"repository\": {\n \"id\": 207575276,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NzUyNzY=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\"\n },\n \"commit_url\": \"https://api.github.com/repos/owner/repo/commits/1ee507558f15c3f892f08f7be6699a7d2f66edba\",\n \"url\": \"https://api.github.com/repos/owner/repo/commits/1ee507558f15c3f892f08f7be6699a7d2f66edba/status\"\n}\n", + "status": 200 + }, + { + "body": "{\"base_tree\":\"56386115ed338888523584de4e89a913048d9afd\",\"tree\":[{\"path\":\"1970-01-01-first-title.json\",\"mode\":\"100644\",\"type\":\"blob\",\"sha\":\"9f9d0e4738ac507be7c58f2af99473968d949c11\"}]}", + "method": "POST", + "url": "/repos/owner/repo/git/trees?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:09:14 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "1564", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3877", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"8e39c1772f7481d1790eb95c4fb723df\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/trees/24971e412fc51e3425c376b96657352ef74f2ecc", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BB3:9D21:17999F0:1CC2BCC:5D77AE89", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"24971e412fc51e3425c376b96657352ef74f2ecc\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/24971e412fc51e3425c376b96657352ef74f2ecc\",\n \"tree\": [\n {\n \"path\": \"1970-01-01-first-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"9f9d0e4738ac507be7c58f2af99473968d949c11\",\n \"size\": 472,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/9f9d0e4738ac507be7c58f2af99473968d949c11\"\n },\n {\n \"path\": \"1970-01-01-second-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"8b4aa8156d6c1a58ae781d64e9f01a233489c27e\",\n \"size\": 477,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/8b4aa8156d6c1a58ae781d64e9f01a233489c27e\"\n },\n {\n \"path\": \"1970-01-01-third-title.json\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"a35fa423e583bf2886d81800136f323d0c0f5a28\",\n \"size\": 472,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/a35fa423e583bf2886d81800136f323d0c0f5a28\"\n },\n {\n \"path\": \"README.md\",\n \"mode\": \"100644\",\n \"type\": \"blob\",\n \"sha\": \"98787d1bd948850444433e91a43091a76c4eb455\",\n \"size\": 114,\n \"url\": \"https://api.github.com/repos/owner/repo/git/blobs/98787d1bd948850444433e91a43091a76c4eb455\"\n }\n ],\n \"truncated\": false\n}\n", + "status": 201 + }, + { + "body": "{\"message\":\"Updating “1970-01-01-first-title” metadata\",\"tree\":\"24971e412fc51e3425c376b96657352ef74f2ecc\",\"parents\":[\"56386115ed338888523584de4e89a913048d9afd\"]}", + "method": "POST", + "url": "/repos/owner/repo/git/commits?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:09:14 GMT", + "Content-Type": "application/json; charset=utf-8", + "Content-Length": "1510", + "Server": "GitHub.com", + "Status": "201 Created", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3876", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"af133a8bbeb42e0cc5a78997ea39dc96\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "Location": "https://api.github.com/repos/owner/repo/git/commits/28ff9d7caa705a09c190a64476494e8f23981082", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BB5:9D20:1199DC6:158785A:5D77AE8A", + "connection": "keep-alive" + }, + "response": "{\n \"sha\": \"28ff9d7caa705a09c190a64476494e8f23981082\",\n \"node_id\": \"MDY6Q29tbWl0MjA3NTc1Mjc2OjI4ZmY5ZDdjYWE3MDVhMDljMTkwYTY0NDc2NDk0ZThmMjM5ODEwODI=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/28ff9d7caa705a09c190a64476494e8f23981082\",\n \"html_url\": \"https://github.com/owner/repo/commit/28ff9d7caa705a09c190a64476494e8f23981082\",\n \"author\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T14:09:14Z\"\n },\n \"committer\": {\n \"name\": \"owner\",\n \"email\": \"owner@users.noreply.github.com\",\n \"date\": \"2019-09-10T14:09:14Z\"\n },\n \"tree\": {\n \"sha\": \"24971e412fc51e3425c376b96657352ef74f2ecc\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/trees/24971e412fc51e3425c376b96657352ef74f2ecc\"\n },\n \"message\": \"Updating “1970-01-01-first-title” metadata\",\n \"parents\": [\n {\n \"sha\": \"56386115ed338888523584de4e89a913048d9afd\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/56386115ed338888523584de4e89a913048d9afd\",\n \"html_url\": \"https://github.com/owner/repo/commit/56386115ed338888523584de4e89a913048d9afd\"\n }\n ],\n \"verification\": {\n \"verified\": false,\n \"reason\": \"unsigned\",\n \"signature\": null,\n \"payload\": null\n }\n}\n", + "status": 201 + }, + { + "body": "{\"sha\":\"28ff9d7caa705a09c190a64476494e8f23981082\",\"force\":false}", + "method": "PATCH", + "url": "/repos/owner/repo/git/refs/meta/_netlify_cms?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:09:15 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3875", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"224ce3c8b161ec3518e7932a15fd651e\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BB7:2B1F:12701B2:16828A2:5D77AE8B", + "content-length": "484", + "connection": "keep-alive" + }, + "response": "{\n \"ref\": \"refs/meta/_netlify_cms\",\n \"node_id\": \"MDM6UmVmMjA3NTc1Mjc2OnJlZnMvbWV0YS9fbmV0bGlmeV9jbXM=\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/meta/_netlify_cms\",\n \"object\": {\n \"sha\": \"28ff9d7caa705a09c190a64476494e8f23981082\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/28ff9d7caa705a09c190a64476494e8f23981082\"\n }\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/refs/heads/cms?ts=300", + "headers": { + "Date": "Tue, 10 Sep 2019 14:09:18 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3874", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"ba716354396a5e1f94137e28b13a44d6\"", + "Last-Modified": "Tue, 10 Sep 2019 14:07:57 GMT", + "X-Poll-Interval": "300", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BB9:2B1F:12704E8:1682C9C:5D77AE8D", + "content-length": "542", + "connection": "keep-alive" + }, + "response": "[\n {\n \"ref\": \"refs/heads/cms/1970-01-01-first-title\",\n \"node_id\": \"MDM6UmVmMjA3NTc1Mjc2OmNtcy8xOTcwLTAxLTAxLWZpcnN0LXRpdGxl\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/refs/heads/cms/1970-01-01-first-title\",\n \"object\": {\n \"sha\": \"1ee507558f15c3f892f08f7be6699a7d2f66edba\",\n \"type\": \"commit\",\n \"url\": \"https://api.github.com/repos/owner/repo/git/commits/1ee507558f15c3f892f08f7be6699a7d2f66edba\"\n }\n }\n]\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/pulls?ts=300&head=cms/1970-01-01-first-title&state=open&base=master", + "headers": { + "Date": "Tue, 10 Sep 2019 14:09:18 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3873", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"f54ae38c58346e1363b934599ceb7c80\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BBA:B4E0:1719656:1C1E8E9:5D77AE8E", + "content-length": "22154", + "connection": "keep-alive" + }, + "response": "[\n {\n \"url\": \"https://api.github.com/repos/owner/repo/pulls/9\",\n \"id\": 316014218,\n \"node_id\": \"MDExOlB1bGxSZXF1ZXN0MzE2MDE0MjE4\",\n \"html_url\": \"https://github.com/owner/repo/pull/9\",\n \"diff_url\": \"https://github.com/owner/repo/pull/9.diff\",\n \"patch_url\": \"https://github.com/owner/repo/pull/9.patch\",\n \"issue_url\": \"https://api.github.com/repos/owner/repo/issues/9\",\n \"number\": 9,\n \"state\": \"open\",\n \"locked\": false,\n \"title\": \"Create Post “1970-01-01-first-title”\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"body\": \"Automatically generated by Netlify CMS\",\n \"created_at\": \"2019-09-10T14:08:53Z\",\n \"updated_at\": \"2019-09-10T14:08:53Z\",\n \"closed_at\": null,\n \"merged_at\": null,\n \"merge_commit_sha\": \"75df1c558953303ad757ae503568eb2196a6ecb5\",\n \"assignee\": null,\n \"assignees\": [\n\n ],\n \"requested_reviewers\": [\n\n ],\n \"requested_teams\": [\n\n ],\n \"labels\": [\n\n ],\n \"milestone\": null,\n \"commits_url\": \"https://api.github.com/repos/owner/repo/pulls/9/commits\",\n \"review_comments_url\": \"https://api.github.com/repos/owner/repo/pulls/9/comments\",\n \"review_comment_url\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/issues/9/comments\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/1ee507558f15c3f892f08f7be6699a7d2f66edba\",\n \"head\": {\n \"label\": \"owner:cms/1970-01-01-first-title\",\n \"ref\": \"cms/1970-01-01-first-title\",\n \"sha\": \"1ee507558f15c3f892f08f7be6699a7d2f66edba\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 207575276,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NzUyNzY=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-10T14:01:42Z\",\n \"updated_at\": \"2019-09-10T14:07:57Z\",\n \"pushed_at\": \"2019-09-10T14:09:15Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 1,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 1,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"base\": {\n \"label\": \"owner:master\",\n \"ref\": \"master\",\n \"sha\": \"726172deae99c8a2cea4c71e734a02a793d4d9e5\",\n \"user\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"repo\": {\n \"id\": 207575276,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NzUyNzY=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-10T14:01:42Z\",\n \"updated_at\": \"2019-09-10T14:07:57Z\",\n \"pushed_at\": \"2019-09-10T14:09:15Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 1,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 1,\n \"watchers\": 0,\n \"default_branch\": \"master\"\n }\n },\n \"_links\": {\n \"self\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/9\"\n },\n \"html\": {\n \"href\": \"https://github.com/owner/repo/pull/9\"\n },\n \"issue\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/9\"\n },\n \"comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/issues/9/comments\"\n },\n \"review_comments\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/9/comments\"\n },\n \"review_comment\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/comments{/number}\"\n },\n \"commits\": {\n \"href\": \"https://api.github.com/repos/owner/repo/pulls/9/commits\"\n },\n \"statuses\": {\n \"href\": \"https://api.github.com/repos/owner/repo/statuses/1ee507558f15c3f892f08f7be6699a7d2f66edba\"\n }\n },\n \"author_association\": \"OWNER\"\n }\n]\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=cms/1970-01-01-first-title", + "headers": { + "Date": "Tue, 10 Sep 2019 14:09:19 GMT", + "Content-Type": "application/vnd.github.VERSION.raw; charset=utf-8", + "Content-Length": "167", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3872", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "\"a041245814892e3f73f63ca54333fda649b7fc0b\"", + "Last-Modified": "Tue, 10 Sep 2019 14:08:51 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BBE:15110:18E5854:1E41A4B:5D77AE8F", + "connection": "keep-alive" + }, + "response": "---\ntemplate: post\ntitle: first title\ndraft: true\ndate: 1970-01-01T00:00:00.000Z\ndescription: first description\ncategory: first category\ntags:\n - tag1\n---\nfirst body\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/content/posts/1970-01-01-first-title.md?ts=300&ref=master", + "headers": { + "Date": "Tue, 10 Sep 2019 14:09:19 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "404 Not Found", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "3871", + "X-RateLimit-Reset": "1568126651", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BBC:2B24:182EBDB:1D67268:5D77AE8F", + "content-length": "116", + "connection": "keep-alive" + }, + "response": "{\n \"message\": \"Not Found\",\n \"documentation_url\": \"https://developer.github.com/v3/repos/contents/#get-contents\"\n}\n", + "status": 404 + } +] \ No newline at end of file diff --git a/cypress/fixtures/Github Backend Editorial Workflow - REST API__successfully loads.json b/cypress/fixtures/Github Backend Editorial Workflow - REST API__successfully loads.json new file mode 100644 index 00000000..4ddcc9f6 --- /dev/null +++ b/cypress/fixtures/Github Backend Editorial Workflow - REST API__successfully loads.json @@ -0,0 +1,294 @@ +[ + { + "method": "GET", + "url": "/user?ts=0", + "headers": { + "Date": "Tue, 10 Sep 2019 14:02:15 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4336", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"fb606f875be1d23b690ea5f5e26b9fe9\"", + "Last-Modified": "Wed, 28 Aug 2019 04:48:54 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BDF:3ED7B:128D91F:168A204:5D77ACE6", + "content-length": "1321", + "connection": "keep-alive" + }, + "response": "{\"login\":\"owner\",\"id\":1,\"avatar_url\":\"https://avatars1.githubusercontent.com/u/7892489?v=4\",\"name\":\"owner\"}", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo?ts=0", + "headers": { + "Date": "Tue, 10 Sep 2019 14:02:15 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4335", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"4b1653e80c157aefbf0eb777912a8dff\"", + "Last-Modified": "Tue, 10 Sep 2019 14:02:10 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "repo", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BE0:B4E0:16ED433:1BE845A:5D77ACE7", + "content-length": "7296", + "connection": "keep-alive" + }, + "response": "{\n \"id\": 207575276,\n \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMDc1NzUyNzY=\",\n \"name\": \"repo\",\n \"full_name\": \"owner/repo\",\n \"private\": false,\n \"owner\": {\n \"login\": \"owner\",\n \"id\": 26760571,\n \"node_id\": \"MDQ6VXNlcjI2NzYwNTcx\",\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7892489?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/owner\",\n \"html_url\": \"https://github.com/owner\",\n \"followers_url\": \"https://api.github.com/users/owner/followers\",\n \"following_url\": \"https://api.github.com/users/owner/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/owner/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/owner/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/owner/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/owner/orgs\",\n \"repos_url\": \"https://api.github.com/users/owner/repos\",\n \"events_url\": \"https://api.github.com/users/owner/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/owner/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n },\n \"html_url\": \"https://github.com/owner/repo\",\n \"description\": null,\n \"fork\": false,\n \"url\": \"https://api.github.com/repos/owner/repo\",\n \"forks_url\": \"https://api.github.com/repos/owner/repo/forks\",\n \"keys_url\": \"https://api.github.com/repos/owner/repo/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/owner/repo/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/owner/repo/teams\",\n \"hooks_url\": \"https://api.github.com/repos/owner/repo/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/owner/repo/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/owner/repo/events\",\n \"assignees_url\": \"https://api.github.com/repos/owner/repo/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/owner/repo/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/owner/repo/tags\",\n \"blobs_url\": \"https://api.github.com/repos/owner/repo/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/owner/repo/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/owner/repo/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/owner/repo/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/owner/repo/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/owner/repo/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/owner/repo/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/owner/repo/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/owner/repo/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/owner/repo/subscription\",\n \"commits_url\": \"https://api.github.com/repos/owner/repo/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/owner/repo/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/owner/repo/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/owner/repo/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/owner/repo/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/owner/repo/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/owner/repo/merges\",\n \"archive_url\": \"https://api.github.com/repos/owner/repo/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/owner/repo/downloads\",\n \"issues_url\": \"https://api.github.com/repos/owner/repo/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/owner/repo/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/owner/repo/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/owner/repo/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/owner/repo/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/owner/repo/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/owner/repo/deployments\",\n \"created_at\": \"2019-09-10T14:01:42Z\",\n \"updated_at\": \"2019-09-10T14:02:10Z\",\n \"pushed_at\": \"2019-09-10T14:02:06Z\",\n \"git_url\": \"git://github.com/owner/repo.git\",\n \"ssh_url\": \"git@github.com:owner/repo.git\",\n \"clone_url\": \"https://github.com/owner/repo.git\",\n \"svn_url\": \"https://github.com/owner/repo\",\n \"homepage\": null,\n \"size\": 0,\n \"stargazers_count\": 0,\n \"watchers_count\": 0,\n \"language\": \"JavaScript\",\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"archived\": false,\n \"disabled\": false,\n \"open_issues_count\": 0,\n \"license\": {\n \"key\": \"mit\",\n \"name\": \"MIT License\",\n \"spdx_id\": \"MIT\",\n \"url\": \"https://api.github.com/licenses/mit\",\n \"node_id\": \"MDc6TGljZW5zZTEz\"\n },\n \"forks\": 0,\n \"open_issues\": 0,\n \"watchers\": 0,\n \"default_branch\": \"master\",\n \"permissions\": {\n \"admin\": true,\n \"push\": true,\n \"pull\": true\n },\n \"allow_squash_merge\": true,\n \"allow_merge_commit\": true,\n \"allow_rebase_merge\": true,\n \"network_count\": 0,\n \"subscribers_count\": 1\n}\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/content/posts?ts=0&ref=master", + "headers": { + "Date": "Tue, 10 Sep 2019 14:02:16 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4334", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"c5b7f6d674ba193bb7b4a5fcf4933034e1b7f2b7\"", + "Last-Modified": "Tue, 10 Sep 2019 14:02:10 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7BF4:B4DE:121B562:160BBD4:5D77ACE8", + "content-length": "7422", + "connection": "keep-alive" + }, + "response": "[\n {\n \"name\": \"2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"path\": \"content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"sha\": \"6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"size\": 1707,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043\",\n \"html\": \"https://github.com/owner/repo/blob/master/content/posts/2016-01-09---Perfecting-the-Art-of-Perfection.md\"\n }\n },\n {\n \"name\": \"2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"path\": \"content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"sha\": \"d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"size\": 2565,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9\",\n \"html\": \"https://github.com/owner/repo/blob/master/content/posts/2016-01-12---The-Origins-of-Social-Stationery-Lettering.md\"\n }\n },\n {\n \"name\": \"2016-02-02---A-Brief-History-of-Typography.md\",\n \"path\": \"content/posts/2016-02-02---A-Brief-History-of-Typography.md\",\n \"sha\": \"0eea554365f002d0f1572af9a58522d335a794d5\",\n \"size\": 2786,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2016-02-02---A-Brief-History-of-Typography.md?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/content/posts/2016-02-02---A-Brief-History-of-Typography.md\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/content/posts/2016-02-02---A-Brief-History-of-Typography.md\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2016-02-02---A-Brief-History-of-Typography.md?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5\",\n \"html\": \"https://github.com/owner/repo/blob/master/content/posts/2016-02-02---A-Brief-History-of-Typography.md\"\n }\n },\n {\n \"name\": \"2017-18-08---The-Birth-of-Movable-Type.md\",\n \"path\": \"content/posts/2017-18-08---The-Birth-of-Movable-Type.md\",\n \"sha\": \"44f78c474d04273185a95821426f75affc9b0044\",\n \"size\": 16071,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2017-18-08---The-Birth-of-Movable-Type.md?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/content/posts/2017-18-08---The-Birth-of-Movable-Type.md\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/content/posts/2017-18-08---The-Birth-of-Movable-Type.md\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2017-18-08---The-Birth-of-Movable-Type.md?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044\",\n \"html\": \"https://github.com/owner/repo/blob/master/content/posts/2017-18-08---The-Birth-of-Movable-Type.md\"\n }\n },\n {\n \"name\": \"2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"path\": \"content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"sha\": \"a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"size\": 7465,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774\",\n \"html\": \"https://github.com/owner/repo/blob/master/content/posts/2017-19-08---Humane-Typography-in-the-Digital-Age.md\"\n }\n }\n]\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/contents/static/media?ts=0&ref=master", + "headers": { + "Date": "Tue, 10 Sep 2019 14:02:17 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4331", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"c5b7f6d674ba193bb7b4a5fcf4933034e1b7f2b7\"", + "Last-Modified": "Tue, 10 Sep 2019 14:02:10 GMT", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; format=json", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A1D:244EB:183FC06:1D75815:5D77ACE9", + "content-length": "12362", + "connection": "keep-alive" + }, + "response": "[\n {\n \"name\": \"42-line-bible.jpg\",\n \"path\": \"static/media/42-line-bible.jpg\",\n \"sha\": \"41c8d12f9ca5864beb827c381fbeff935209d5fb\",\n \"size\": 671242,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/static/media/42-line-bible.jpg?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/static/media/42-line-bible.jpg\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/41c8d12f9ca5864beb827c381fbeff935209d5fb\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/static/media/42-line-bible.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/static/media/42-line-bible.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/41c8d12f9ca5864beb827c381fbeff935209d5fb\",\n \"html\": \"https://github.com/owner/repo/blob/master/static/media/42-line-bible.jpg\"\n }\n },\n {\n \"name\": \"gutenberg.jpg\",\n \"path\": \"static/media/gutenberg.jpg\",\n \"sha\": \"04315e355873ea5d358d9c371c39a6845c1ae4ae\",\n \"size\": 155002,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/static/media/gutenberg.jpg?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/static/media/gutenberg.jpg\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/04315e355873ea5d358d9c371c39a6845c1ae4ae\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/static/media/gutenberg.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/static/media/gutenberg.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/04315e355873ea5d358d9c371c39a6845c1ae4ae\",\n \"html\": \"https://github.com/owner/repo/blob/master/static/media/gutenberg.jpg\"\n }\n },\n {\n \"name\": \"image-0.jpg\",\n \"path\": \"static/media/image-0.jpg\",\n \"sha\": \"b70a1b64fd4fa9635823231a0ba92c6dc9393f16\",\n \"size\": 660287,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/static/media/image-0.jpg?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/static/media/image-0.jpg\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/b70a1b64fd4fa9635823231a0ba92c6dc9393f16\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/static/media/image-0.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/static/media/image-0.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/b70a1b64fd4fa9635823231a0ba92c6dc9393f16\",\n \"html\": \"https://github.com/owner/repo/blob/master/static/media/image-0.jpg\"\n }\n },\n {\n \"name\": \"image-1.jpg\",\n \"path\": \"static/media/image-1.jpg\",\n \"sha\": \"05eedae372b829c62501ac751b2d42dcc432541b\",\n \"size\": 392411,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/static/media/image-1.jpg?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/static/media/image-1.jpg\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/05eedae372b829c62501ac751b2d42dcc432541b\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/static/media/image-1.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/static/media/image-1.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/05eedae372b829c62501ac751b2d42dcc432541b\",\n \"html\": \"https://github.com/owner/repo/blob/master/static/media/image-1.jpg\"\n }\n },\n {\n \"name\": \"image-2.jpg\",\n \"path\": \"static/media/image-2.jpg\",\n \"sha\": \"53845ed35faf8939bea242bb85eda7c324b1be0b\",\n \"size\": 99147,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/static/media/image-2.jpg?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/static/media/image-2.jpg\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/53845ed35faf8939bea242bb85eda7c324b1be0b\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/static/media/image-2.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/static/media/image-2.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/53845ed35faf8939bea242bb85eda7c324b1be0b\",\n \"html\": \"https://github.com/owner/repo/blob/master/static/media/image-2.jpg\"\n }\n },\n {\n \"name\": \"image-3.jpg\",\n \"path\": \"static/media/image-3.jpg\",\n \"sha\": \"8b2339d97069e826fae1f156212e40ae458454e3\",\n \"size\": 358022,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/static/media/image-3.jpg?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/static/media/image-3.jpg\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/8b2339d97069e826fae1f156212e40ae458454e3\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/static/media/image-3.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/static/media/image-3.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/8b2339d97069e826fae1f156212e40ae458454e3\",\n \"html\": \"https://github.com/owner/repo/blob/master/static/media/image-3.jpg\"\n }\n },\n {\n \"name\": \"image-4.jpg\",\n \"path\": \"static/media/image-4.jpg\",\n \"sha\": \"a8f6f21253a67a4284b5a953b2fe633d44152ecd\",\n \"size\": 114837,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/static/media/image-4.jpg?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/static/media/image-4.jpg\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/a8f6f21253a67a4284b5a953b2fe633d44152ecd\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/static/media/image-4.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/static/media/image-4.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/a8f6f21253a67a4284b5a953b2fe633d44152ecd\",\n \"html\": \"https://github.com/owner/repo/blob/master/static/media/image-4.jpg\"\n }\n },\n {\n \"name\": \"movable-type.jpg\",\n \"path\": \"static/media/movable-type.jpg\",\n \"sha\": \"57b4e925ea00bd8e195cf4418eb6eb2995ea5f10\",\n \"size\": 559028,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/static/media/movable-type.jpg?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/static/media/movable-type.jpg\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/57b4e925ea00bd8e195cf4418eb6eb2995ea5f10\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/static/media/movable-type.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/static/media/movable-type.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/57b4e925ea00bd8e195cf4418eb6eb2995ea5f10\",\n \"html\": \"https://github.com/owner/repo/blob/master/static/media/movable-type.jpg\"\n }\n },\n {\n \"name\": \"printing-press.jpg\",\n \"path\": \"static/media/printing-press.jpg\",\n \"sha\": \"d27f56c9437d9becd2f56cc627c9322c2f1f61f6\",\n \"size\": 279283,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/static/media/printing-press.jpg?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/static/media/printing-press.jpg\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/d27f56c9437d9becd2f56cc627c9322c2f1f61f6\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/static/media/printing-press.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/static/media/printing-press.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/d27f56c9437d9becd2f56cc627c9322c2f1f61f6\",\n \"html\": \"https://github.com/owner/repo/blob/master/static/media/printing-press.jpg\"\n }\n },\n {\n \"name\": \"type-through-time.jpg\",\n \"path\": \"static/media/type-through-time.jpg\",\n \"sha\": \"3f08366a805c51a60ec5056010f22de4ba08abaa\",\n \"size\": 117689,\n \"url\": \"https://api.github.com/repos/owner/repo/contents/static/media/type-through-time.jpg?ref=master\",\n \"html_url\": \"https://github.com/owner/repo/blob/master/static/media/type-through-time.jpg\",\n \"git_url\": \"https://api.github.com/repos/owner/repo/git/blobs/3f08366a805c51a60ec5056010f22de4ba08abaa\",\n \"download_url\": \"https://raw.githubusercontent.com/owner/repo/master/static/media/type-through-time.jpg\",\n \"type\": \"file\",\n \"_links\": {\n \"self\": \"https://api.github.com/repos/owner/repo/contents/static/media/type-through-time.jpg?ref=master\",\n \"git\": \"https://api.github.com/repos/owner/repo/git/blobs/3f08366a805c51a60ec5056010f22de4ba08abaa\",\n \"html\": \"https://github.com/owner/repo/blob/master/static/media/type-through-time.jpg\"\n }\n }\n]\n", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/blobs/6d51a38aed7139d2117724b1e307657b6ff2d043?ts=0", + "headers": { + "Date": "Tue, 10 Sep 2019 14:02:18 GMT", + "Content-Type": "text/plain; charset=iso-8859-1", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4330", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"b11610ec1fe2f13ce388952c3fdf3423\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A24:3ED76:492CB3:59B3E2:5D77ACE9", + "content-length": "1707", + "connection": "keep-alive" + }, + "response": "---\ntitle: Perfecting the Art of Perfection\ndate: \"2016-09-01T23:46:37.121Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Design Inspiration\"\ntags:\n - \"Handwriting\"\n - \"Learning to write\"\ndescription: \"Quisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\"\ncanonical: ''\n---\n\nQuisque cursus, metus vitae pharetra auctor, sem massa mattis sem, at interdum magna augue eget diam. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi lacinia molestie dui. Praesent blandit dolor. Sed non quam. In vel mi sit amet augue congue elementum.\n\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-2.jpg)\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. \n\nPraesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/blobs/a532f0a9445cdf90a19c6812cff89d1674991774?ts=0", + "headers": { + "Date": "Tue, 10 Sep 2019 14:02:20 GMT", + "Content-Type": "text/plain; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4329", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"d2bb4e67afce9cad20457cc0c72b8a41\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A26:2B19:AB0678:D031BA:5D77ACEC", + "content-length": "7465", + "connection": "keep-alive" + }, + "response": "---\ntitle: Humane Typography in the Digital Age\ndate: \"2017-08-19T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Typography\"\ntags:\n - \"Design\"\n - \"Typography\"\n - \"Web Development\"\ndescription: \"An Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\"\ncanonical: ''\n---\n\n- [The first transition](#the-first-transition)\n- [The digital age](#the-digital-age)\n- [Loss of humanity through transitions](#loss-of-humanity-through-transitions)\n- [Chasing perfection](#chasing-perfection)\n\nAn Essay on Typography by Eric Gill takes the reader back to the year 1930. The year when a conflict between two worlds came to its term. The machines of the industrial world finally took over the handicrafts.\n\nThe typography of this industrial age was no longer handcrafted. Mass production and profit became more important. Quantity mattered more than the quality. The books and printed works in general lost a part of its humanity. The typefaces were not produced by craftsmen anymore. It was the machines printing and tying the books together now. The craftsmen had to let go of their craft and became a cog in the process. An extension of the industrial machine.\n\nBut the victory of the industrialism didn’t mean that the craftsmen were completely extinct. The two worlds continued to coexist independently. Each recognising the good in the other — the power of industrialism and the humanity of craftsmanship. This was the second transition that would strip typography of a part of its humanity. We have to go 500 years back in time to meet the first one.\n\n## The first transition\n\nA similar conflict emerged after the invention of the first printing press in Europe. Johannes Gutenberg invented movable type and used it to produce different compositions. His workshop could print up to 240 impressions per hour. Until then, the books were being copied by hand. All the books were handwritten and decorated with hand drawn ornaments and figures. A process of copying a book was long but each book, even a copy, was a work of art.\n\nThe first printed books were, at first, perceived as inferior to the handwritten ones. They were smaller and cheaper to produce. Movable type provided the printers with flexibility that allowed them to print books in languages other than Latin. Gill describes the transition to industrialism as something that people needed and wanted. Something similar happened after the first printed books emerged. People wanted books in a language they understood and they wanted books they could take with them. They were hungry for knowledge and printed books satisfied this hunger.\n\n![42-line-bible.jpg](/media/42-line-bible.jpg)\n\n*The 42–Line Bible, printed by Gutenberg.*\n\nBut, through this transition, the book lost a large part of its humanity. The machine took over most of the process but craftsmanship was still a part of it. The typefaces were cut manually by the first punch cutters. The paper was made by hand. The illustrations and ornaments were still being hand drawn. These were the remains of the craftsmanship that went almost extinct in the times of Eric Gill.\n\n## The digital age\n\nThe first transition took away a large part of humanity from written communication. Industrialisation, the second transition described by Eric Gill, took away most of what was left. But it’s the third transition that stripped it naked. Typefaces are faceless these days. They’re just fonts on our computers. Hardly anyone knows their stories. Hardly anyone cares. Flicking through thousands of typefaces and finding the “right one” is a matter of minutes.\n\n> In the new computer age the proliferation of typefaces and type manipulations represents a new level of visual pollution threatening our culture. Out of thousands of typefaces, all we need are a few basic ones, and trash the rest.\n>\n— Massimo Vignelli\n\nTypography is not about typefaces. It’s not about what looks best, it’s about what feels right. What communicates the message best. Typography, in its essence, is about the message. “Typographical design should perform optically what the speaker creates through voice and gesture of his thoughts.”, as El Lissitzky, a famous Russian typographer, put it.\n\n## Loss of humanity through transitions\n\nEach transition took away a part of humanity from written language. Handwritten books being the most humane form and the digital typefaces being the least. Overuse of Helvetica is a good example. Messages are being told in a typeface just because it’s a safe option. It’s always there. Everyone knows it but yet, nobody knows it. Stop someone on the street and ask him what Helvetica is? Ask a designer the same question. Ask him where it came from, when, why and who designed it. Most of them will fail to answer these questions. Most of them used it in their precious projects but they still don’t spot it in the street.\n\n
\n\t
\n\t\t

Knowledge of the quality of a typeface is of the greatest importance for the functional, aesthetic and psychological effect.

\n\t\t
\n\t\t\t— Josef Mueller-Brockmann\n\t\t
\n\t
\n
\n\nTypefaces don’t look handmade these days. And that’s all right. They don’t have to. Industrialism took that away from them and we’re fine with it. We’ve traded that part of humanity for a process that produces more books that are easier to read. That can’t be bad. And it isn’t.\n\n> Humane typography will often be comparatively rough and even uncouth; but while a certain uncouthness does not seriously matter in humane works, uncouthness has no excuse whatever in the productions of the machine.\n>\n> — Eric Gill\n\nWe’ve come close to “perfection” in the last five centuries. The letters are crisp and without rough edges. We print our compositions with high–precision printers on a high quality, machine made paper.\n\n![type-through-time.jpg](/media/type-through-time.jpg)\n\n*Type through 5 centuries.*\n\nWe lost a part of ourselves because of this chase after perfection. We forgot about the craftsmanship along the way. And the worst part is that we don’t care. The transition to the digital age made that clear. We choose typefaces like clueless zombies. There’s no meaning in our work. Type sizes, leading, margins… It’s all just a few clicks or lines of code. The message isn’t important anymore. There’s no more “why” behind the “what”.\n\n## Chasing perfection\n\nHuman beings aren’t perfect. Perfection is something that will always elude us. There will always be a small part of humanity in everything we do. No matter how small that part, we should make sure that it transcends the limits of the medium. We have to think about the message first. What typeface should we use and why? Does the typeface match the message and what we want to communicate with it? What will be the leading and why? Will there be more typefaces in our design? On what ground will they be combined? What makes our design unique and why? This is the part of humanity that is left in typography. It might be the last part. Are we really going to give it up?\n\n*Originally published by [Matej Latin](http://matejlatin.co.uk/) on [Medium](https://medium.com/design-notes/humane-typography-in-the-digital-age-9bd5c16199bd?ref=webdesignernews.com#.lygo82z0x).*", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/blobs/44f78c474d04273185a95821426f75affc9b0044?ts=0", + "headers": { + "Date": "Tue, 10 Sep 2019 14:02:20 GMT", + "Content-Type": "text/plain; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4328", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"6e2453f34250f47bb0adc4ff2f6887a8\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A28:9D20:1179A2F:155F5C5:5D77ACEC", + "content-length": "16071", + "connection": "keep-alive" + }, + "response": "---\ntitle: \"Johannes Gutenberg: The Birth of Movable Type\"\ndate: \"2017-08-18T22:12:03.284Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Typography\"\ntags:\n - \"Open source\"\n - \"Gatsby\"\n - \"Typography\"\ndescription: \"German inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\"\ncanonical: ''\n---\n\nGerman inventor Johannes Gutenberg developed a method of movable type and used it to create one of the western world’s first major printed books, the “Forty–Two–Line” Bible.\n\n**Johannes Gensfleisch zur Laden zum Gutenberg** (c. 1398 – 1468) was a German blacksmith, goldsmith, printer, and publisher who introduced printing to Europe. His invention of mechanical movable type printing started the Printing Revolution and is widely regarded as the most important event of the modern period. It played a key role in the development of the Renaissance, Reformation, the Age of Enlightenment, and the Scientific revolution and laid the material basis for the modern knowledge-based economy and the spread of learning to the masses.\n\n
\n\t\"Gutenberg\"\n\t
Johannes Gutenberg
\n
\n\nWith his invention of the printing press, Gutenberg was the first European to use movable type printing, in around 1439. Among his many contributions to printing are: the invention of a process for mass-producing movable type; the use of oil-based ink; and the use of a wooden printing press similar to the agricultural screw presses of the period. His truly epochal invention was the combination of these elements into a practical system that allowed the mass production of printed books and was economically viable for printers and readers alike. Gutenberg's method for making type is traditionally considered to have included a type metal alloy and a hand mould for casting type. The alloy was a mixture of lead, tin, and antimony that melted at a relatively low temperature for faster and more economical casting, cast well, and created a durable type.\n\nIn Renaissance Europe, the arrival of mechanical movable type printing introduced the era of mass communication which permanently altered the structure of society. The relatively unrestricted circulation of information — including revolutionary ideas — transcended borders, captured the masses in the Reformation and threatened the power of political and religious authorities; the sharp increase in literacy broke the monopoly of the literate elite on education and learning and bolstered the emerging middle class. Across Europe, the increasing cultural self-awareness of its people led to the rise of proto-nationalism, accelerated by the flowering of the European vernacular languages to the detriment of Latin's status as lingua franca. In the 19th century, the replacement of the hand-operated Gutenberg-style press by steam-powered rotary presses allowed printing on an industrial scale, while Western-style printing was adopted all over the world, becoming practically the sole medium for modern bulk printing.\n\nThe use of movable type was a marked improvement on the handwritten manuscript, which was the existing method of book production in Europe, and upon woodblock printing, and revolutionized European book-making. Gutenberg's printing technology spread rapidly throughout Europe and later the world.\n\nHis major work, the Gutenberg Bible (also known as the 42-line Bible), has been acclaimed for its high aesthetic and technical quality.\n\n## Printing Press\n\nAround 1439, Gutenberg was involved in a financial misadventure making polished metal mirrors (which were believed to capture holy light from religious relics) for sale to pilgrims to Aachen: in 1439 the city was planning to exhibit its collection of relics from Emperor Charlemagne but the event was delayed by one year due to a severe flood and the capital already spent could not be repaid. When the question of satisfying the investors came up, Gutenberg is said to have promised to share a “secret”. It has been widely speculated that this secret may have been the idea of printing with movable type. Also around 1439–1440, the Dutch Laurens Janszoon Coster came up with the idea of printing. Legend has it that the idea came to him “like a ray of light”.\n\n
\n\t\"Early\n\t
Early wooden printing press as depicted in 1568.
\n
\n\nUntil at least 1444 he lived in Strasbourg, most likely in the St. Arbogast parish. It was in Strasbourg in 1440 that Gutenberg is said to have perfected and unveiled the secret of printing based on his research, mysteriously entitled Kunst und Aventur (art and enterprise). It is not clear what work he was engaged in, or whether some early trials with printing from movable type may have been conducted there. After this, there is a gap of four years in the record. In 1448, he was back in Mainz, where he took out a loan from his brother-in-law Arnold Gelthus, quite possibly for a printing press or related paraphernalia. By this date, Gutenberg may have been familiar with intaglio printing; it is claimed that he had worked on copper engravings with an artist known as the Master of Playing Cards.\n\nBy 1450, the press was in operation, and a German poem had been printed, possibly the first item to be printed there. Gutenberg was able to convince the wealthy moneylender Johann Fust for a loan of 800 guilders. Peter Schöffer, who became Fust’s son-in-law, also joined the enterprise. Schöffer had worked as a scribe in Paris and is believed to have designed some of the first typefaces.\n\n
\n\t
\n\t\t

All that has been written to me about that marvelous man seen at Frankfurt is true. I have not seen complete Bibles but only a number of quires of various books of the Bible. The script was very neat and legible, not at all difficult to follow—your grace would be able to read it without effort, and indeed without glasses.

\n\t\t
\n\t\t\t—Future pope Pius II in a letter to Cardinal Carvajal, March 1455\n\t\t
\n\t
\n
\n\nGutenberg's workshop was set up at Hof Humbrecht, a property belonging to a distant relative. It is not clear when Gutenberg conceived the Bible project, but for this he borrowed another 800 guilders from Fust, and work commenced in 1452. At the same time, the press was also printing other, more lucrative texts (possibly Latin grammars). There is also some speculation that there may have been two presses, one for the pedestrian texts, and one for the Bible. One of the profit-making enterprises of the new press was the printing of thousands of indulgences for the church, documented from 1454–55.\n\nIn 1455 Gutenberg completed his 42-line Bible, known as the Gutenberg Bible. About 180 copies were printed, most on paper and some on vellum.\n\n## Court Case\n\nSome time in 1456, there was a dispute between Gutenberg and Fust, and Fust demanded his money back, accusing Gutenberg of misusing the funds. Meanwhile the expenses of the Bible project had proliferated, and Gutenberg's debt now exceeded 20,000 guilders. Fust sued at the archbishop's court. A November 1455 legal document records that there was a partnership for a \"project of the books,\" the funds for which Gutenberg had used for other purposes, according to Fust. The court decided in favor of Fust, giving him control over the Bible printing workshop and half of all printed Bibles.\n\nThus Gutenberg was effectively bankrupt, but it appears he retained (or re-started) a small printing shop, and participated in the printing of a Bible in the town of Bamberg around 1459, for which he seems at least to have supplied the type. But since his printed books never carry his name or a date, it is difficult to be certain, and there is consequently a considerable scholarly debate on this subject. It is also possible that the large Catholicon dictionary, 300 copies of 754 pages, printed in Mainz in 1460, may have been executed in his workshop.\n\nMeanwhile, the Fust–Schöffer shop was the first in Europe to bring out a book with the printer's name and date, the Mainz Psalter of August 1457, and while proudly proclaiming the mechanical process by which it had been produced, it made no mention of Gutenberg.\n\n## Later Life\n\nIn 1462, during a conflict between two archbishops, Mainz was sacked by archbishop Adolph von Nassau, and Gutenberg was exiled. An old man by now, he moved to Eltville where he may have initiated and supervised a new printing press belonging to the brothers Bechtermünze.\n\nIn January 1465, Gutenberg's achievements were recognized and he was given the title Hofmann (gentleman of the court) by von Nassau. This honor included a stipend, an annual court outfit, as well as 2,180 litres of grain and 2,000 litres of wine tax-free. It is believed he may have moved back to Mainz around this time, but this is not certain.\n\n***\n\nGutenberg died in 1468 and was buried in the Franciscan church at Mainz, his contributions largely unknown. This church and the cemetery were later destroyed, and Gutenberg's grave is now lost.\n\nIn 1504, he was mentioned as the inventor of typography in a book by Professor Ivo Wittig. It was not until 1567 that the first portrait of Gutenberg, almost certainly an imaginary reconstruction, appeared in Heinrich Pantaleon's biography of famous Germans.\n\n## Printing Method With Movable Type\n\nGutenberg's early printing process, and what tests he may have made with movable type, are not known in great detail. His later Bibles were printed in such a way as to have required large quantities of type, some estimates suggesting as many as 100,000 individual sorts. Setting each page would take, perhaps, half a day, and considering all the work in loading the press, inking the type, pulling the impressions, hanging up the sheets, distributing the type, etc., it is thought that the Gutenberg–Fust shop might have employed as many as 25 craftsmen.\n\n![Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5](/media/movable-type.jpg)\n\n*Movable metal type, and composing stick, descended from Gutenberg's press. Photo by Willi Heidelbach. Licensed under CC BY 2.5*\n\nGutenberg's technique of making movable type remains unclear. In the following decades, punches and copper matrices became standardized in the rapidly disseminating printing presses across Europe. Whether Gutenberg used this sophisticated technique or a somewhat primitive version has been the subject of considerable debate.\n\nIn the standard process of making type, a hard metal punch (made by punchcutting, with the letter carved back to front) is hammered into a softer copper bar, creating a matrix. This is then placed into a hand-held mould and a piece of type, or \"sort\", is cast by filling the mould with molten type-metal; this cools almost at once, and the resulting piece of type can be removed from the mould. The matrix can be reused to create hundreds, or thousands, of identical sorts so that the same character appearing anywhere within the book will appear very uniform, giving rise, over time, to the development of distinct styles of typefaces or fonts. After casting, the sorts are arranged into type-cases, and used to make up pages which are inked and printed, a procedure which can be repeated hundreds, or thousands, of times. The sorts can be reused in any combination, earning the process the name of “movable type”.\n\nThe invention of the making of types with punch, matrix and mold has been widely attributed to Gutenberg. However, recent evidence suggests that Gutenberg's process was somewhat different. If he used the punch and matrix approach, all his letters should have been nearly identical, with some variations due to miscasting and inking. However, the type used in Gutenberg's earliest work shows other variations.\n\n
\n\t
\n\t\t

It is a press, certainly, but a press from which shall flow in inexhaustible streams… Through it, god will spread his word.

\n\t\t
\n\t\t\t—Johannes Gutenberg\n\t\t
\n\t
\n
\n\nIn 2001, the physicist Blaise Agüera y Arcas and Princeton librarian Paul Needham, used digital scans of a Papal bull in the Scheide Library, Princeton, to carefully compare the same letters (types) appearing in different parts of the printed text. The irregularities in Gutenberg's type, particularly in simple characters such as the hyphen, suggested that the variations could not have come from either ink smear or from wear and damage on the pieces of metal on the types themselves. While some identical types are clearly used on other pages, other variations, subjected to detailed image analysis, suggested that they could not have been produced from the same matrix. Transmitted light pictures of the page also appeared to reveal substructures in the type that could not arise from traditional punchcutting techniques. They hypothesized that the method may have involved impressing simple shapes to create alphabets in “cuneiform” style in a matrix made of some soft material, perhaps sand. Casting the type would destroy the mould, and the matrix would need to be recreated to make each additional sort. This could explain the variations in the type, as well as the substructures observed in the printed images.\n\nThus, they feel that “the decisive factor for the birth of typography”, the use of reusable moulds for casting type, might have been a more progressive process than was previously thought. They suggest that the additional step of using the punch to create a mould that could be reused many times was not taken until twenty years later, in the 1470s. Others have not accepted some or all of their suggestions, and have interpreted the evidence in other ways, and the truth of the matter remains very uncertain.\n\nA 1568 history by Hadrianus Junius of Holland claims that the basic idea of the movable type came to Gutenberg from Laurens Janszoon Coster via Fust, who was apprenticed to Coster in the 1430s and may have brought some of his equipment from Haarlem to Mainz. While Coster appears to have experimented with moulds and castable metal type, there is no evidence that he had actually printed anything with this technology. He was an inventor and a goldsmith. However, there is one indirect supporter of the claim that Coster might be the inventor. The author of the Cologne Chronicle of 1499 quotes Ulrich Zell, the first printer of Cologne, that printing was performed in Mainz in 1450, but that some type of printing of lower quality had previously occurred in the Netherlands. However, the chronicle does not mention the name of Coster, while it actually credits Gutenberg as the \"first inventor of printing\" in the very same passage (fol. 312). The first securely dated book by Dutch printers is from 1471, and the Coster connection is today regarded as a mere legend.\n\nThe 19th century printer and typefounder Fournier Le Jeune suggested that Gutenberg might not have been using type cast with a reusable matrix, but possibly wooden types that were carved individually. A similar suggestion was made by Nash in 2004. This remains possible, albeit entirely unproven.\n\nIt has also been questioned whether Gutenberg used movable types at all. In 2004, Italian professor Bruno Fabbiani claimed that examination of the 42-line Bible revealed an overlapping of letters, suggesting that Gutenberg did not in fact use movable type (individual cast characters) but rather used whole plates made from a system somewhat like a modern typewriter, whereby the letters were stamped successively into the plate and then printed. However, most specialists regard the occasional overlapping of type as caused by paper movement over pieces of type of slightly unequal height.", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/blobs/0eea554365f002d0f1572af9a58522d335a794d5?ts=0", + "headers": { + "Date": "Tue, 10 Sep 2019 14:02:20 GMT", + "Content-Type": "text/plain; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4327", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"733ab4cffe213d8db3be254e7fee8f69\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A2A:B4E0:16EDC69:1BE8E60:5D77ACEC", + "content-length": "2786", + "connection": "keep-alive" + }, + "response": "---\ntitle: \"A Brief History of Typography\"\ndate: \"2016-02-02T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Design Inspiration\"\ntags:\n - \"Linotype\"\n - \"Monotype\"\n - \"History of typography\"\n - \"Helvetica\"\ndescription: \"Morbi in sem quis dui placerat ornare. Pellentesque odio nisi, euismod in, pharetra a, ultricies in, diam. Sed arcu. Cras consequat.\"\ncanonical: ''\n---\n\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\n\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-0.jpg)\n\n## Header Level 2\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \n\n
\n\t
\n\t\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\n\t\t
\n\t\t\t— Aliquam tincidunt mauris eu risus.\n\t\t
\n\t
\n
\n\n### Header Level 3\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\n\n```css\n#header h1 a {\n display: block;\n width: 300px;\n height: 80px;\n}\n```\n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.", + "status": 200 + }, + { + "method": "GET", + "url": "/repos/owner/repo/git/blobs/d0582dd245a3f408fb3fe2333bf01400007476e9?ts=0", + "headers": { + "Date": "Tue, 10 Sep 2019 14:02:20 GMT", + "Content-Type": "text/plain; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4326", + "X-RateLimit-Reset": "1568126651", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": "Accept, Authorization, Cookie, X-GitHub-OTP", + "ETag": "W/\"f9b97e27090d24f9b7c773ede73acd0c\"", + "X-OAuth-Scopes": "delete_repo, repo", + "X-Accepted-OAuth-Scopes": "", + "X-GitHub-Media-Type": "github.v3; param=VERSION.raw", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "1; mode=block", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "7A2C:3ED77:AD3411:D1FE8E:5D77ACEC", + "content-length": "2565", + "connection": "keep-alive" + }, + "response": "---\ntitle: The Origins of Social Stationery Lettering\ndate: \"2016-12-01T22:40:32.169Z\"\ntemplate: \"post\"\ndraft: false\ncategory: \"Design Culture\"\ndescription: \"Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante.\"\ncanonical: ''\n---\n\n**Pellentesque habitant morbi tristique** senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. *Aenean ultricies mi vitae est.* Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. \n\nVestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. [Donec non enim](#) in turpis pulvinar facilisis.\n\n![Nulla faucibus vestibulum eros in tempus. Vestibulum tempor imperdiet velit nec dapibus](/media/image-3.jpg)\n\n## Header Level 2\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. \n\n
\n\t
\n\t\t

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.

\n\t\t\n\t
\n
\n\n### Header Level 3\n\n+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n+ Aliquam tincidunt mauris eu risus.\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.\n\n```css\n#header h1 a {\n display: block;\n width: 300px;\n height: 80px;\n}\n```\n\nDonec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.", + "status": 200 + } +] \ No newline at end of file diff --git a/cypress/integration/editorial_workflow_spec_github_backend_graphql.js b/cypress/integration/editorial_workflow_spec_github_backend_graphql.js index a0be721b..f568d480 100644 --- a/cypress/integration/editorial_workflow_spec_github_backend_graphql.js +++ b/cypress/integration/editorial_workflow_spec_github_backend_graphql.js @@ -1,5 +1,5 @@ import fixture from './github/editorial_workflow'; -describe.skip('Github Backend Editorial Workflow - GraphQL API', () => { +describe('Github Backend Editorial Workflow - GraphQL API', () => { fixture({ use_graphql: true }); }); diff --git a/cypress/integration/editorial_workflow_spec_github_backend_graphql_open_authoring.js b/cypress/integration/editorial_workflow_spec_github_backend_graphql_open_authoring.js index 6f953725..78f627f8 100644 --- a/cypress/integration/editorial_workflow_spec_github_backend_graphql_open_authoring.js +++ b/cypress/integration/editorial_workflow_spec_github_backend_graphql_open_authoring.js @@ -1,5 +1,5 @@ import fixture from './github/open_authoring'; -describe.skip('Github Backend Editorial Workflow - GraphQL API - Open Authoring', () => { +describe('Github Backend Editorial Workflow - GraphQL API - Open Authoring', () => { fixture({ use_graphql: true }); }); diff --git a/cypress/integration/editorial_workflow_spec_github_backend_rest.js b/cypress/integration/editorial_workflow_spec_github_backend_rest.js index cb255003..8e3ac6b8 100644 --- a/cypress/integration/editorial_workflow_spec_github_backend_rest.js +++ b/cypress/integration/editorial_workflow_spec_github_backend_rest.js @@ -1,5 +1,5 @@ import fixture from './github/editorial_workflow'; -describe.skip('Github Backend Editorial Workflow - REST API', () => { +describe('Github Backend Editorial Workflow - REST API', () => { fixture({ use_graphql: false }); }); diff --git a/cypress/integration/editorial_workflow_spec_github_backend_rest_open_authoring.js b/cypress/integration/editorial_workflow_spec_github_backend_rest_open_authoring.js index 4a547cad..7c5c72da 100644 --- a/cypress/integration/editorial_workflow_spec_github_backend_rest_open_authoring.js +++ b/cypress/integration/editorial_workflow_spec_github_backend_rest_open_authoring.js @@ -1,5 +1,5 @@ import fixture from './github/open_authoring'; -describe.skip('Github Backend Editorial Workflow - REST API - Open Authoring', () => { +describe('Github Backend Editorial Workflow - REST API - Open Authoring', () => { fixture({ use_graphql: false }); }); diff --git a/cypress/integration/editorial_workflow_spec_test_backend.js b/cypress/integration/editorial_workflow_spec_test_backend.js index 192b0e3e..c31ef571 100644 --- a/cypress/integration/editorial_workflow_spec_test_backend.js +++ b/cypress/integration/editorial_workflow_spec_test_backend.js @@ -36,7 +36,7 @@ const entry3 = { describe('Test Backend Editorial Workflow', () => { after(() => { - cy.task('restoreDefaults'); + cy.task('teardownBackend', { backend: 'test' }); }); before(() => { diff --git a/cypress/integration/github/editorial_workflow.js b/cypress/integration/github/editorial_workflow.js index ae09688a..90f134fc 100644 --- a/cypress/integration/github/editorial_workflow.js +++ b/cypress/integration/github/editorial_workflow.js @@ -19,29 +19,25 @@ import { } from '../../utils/steps'; import { workflowStatus, editorStatus } from '../../utils/constants'; import { entry1, entry2, entry3 } from './entries'; +import * as specUtils from './spec_utils'; export default function({ use_graphql }) { let taskResult = { data: {} }; - const backend = 'github'; - before(() => { - Cypress.config('taskTimeout', 1200000); - Cypress.config('defaultCommandTimeout', 60000); - cy.task('setupBackend', { backend }).then(data => { - taskResult.data = data; - }); - - cy.task('updateBackendOptions', { backend, options: { use_graphql, open_authoring: false } }); + specUtils.before(taskResult, { use_graphql, open_authoring: false }); }); after(() => { - cy.task('teardownBackend', { backend, ...taskResult.data }); - cy.task('restoreDefaults'); + specUtils.after(taskResult); + }); + + beforeEach(() => { + specUtils.beforeEach(taskResult); }); afterEach(() => { - cy.task('teardownBackendTest', { backend, ...taskResult.data }); + specUtils.afterEach(taskResult); }); it('successfully loads', () => { diff --git a/cypress/integration/github/open_authoring.js b/cypress/integration/github/open_authoring.js index 6c94dae1..6d69e070 100644 --- a/cypress/integration/github/open_authoring.js +++ b/cypress/integration/github/open_authoring.js @@ -10,28 +10,25 @@ import { } from '../../utils/steps'; import { workflowStatus } from '../../utils/constants'; import { entry1, entry2 } from './entries'; +import * as specUtils from './spec_utils'; export default function({ use_graphql }) { let taskResult = { data: {} }; - const backend = 'github'; - before(() => { - Cypress.config('taskTimeout', 1200000); - Cypress.config('defaultCommandTimeout', 60000); - cy.task('setupBackend', { backend }).then(data => { - taskResult.data = data; - }); - cy.task('updateBackendOptions', { backend, options: { use_graphql, open_authoring: true } }); + specUtils.before(taskResult, { use_graphql, open_authoring: true }); }); after(() => { - cy.task('teardownBackend', { backend, ...taskResult.data }); - cy.task('restoreDefaults'); + specUtils.after(taskResult); + }); + + beforeEach(() => { + specUtils.beforeEach(taskResult); }); afterEach(() => { - cy.task('teardownBackendTest', { backend, ...taskResult.data }); + specUtils.afterEach(taskResult); }); it('successfully loads', () => { diff --git a/cypress/integration/github/spec_utils.js b/cypress/integration/github/spec_utils.js new file mode 100644 index 00000000..a2793bad --- /dev/null +++ b/cypress/integration/github/spec_utils.js @@ -0,0 +1,51 @@ +const backend = 'github'; + +export const before = (taskResult, options) => { + Cypress.config('taskTimeout', 5 * 60 * 1000); + cy.task('setupBackend', { backend, options }).then(data => { + taskResult.data = data; + Cypress.config('defaultCommandTimeout', data.mockResponses ? 5 * 1000 : 1 * 60 * 1000); + }); +}; + +export const after = taskResult => { + cy.task('teardownBackend', { + backend, + ...taskResult.data, + }); +}; + +export const beforeEach = taskResult => { + const spec = Cypress.mocha.getRunner().suite.ctx.currentTest.parent.title; + const testName = Cypress.mocha.getRunner().suite.ctx.currentTest.title; + cy.task('setupBackendTest', { + backend, + ...taskResult.data, + spec, + testName, + }); + + if (taskResult.data.mockResponses) { + const fixture = `${spec}__${testName}.json`; + console.log('loading fixture:', fixture); + cy.stubFetch({ fixture }); + } + + return cy.clock(0, ['Date']); +}; + +export const afterEach = taskResult => { + const spec = Cypress.mocha.getRunner().suite.ctx.currentTest.parent.title; + const testName = Cypress.mocha.getRunner().suite.ctx.currentTest.title; + + cy.task('teardownBackendTest', { + backend, + ...taskResult.data, + spec, + testName, + }); + + if (Cypress.mocha.getRunner().suite.ctx.currentTest.state === 'failed') { + Cypress.runner.stop(); + } +}; diff --git a/cypress/plugins/github.js b/cypress/plugins/github.js index 2c6518da..64423ab9 100644 --- a/cypress/plugins/github.js +++ b/cypress/plugins/github.js @@ -2,8 +2,32 @@ const Octokit = require('@octokit/rest'); const fs = require('fs-extra'); const path = require('path'); const simpleGit = require('simple-git/promise'); +const { updateConfig } = require('../utils/config'); +const { escapeRegExp } = require('../utils/regexp'); +const { retrieveRecordedExpectations, resetMockServerState } = require('../utils/mock-server'); const GIT_SSH_COMMAND = 'ssh -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no'; +const GIT_SSL_NO_VERIFY = true; + +const GITHUB_REPO_OWNER_SANITIZED_VALUE = 'owner'; +const GITHUB_REPO_NAME_SANITIZED_VALUE = 'repo'; +const GITHUB_REPO_TOKEN_SANITIZED_VALUE = 'fakeToken'; +const GITHUB_OPEN_AUTHORING_OWNER_SANITIZED_VALUE = 'forkOwner'; +const GITHUB_OPEN_AUTHORING_TOKEN_SANITIZED_VALUE = 'fakeForkToken'; + +const FAKE_OWNER_USER = { + login: 'owner', + id: 1, + avatar_url: 'https://avatars1.githubusercontent.com/u/7892489?v=4', + name: 'owner', +}; + +const FAKE_FORK_OWNER_USER = { + login: 'forkOwner', + id: 2, + avatar_url: 'https://avatars1.githubusercontent.com/u/9919?s=200&v=4', + name: 'forkOwner', +}; function getGitHubClient(token) { const client = new Octokit({ @@ -47,13 +71,13 @@ async function prepareTestGitHubRepo() { const tempDir = path.join('.temp', testRepoName); await fs.remove(tempDir); - let git = simpleGit().env({ ...process.env, GIT_SSH_COMMAND }); + let git = simpleGit().env({ ...process.env, GIT_SSH_COMMAND, GIT_SSL_NO_VERIFY }); const repoUrl = `git@github.com:${owner}/${repo}.git`; console.log('Cloning repository', repoUrl); await git.clone(repoUrl, tempDir); - git = simpleGit(tempDir).env({ ...process.env, GIT_SSH_COMMAND }); + git = simpleGit(tempDir).env({ ...process.env, GIT_SSH_COMMAND, GIT_SSL_NO_VERIFY }); console.log('Pushing to new repository', testRepoName); @@ -150,7 +174,7 @@ async function resetOriginRepo({ owner, repo, tempDir }) { ); console.log('Resetting master'); - const git = simpleGit(tempDir).env({ ...process.env, GIT_SSH_COMMAND }); + const git = simpleGit(tempDir).env({ ...process.env, GIT_SSH_COMMAND, GIT_SSL_NO_VERIFY }); await git.push(['--force', 'origin', 'master']); console.log('Done resetting origin repo:', `${owner}/repo`); } @@ -184,10 +208,209 @@ async function resetRepositories({ owner, repo, tempDir }) { await resetForkedRepo({ repo }); } -module.exports = { - prepareTestGitHubRepo, - deleteRepositories, - getUser, - getForkUser, - resetRepositories, +async function setupGitHub(options) { + if (process.env.RECORD_FIXTURES) { + console.log('Running tests in "record" mode - live data with be used!'); + const [user, forkUser, repoData] = await Promise.all([ + getUser(), + getForkUser(), + prepareTestGitHubRepo(), + ]); + + const { use_graphql = false, open_authoring = false } = options; + + await updateConfig(config => { + config.backend = { + ...config.backend, + use_graphql, + open_authoring, + repo: `${repoData.owner}/${repoData.repo}`, + }; + }); + + return { ...repoData, user, forkUser, mockResponses: false }; + } else { + console.log('Running tests in "playback" mode - local data with be used'); + + await updateConfig(config => { + config.backend = { + ...config.backend, + ...options, + repo: `${GITHUB_REPO_OWNER_SANITIZED_VALUE}/${GITHUB_REPO_NAME_SANITIZED_VALUE}`, + }; + }); + + return { + owner: GITHUB_REPO_OWNER_SANITIZED_VALUE, + repo: GITHUB_REPO_NAME_SANITIZED_VALUE, + user: { ...FAKE_OWNER_USER, token: GITHUB_REPO_TOKEN_SANITIZED_VALUE, backendName: 'github' }, + forkUser: { + ...FAKE_FORK_OWNER_USER, + token: GITHUB_OPEN_AUTHORING_TOKEN_SANITIZED_VALUE, + backendName: 'github', + }, + mockResponses: true, + }; + } +} + +async function teardownGitHub(taskData) { + if (process.env.RECORD_FIXTURES) { + await deleteRepositories(taskData); + } + + return null; +} + +const getExpectationsFilename = taskData => { + const { spec, testName } = taskData; + const basename = `${spec}__${testName}`; + const fixtures = path.join(__dirname, '..', 'fixtures'); + const filename = path.join(fixtures, `${basename}.json`); + + return filename; +}; + +async function setupGitHubTest(taskData) { + if (process.env.RECORD_FIXTURES) { + await resetRepositories(taskData); + await resetMockServerState(); + } + + return null; +} + +const sanitizeString = ( + str, + { owner, repo, token, forkOwner, forkToken, ownerName, forkOwnerName }, +) => { + let replaced = str + .replace(new RegExp(escapeRegExp(forkOwner), 'g'), GITHUB_OPEN_AUTHORING_OWNER_SANITIZED_VALUE) + .replace(new RegExp(escapeRegExp(forkToken), 'g'), GITHUB_OPEN_AUTHORING_TOKEN_SANITIZED_VALUE) + .replace(new RegExp(escapeRegExp(owner), 'g'), GITHUB_REPO_OWNER_SANITIZED_VALUE) + .replace(new RegExp(escapeRegExp(repo), 'g'), GITHUB_REPO_NAME_SANITIZED_VALUE) + .replace(new RegExp(escapeRegExp(token), 'g'), GITHUB_REPO_TOKEN_SANITIZED_VALUE) + .replace(new RegExp('https://avatars.+?/u/.+?v=\\d', 'g'), `${FAKE_OWNER_USER.avatar_url}`); + + if (ownerName) { + replaced = replaced.replace(new RegExp(escapeRegExp(ownerName), 'g'), FAKE_OWNER_USER.name); + } + + if (forkOwnerName) { + replaced = replaced.replace( + new RegExp(escapeRegExp(forkOwnerName), 'g'), + FAKE_FORK_OWNER_USER.name, + ); + } + + return replaced; +}; + +const transformRecordedData = (expectation, toSanitize) => { + const { httpRequest, httpResponse } = expectation; + + const responseHeaders = {}; + + Object.keys(httpResponse.headers).forEach(key => { + responseHeaders[key] = httpResponse.headers[key][0]; + }); + + let responseBody = null; + if (httpResponse.body && httpResponse.body.string) { + responseBody = httpResponse.body.string; + } + + // replace recorded user with fake one + if ( + responseBody && + httpRequest.path === '/user' && + httpRequest.headers.Host.includes('api.github.com') + ) { + const parsed = JSON.parse(responseBody); + if (parsed.login === toSanitize.forkOwner) { + responseBody = JSON.stringify(FAKE_FORK_OWNER_USER); + } else { + responseBody = JSON.stringify(FAKE_OWNER_USER); + } + } + + let queryString; + if (httpRequest.queryStringParameters) { + const { queryStringParameters } = httpRequest; + + queryString = Object.keys(queryStringParameters) + .map(key => `${key}=${queryStringParameters[key]}`) + .join('&'); + } + + let body; + if (httpRequest.body && httpRequest.body.string) { + const bodyObject = JSON.parse(httpRequest.body.string); + if (bodyObject.encoding === 'base64') { + // sanitize encoded data + const decodedBody = Buffer.from(bodyObject.content, 'base64').toString(); + bodyObject.content = Buffer.from(sanitizeString(decodedBody, toSanitize)).toString('base64'); + body = JSON.stringify(bodyObject); + } else { + body = httpRequest.body.string; + } + } + + const cypressRouteOptions = { + body, + method: httpRequest.method, + url: queryString ? `${httpRequest.path}?${queryString}` : httpRequest.path, + headers: responseHeaders, + response: responseBody, + status: httpResponse.statusCode, + }; + + return cypressRouteOptions; +}; + +async function teardownGitHubTest(taskData) { + if (process.env.RECORD_FIXTURES) { + await resetRepositories(taskData); + + try { + const filename = getExpectationsFilename(taskData); + + console.log('Persisting recorded data for test:', path.basename(filename)); + + const { owner, token, forkOwner, forkToken } = getEnvs(); + + const expectations = await retrieveRecordedExpectations(); + + const toSanitize = { + owner, + repo: taskData.repo, + token, + forkOwner, + forkToken, + ownerName: taskData.user.name, + forkOwnerName: taskData.forkUser.name, + }; + // transform the mock proxy recorded requests into Cypress route format + const toPersist = expectations.map(expectation => + transformRecordedData(expectation, toSanitize), + ); + + const toPersistString = sanitizeString(JSON.stringify(toPersist, null, 2), toSanitize); + + await fs.writeFile(filename, toPersistString); + } catch (e) { + console.log(e); + } + + await resetMockServerState(); + } + + return null; +} + +module.exports = { + setupGitHub, + teardownGitHub, + setupGitHubTest, + teardownGitHubTest, }; diff --git a/cypress/plugins/index.js b/cypress/plugins/index.js index e515b70e..1917a7b6 100644 --- a/cypress/plugins/index.js +++ b/cypress/plugins/index.js @@ -11,105 +11,71 @@ // This function is called when a project is opened or re-opened (e.g. due to // the project's config changing) require('dotenv').config(); -const fs = require('fs-extra'); -const path = require('path'); -const yaml = require('js-yaml'); -const { - prepareTestGitHubRepo, - deleteRepositories, - getUser, - getForkUser, - resetRepositories, -} = require('./github'); - -const devTestDirectory = path.join(__dirname, '..', '..', 'dev-test'); -const backendsDirectory = path.join(devTestDirectory, 'backends'); - -async function copyBackendFiles(backend) { - for (let file of ['config.yml', 'index.html']) { - await fs.copyFile( - path.join(backendsDirectory, backend, file), - path.join(devTestDirectory, file), - ); - } -} - -async function updateConfig(configModifier) { - const configFile = path.join(devTestDirectory, 'config.yml'); - const configContent = await fs.readFile(configFile); - const config = yaml.safeLoad(configContent); - await configModifier(config); - await fs.writeFileSync(configFile, yaml.safeDump(config)); - return null; -} - -async function setupGitHub() { - const [user, forkUser, repoData] = await Promise.all([ - getUser(), - getForkUser(), - prepareTestGitHubRepo(), - ]); - - await updateConfig(config => { - config.backend.repo = `${repoData.owner}/${repoData.repo}`; - }); - - return { ...repoData, user, forkUser }; -} - -async function teardownGitHub(taskData) { - await deleteRepositories(taskData); - return null; -} - -async function teardownBackendTest(taskData) { - await resetRepositories(taskData); - return null; -} +const { setupGitHub, teardownGitHub, setupGitHubTest, teardownGitHubTest } = require('./github'); +const { copyBackendFiles } = require('../utils/config'); module.exports = async on => { // `on` is used to hook into various events Cypress emits on('task', { - async setupBackend({ backend }) { + async setupBackend({ backend, options }) { console.log('Preparing environment for backend', backend); await copyBackendFiles(backend); + let result = null; if (backend === 'github') { - return await setupGitHub(); + result = await setupGitHub(options); } - return null; + return result; }, async teardownBackend(taskData) { const { backend } = taskData; console.log('Tearing down backend', backend); + if (backend === 'github') { - return await teardownGitHub(taskData); + await teardownGitHub(taskData); } - return null; - }, - async teardownBackendTest(taskData) { - const { backend } = taskData; - console.log('Tearing down single test for backend', backend); - if (backend === 'github') { - return await teardownBackendTest(taskData); - } - }, - async updateBackendOptions({ backend, options }) { - console.log('Updating backend', backend, 'with options', options); - if (backend === 'github') { - return await updateConfig(config => { - config.backend = { ...config.backend, ...options }; - }); - } - return null; - }, - async restoreDefaults() { console.log('Restoring defaults'); await copyBackendFiles('test'); return null; }, + async setupBackendTest(taskData) { + const { backend, testName } = taskData; + console.log(`Setting up single test '${testName}' for backend`, backend); + + if (backend === 'github') { + await setupGitHubTest(taskData); + } + + return null; + }, + async teardownBackendTest(taskData) { + const { backend, testName } = taskData; + + console.log(`Tearing down single test '${testName}' for backend`, backend); + + if (backend === 'github') { + await teardownGitHubTest(taskData); + } + + return null; + }, + }); + + // to allows usage of a mock proxy + on('before:browser:launch', (browser = {}, args) => { + if (browser.name === 'chrome') { + args.push('--ignore-certificate-errors'); + + return args; + } + + if (browser.name === 'electron') { + args['ignore-certificate-errors'] = true; + + return args; + } }); }; diff --git a/cypress/support/commands.js b/cypress/support/commands.js index c1f5a772..bd08da0d 100644 --- a/cypress/support/commands.js +++ b/cypress/support/commands.js @@ -23,3 +23,66 @@ // // -- This is will overwrite an existing command -- // Cypress.Commands.overwrite("visit", (originalFn, url, options) => { ... }) +const { escapeRegExp } = require('../utils/regexp'); +const path = require('path'); + +const matchRoute = (route, fetchArgs) => { + const url = fetchArgs[0]; + const options = fetchArgs[1]; + + const method = options && options.method ? options.method : 'GET'; + const body = options && options.body; + + // use pattern matching for the timestamp parameter + const urlRegex = escapeRegExp(decodeURIComponent(route.url)).replace( + /ts=\d{1,15}/, + 'ts=\\d{1,15}', + ); + + return ( + method === route.method && + body === route.body && + decodeURIComponent(url).match(new RegExp(`${urlRegex}`)) + ); +}; + +const stubFetch = (win, routes) => { + const fetch = win.fetch; + cy.stub(win, 'fetch').callsFake((...args) => { + const routeIndex = routes.findIndex(r => matchRoute(r, args)); + if (routeIndex >= 0) { + const route = routes.splice(routeIndex, 1)[0]; + console.log(`matched ${args[0]} to ${route.url} ${route.method} ${route.status}`); + + const response = { + status: route.status, + headers: new Headers(route.headers), + text: () => Promise.resolve(route.response), + json: () => Promise.resolve(JSON.parse(route.response)), + ok: route.status >= 200 && route.status <= 299, + }; + return Promise.resolve(response); + } else if (args[0].includes('api.github.com')) { + console.warn( + `No route match for github api request. Fetch args: ${JSON.stringify(args)}. Returning 404`, + ); + const response = { + status: 404, + headers: new Headers(), + text: () => Promise.resolve('{}'), + json: () => Promise.resolve({}), + ok: false, + }; + return Promise.resolve(response); + } else { + console.log(`No route match for fetch args: ${JSON.stringify(args)}`); + return fetch(...args); + } + }); +}; + +Cypress.Commands.add('stubFetch', ({ fixture }) => { + return cy.readFile(path.join('cypress', 'fixtures', fixture), { log: false }).then(routes => { + cy.on('window:before:load', win => stubFetch(win, routes)); + }); +}); diff --git a/cypress/utils/config.js b/cypress/utils/config.js new file mode 100644 index 00000000..587ade4f --- /dev/null +++ b/cypress/utils/config.js @@ -0,0 +1,27 @@ +const fs = require('fs-extra'); +const path = require('path'); +const yaml = require('js-yaml'); + +const devTestDirectory = path.join(__dirname, '..', '..', 'dev-test'); +const backendsDirectory = path.join(devTestDirectory, 'backends'); + +async function copyBackendFiles(backend) { + await Promise.all( + ['config.yml', 'index.html'].map(file => { + return fs.copyFile( + path.join(backendsDirectory, backend, file), + path.join(devTestDirectory, file), + ); + }), + ); +} + +async function updateConfig(configModifier) { + const configFile = path.join(devTestDirectory, 'config.yml'); + const configContent = await fs.readFile(configFile); + const config = yaml.safeLoad(configContent); + await configModifier(config); + await fs.writeFileSync(configFile, yaml.safeDump(config)); +} + +module.exports = { copyBackendFiles, updateConfig }; diff --git a/cypress/utils/mock-server.js b/cypress/utils/mock-server.js new file mode 100644 index 00000000..21100822 --- /dev/null +++ b/cypress/utils/mock-server.js @@ -0,0 +1,49 @@ +const { mockServerClient } = require('mockserver-client'); +const mockserver = require('mockserver-node'); + +const PROXY_PORT = 1080; +const PROXY_HOST = 'localhost'; + +const start = () => + mockserver.start_mockserver({ + serverPort: PROXY_PORT, + }); + +const stop = () => + mockserver.stop_mockserver({ + serverPort: PROXY_PORT, + }); + +const retrieveRecordedExpectations = async () => { + const promise = new Promise((resolve, reject) => { + mockServerClient(PROXY_HOST, PROXY_PORT) + .retrieveRecordedExpectations({}) + .then(resolve, reject); + }); + + let recorded = await promise; + recorded = recorded.filter(({ httpRequest }) => { + const { Host = [] } = httpRequest.headers; + + return Host.includes('api.github.com'); + }); + + return recorded; +}; + +const resetMockServerState = async () => { + const promise = new Promise((resolve, reject) => { + mockServerClient(PROXY_HOST, PROXY_PORT) + .reset() + .then(resolve, reject); + }); + + await promise; +}; + +module.exports = { + start, + stop, + resetMockServerState, + retrieveRecordedExpectations, +}; diff --git a/cypress/utils/regexp.js b/cypress/utils/regexp.js new file mode 100644 index 00000000..a5654da0 --- /dev/null +++ b/cypress/utils/regexp.js @@ -0,0 +1,5 @@ +const escapeRegExp = string => { + return string.replace(/[-/\\^$*+?.()|[\]{}]/g, '\\$&'); +}; + +module.exports = { escapeRegExp }; diff --git a/cypress/utils/steps.js b/cypress/utils/steps.js index 7899b65a..ca7f7ed6 100644 --- a/cypress/utils/steps.js +++ b/cypress/utils/steps.js @@ -5,6 +5,8 @@ function login(user) { if (user) { cy.visit('/', { onBeforeLoad: () => { + // https://github.com/cypress-io/cypress/issues/1208 + window.indexedDB.deleteDatabase('localforage'); window.localStorage.setItem('netlify-cms-user', JSON.stringify(user)); }, }); @@ -12,6 +14,7 @@ function login(user) { cy.visit('/'); cy.contains('button', 'Login').click(); } + cy.contains('a', 'New Post'); } function assertNotification(message) { @@ -170,11 +173,22 @@ function populateEntry(entry) { } } - cy.get('input') - .first() - .click(); - cy.contains('button', 'Save').click(); - assertNotification(notifications.saved); + cy.clock().then(clock => { + // some input fields are de-bounced thus require advancing the clock + if (clock) { + // https://github.com/cypress-io/cypress/issues/1273 + clock.tick(150); + clock.tick(150); + // eslint-disable-next-line cypress/no-unnecessary-waiting + cy.wait(500); + } + + cy.get('input') + .first() + .click(); + cy.contains('button', 'Save').click(); + assertNotification(notifications.saved); + }); } function createPost(entry) { diff --git a/dev-test/backends/test/config.yml b/dev-test/backends/test/config.yml index 3da9ab1f..26f27a07 100644 --- a/dev-test/backends/test/config.yml +++ b/dev-test/backends/test/config.yml @@ -69,7 +69,13 @@ collections: # A list of collections the CMS should be able to edit max: 10, } - { label: 'Default Author', name: author, widget: string } - - { label: 'Default Thumbnail', name: thumb, widget: image, class: 'thumb', required: false } + - { + label: 'Default Thumbnail', + name: thumb, + widget: image, + class: 'thumb', + required: false, + } - name: 'authors' label: 'Authors' diff --git a/dev-test/config.yml b/dev-test/config.yml index 3da9ab1f..26f27a07 100644 --- a/dev-test/config.yml +++ b/dev-test/config.yml @@ -69,7 +69,13 @@ collections: # A list of collections the CMS should be able to edit max: 10, } - { label: 'Default Author', name: author, widget: string } - - { label: 'Default Thumbnail', name: thumb, widget: image, class: 'thumb', required: false } + - { + label: 'Default Thumbnail', + name: thumb, + widget: image, + class: 'thumb', + required: false, + } - name: 'authors' label: 'Authors' diff --git a/package.json b/package.json index f7680807..07f58889 100644 --- a/package.json +++ b/package.json @@ -23,10 +23,13 @@ "test:e2e:dev": "start-test develop 8080 test:e2e:exec-dev", "test:e2e:serve": "http-server dev-test", "test:e2e:exec": "cypress run", - "test:e2e:exec-ci": "cypress run --record", + "test:e2e:exec-ci": "cypress run --record --parallel --ci-build-id $GITHUB_SHA --group 'GitHub CI' displayName: 'Run Cypress tests'", "test:e2e:exec-dev": "cypress open", + "test:e2e:record-fixtures:dev": "HTTP_PROXY=http://localhost:1080 RECORD_FIXTURES=true cypress open", "test:e2e:run": "start-test test:e2e:serve 8080 test:e2e:exec", "test:e2e:run-ci": "start-test test:e2e:serve 8080 test:e2e:exec-ci", + "mock:server:start": "node -e 'require(\"./cypress/utils/mock-server\").start()'", + "mock:server:stop": "node -e 'require(\"./cypress/utils/mock-server\").stop()'", "lint": "run-p -c --aggregate-output \"lint:*\"", "lint-quiet": "run-p -c --aggregate-output \"lint:* -- --quiet\"", "lint:css": "stylelint --ignore-path .gitignore \"{packages/**/*.{css,js},website/**/*.css}\"", @@ -105,6 +108,8 @@ "jest-dom": "^3.1.3", "jest-emotion": "^10.0.9", "js-yaml": "^3.13.1", + "mockserver-client": "^5.6.1", + "mockserver-node": "^5.6.1", "ncp": "^2.0.0", "nock": "^10.0.4", "node-fetch": "^2.3.0", diff --git a/packages/netlify-cms-backend-github/src/API.js b/packages/netlify-cms-backend-github/src/API.js index 14576637..620e5e59 100644 --- a/packages/netlify-cms-backend-github/src/API.js +++ b/packages/netlify-cms-backend-github/src/API.js @@ -147,7 +147,7 @@ export default class API { } checkMetadataRef() { - return this.request(`${this.repoURL}/git/refs/meta/_netlify_cms?${Date.now()}`, { + return this.request(`${this.repoURL}/git/refs/meta/_netlify_cms`, { cache: 'no-store', }) .then(response => response.object) diff --git a/packages/netlify-cms-backend-github/src/implementation.js b/packages/netlify-cms-backend-github/src/implementation.js index 3244bb9b..9afa3e75 100644 --- a/packages/netlify-cms-backend-github/src/implementation.js +++ b/packages/netlify-cms-backend-github/src/implementation.js @@ -210,7 +210,7 @@ export default class GitHub { logout() { this.token = null; - if (typeof this.api.reset === 'function') { + if (this.api && typeof this.api.reset === 'function') { return this.api.reset(); } return; @@ -422,7 +422,11 @@ export default class GitHub { } deleteUnpublishedEntry(collection, slug) { - return this.api.deleteUnpublishedEntry(collection, slug); + // deleteUnpublishedEntry is a transactional operation + return this.runWithLock( + () => this.api.deleteUnpublishedEntry(collection, slug), + 'Failed to acquire delete entry lock', + ); } publishUnpublishedEntry(collection, slug) { diff --git a/yarn.lock b/yarn.lock index 6fb26e37..44f13e44 100644 --- a/yarn.lock +++ b/yarn.lock @@ -5484,6 +5484,13 @@ focus-group@^0.3.1: resolved "https://registry.yarnpkg.com/focus-group/-/focus-group-0.3.1.tgz#e0f32ed86b0dabdd6ffcebdf898ecb32e47fedce" integrity sha1-4PMu2GsNq91v/OvfiY7LMuR/7c4= +follow-redirects@1.7.0: + version "1.7.0" + resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.7.0.tgz#489ebc198dc0e7f64167bd23b03c4c19b5784c76" + integrity sha512-m/pZQy4Gj287eNy94nivy5wchN3Kp+Q5WgUPNy5lJSZ3sgkVKSYV/ZChMAQVIgx1SqfZ2zBZtPA2YlXIWxxJOQ== + dependencies: + debug "^3.2.6" + follow-redirects@^1.0.0: version "1.9.0" resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.9.0.tgz#8d5bcdc65b7108fe1508649c79c12d732dcedb4f" @@ -6933,7 +6940,7 @@ is-text-path@^2.0.0: dependencies: text-extensions "^2.0.0" -is-typedarray@~1.0.0: +is-typedarray@^1.0.0, is-typedarray@~1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" integrity sha1-5HnICFjfDBsR3dppQPlgEfzaSpo= @@ -8431,6 +8438,23 @@ mkdirp@*, mkdirp@0.5.1, mkdirp@^0.5.0, mkdirp@^0.5.1, mkdirp@~0.5.1: dependencies: minimist "0.0.8" +mockserver-client@^5.6.1: + version "5.6.1" + resolved "https://registry.yarnpkg.com/mockserver-client/-/mockserver-client-5.6.1.tgz#8d171d4a1b3eec69234849ded52075f58d61190c" + integrity sha512-ueupsTHHFVCdES4G1nUfuuBthPdyteKfkBtpQ43yCZEze6VF6j5lAYj/bgUNuxJNcBt2MukXf7BHlN5wqdRH3Q== + dependencies: + q "~2.0" + websocket "^1.0.28" + +mockserver-node@^5.6.1: + version "5.6.1" + resolved "https://registry.yarnpkg.com/mockserver-node/-/mockserver-node-5.6.1.tgz#2682243f42aee5f78bba1b62ce8cc7bae69f980d" + integrity sha512-q7HLn+ms9Lk6/VkQFItTL7o+4o3alVVIznwTqZbwES0OhkBjese288tXNOnQ6xstlnT/Y/rXsfCQrBjuZOzLyg== + dependencies: + follow-redirects "1.7.0" + glob "^7.1.3" + q "~2.0" + modify-values@^1.0.0: version "1.0.1" resolved "https://registry.yarnpkg.com/modify-values/-/modify-values-1.0.1.tgz#b3939fa605546474e3e3e3c63d64bd43b4ee6022" @@ -8510,7 +8534,7 @@ mz@^2.5.0: object-assign "^4.0.1" thenify-all "^1.0.0" -nan@^2.12.1: +nan@^2.12.1, nan@^2.14.0: version "2.14.0" resolved "https://registry.yarnpkg.com/nan/-/nan-2.14.0.tgz#7818f722027b2459a86f0295d434d1fc2336c52c" integrity sha512-INOFj37C7k3AfaNTtX8RhsTw7qRy7eLET14cROi9+5HAVbbHuIWUHEauBv5qT4Av2tWasiTY1Jw6puUNqRJXQg== @@ -9540,6 +9564,11 @@ pn@^1.1.0: resolved "https://registry.yarnpkg.com/pn/-/pn-1.1.0.tgz#e2f4cef0e219f463c179ab37463e4e1ecdccbafb" integrity sha512-2qHaIQr2VLRFoxe2nASzsV6ef4yOOH+Fi9FBOVH6cqeSgUnoyySPZkxzLuzd+RYOQTRpROA0ztTMqxROKSb/nA== +pop-iterate@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/pop-iterate/-/pop-iterate-1.0.1.tgz#ceacfdab4abf353d7a0f2aaa2c1fc7b3f9413ba3" + integrity sha1-zqz9q0q/NT16DyqqLB/Hs/lBO6M= + portfinder@^1.0.13, portfinder@^1.0.24: version "1.0.25" resolved "https://registry.yarnpkg.com/portfinder/-/portfinder-1.0.25.tgz#254fd337ffba869f4b9d37edc298059cb4d35eca" @@ -9898,6 +9927,15 @@ q@^1.1.2, q@^1.5.1: resolved "https://registry.yarnpkg.com/q/-/q-1.5.1.tgz#7e32f75b41381291d04611f1bf14109ac00651d7" integrity sha1-fjL3W0E4EpHQRhHxvxQQmsAGUdc= +q@~2.0: + version "2.0.3" + resolved "https://registry.yarnpkg.com/q/-/q-2.0.3.tgz#75b8db0255a1a5af82f58c3f3aaa1efec7d0d134" + integrity sha1-dbjbAlWhpa+C9Yw/Oqoe/sfQ0TQ= + dependencies: + asap "^2.0.0" + pop-iterate "^1.0.1" + weak-map "^1.0.5" + qs@6.7.0: version "6.7.0" resolved "https://registry.yarnpkg.com/qs/-/qs-6.7.0.tgz#41dc1a015e3d581f1621776be31afb2876a9b1bc" @@ -12369,6 +12407,13 @@ type-of@^2.0.1: resolved "https://registry.yarnpkg.com/type-of/-/type-of-2.0.1.tgz#e72a1741896568e9f628378d816d6912f7f23972" integrity sha1-5yoXQYllaOn2KDeNgW1pEvfyOXI= +typedarray-to-buffer@^3.1.5: + version "3.1.5" + resolved "https://registry.yarnpkg.com/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz#a97ee7a9ff42691b9f783ff1bc5112fe3fca9080" + integrity sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q== + dependencies: + is-typedarray "^1.0.0" + typedarray@^0.0.6: version "0.0.6" resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" @@ -12834,6 +12879,11 @@ wcwidth@^1.0.0: dependencies: defaults "^1.0.3" +weak-map@^1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/weak-map/-/weak-map-1.0.5.tgz#79691584d98607f5070bd3b70a40e6bb22e401eb" + integrity sha1-eWkVhNmGB/UHC9O3CkDmuyLkAes= + webidl-conversions@^4.0.2: version "4.0.2" resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-4.0.2.tgz#a855980b1f0b6b359ba1d5d9fb39ae941faa63ad" @@ -12965,6 +13015,16 @@ websocket-extensions@>=0.1.1: resolved "https://registry.yarnpkg.com/websocket-extensions/-/websocket-extensions-0.1.3.tgz#5d2ff22977003ec687a4b87073dfbbac146ccf29" integrity sha512-nqHUnMXmBzT0w570r2JpJxfiSD1IzoI+HGVdd3aZ0yNi3ngvQ4jv1dtHt5VGxfI2yj5yqImPhOK4vmIh2xMbGg== +websocket@^1.0.28: + version "1.0.30" + resolved "https://registry.yarnpkg.com/websocket/-/websocket-1.0.30.tgz#91d3bd00c3d43e916f0cf962f8f8c451bb0b2373" + integrity sha512-aO6klgaTdSMkhfl5VVJzD5fm+Srhh5jLYbS15+OiI1sN6h/RU/XW6WN9J1uVIpUKNmsTvT3Hs35XAFjn9NMfOw== + dependencies: + debug "^2.2.0" + nan "^2.14.0" + typedarray-to-buffer "^3.1.5" + yaeti "^0.0.6" + what-input@^5.1.4: version "5.2.6" resolved "https://registry.yarnpkg.com/what-input/-/what-input-5.2.6.tgz#ac6f003bf8d3592a0031dea7a03565469b00020b" @@ -13173,6 +13233,11 @@ xtend@^4.0.0, xtend@^4.0.1, xtend@~4.0.1: resolved "https://registry.yarnpkg.com/y18n/-/y18n-4.0.0.tgz#95ef94f85ecc81d007c264e190a120f0a3c8566b" integrity sha512-r9S/ZyXu/Xu9q1tYlpsLIsa3EeLXXk0VwlxqTcFRfg9EhMW+17kbt9G0NrgCmhGb5vT2hyhJZLfDGx+7+5Uj/w== +yaeti@^0.0.6: + version "0.0.6" + resolved "https://registry.yarnpkg.com/yaeti/-/yaeti-0.0.6.tgz#f26f484d72684cf42bedfb76970aa1608fbf9577" + integrity sha1-8m9ITXJoTPQr7ft2lwqhYI+/lXc= + yallist@^3.0.0, yallist@^3.0.2, yallist@^3.0.3: version "3.1.1" resolved "https://registry.yarnpkg.com/yallist/-/yallist-3.1.1.tgz#dbb7daf9bfd8bac9ab45ebf602b8cbad0d5d08fd"