-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
71 changed files
with
2,571 additions
and
769 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,15 @@ | ||
{ | ||
"$schema": "https://unpkg.com/@changesets/config@2.0.0/schema.json", | ||
"$schema": "https://unpkg.com/@changesets/config@3.0.0/schema.json", | ||
"changelog": "@changesets/cli/changelog", | ||
"commit": false, | ||
"fixed": [], | ||
"linked": [], | ||
"access": "public", | ||
"baseBranch": "main", | ||
"updateInternalDependencies": "patch", | ||
"ignore": [] | ||
"ignore": [], | ||
"privatePackages": { | ||
"tag": true, | ||
"version": true | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,80 @@ | ||
name: Release integration to production | ||
|
||
on: | ||
release: | ||
types: [published] | ||
|
||
jobs: | ||
deploy-integration-to-production: | ||
if: startsWith(github.event.release.tag_name, '@gitbook/integration-') | ||
name: Deploy integration to production | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Get integration package name | ||
id: integration-package | ||
uses: actions/github-script@v7 | ||
with: | ||
script: | | ||
const tag = context.payload.release.tag_name; | ||
const integrationPackage = '@' + tag.split('@')[1]; | ||
core.setOutput('integrationPackage', integrationPackage) | ||
- name: Checkout repo | ||
uses: actions/checkout@v3 | ||
|
||
- name: Setup Node.js 20.x | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: 20.x | ||
|
||
- name: Install Dependencies | ||
# We need to build and then re-install so that the "bin" can be correctly linked | ||
run: | | ||
npm ci | ||
npm run build | ||
npm ci | ||
# TODO: Remove this once we incorporate this in the publish API of the integration | ||
- name: Publish all integrations assets to production | ||
run: npm run publish-assets | ||
env: | ||
CLOUDFLARE_PAGES_PROJECT: ${{ secrets.INTEGRATIONS_ASSETS_PROD_PROJECT }} | ||
CLOUDFLARE_ACCOUNT_ID: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }} | ||
CLOUDFLARE_API_TOKEN: ${{ secrets.CLOUDFLARE_PAGES_API_TOKEN }} | ||
|
||
- name: Deploy integration | ||
run: npm run publish-integrations -- --filter=${{ steps.integration-package.outputs.integrationPackage }} | ||
env: | ||
GITBOOK_TOKEN: ${{ secrets.GITBOOK_PROD_API_TOKEN }} | ||
GITBOOK_ENDPOINT: https://api.gitbook.com | ||
GITBOOK_ORGANIZATION: gitbook | ||
UNFURL_GITHUB_CLIENT_ID: ${{ secrets.UNFURL_GITHUB_CLIENT_ID }} | ||
UNFURL_GITHUB_CLIENT_SECRET: ${{ secrets.UNFURL_GITHUB_CLIENT_SECRET }} | ||
GITLAB_CLIENT_ID: ${{ secrets.GITLAB_CLIENT_ID }} | ||
GITLAB_CLIENT_SECRET: ${{ secrets.GITLAB_CLIENT_SECRET }} | ||
DISCORD_CLIENT_ID: $ {{ secrets.DISCORD_CLIENT_ID }} | ||
DISCORD_CLIENT_SECRET: $ {{ secrets.DISCORD_CLIENT_SECRET }} | ||
DISCORD_BOT_TOKEN: $ {{ secrets.DISCORD_BOT_TOKEN }} | ||
SLACK_CLIENT_ID: ${{ secrets.SLACK_PROD_CLIENT_ID }} | ||
SLACK_CLIENT_SECRET: ${{ secrets.SLACK_PROD_CLIENT_SECRET }} | ||
SLACK_SIGNING_SECRET: ${{ secrets.SLACK_PROD_SIGNING_SECRET }} | ||
FIGMA_CLIENT_ID: ${{ secrets.FIGMA_PROD_CLIENT_ID }} | ||
FIGMA_CLIENT_SECRET: ${{ secrets.FIGMA_PROD_CLIENT_SECRET }} | ||
MAILCHIMP_CLIENT_ID: ${{ secrets.MAILCHIMP_PROD_CLIENT_ID }} | ||
MAILCHIMP_CLIENT_SECRET: ${{ secrets.MAILCHIMP_PROD_CLIENT_SECRET }} | ||
JIRA_CLIENT_ID: ${{ secrets.JIRA_PROD_CLIENT_ID }} | ||
JIRA_CLIENT_SECRET: ${{ secrets.JIRA_PROD_CLIENT_SECRET }} | ||
LINEAR_CLIENT_ID: ${{ secrets.LINEAR_PROD_CLIENT_ID }} | ||
LINEAR_CLIENT_SECRET: ${{ secrets.LINEAR_PROD_CLIENT_SECRET }} | ||
GITHUB_APP_INSTALL_URL: ${{ secrets.GITBOOK_GITHUB_APP_INSTALL_URL }} | ||
GITHUB_APP_ID: ${{ secrets.GITBOOK_GITHUB_APP_ID }} | ||
GITHUB_CLIENT_ID: ${{ secrets.GITBOOK_GITHUB_CLIENT_ID }} | ||
GITHUB_CLIENT_SECRET: ${{ secrets.GITBOOK_GITHUB_CLIENT_SECRET }} | ||
GITHUB_WEBHOOK_SECRET: ${{ secrets.GITBOOK_GITHUB_WEBHOOK_SECRET }} | ||
GITHUB_PRIVATE_KEY: ${{ secrets.GITBOOK_GITHUB_PRIVATE_KEY }} | ||
GITHUB_ENTITIES_APP_INSTALL_URL: ${{ secrets.ENTITIES_GITHUB_APP_INSTALL_URL }} | ||
GITHUB_ENTITIES_APP_ID: ${{ secrets.ENTITIES_GITHUB_APP_ID }} | ||
GITHUB_ENTITIES_CLIENT_ID: ${{ secrets.ENTITIES_GITHUB_CLIENT_ID }} | ||
GITHUB_ENTITIES_CLIENT_SECRET: ${{ secrets.ENTITIES_GITHUB_CLIENT_SECRET }} | ||
GITHUB_ENTITIES_WEBHOOK_SECRET: ${{ secrets.ENTITIES_GITHUB_WEBHOOK_SECRET }} | ||
GITHUB_ENTITIES_PRIVATE_KEY: ${{ secrets.ENTITIES_GITHUB_PRIVATE_KEY }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
# @gitbook/integration-github | ||
|
||
## 0.0.7 | ||
|
||
### Patch Changes | ||
|
||
- 9285fe2: Release | ||
|
||
## 0.0.6 | ||
|
||
### Patch Changes | ||
|
||
- 8e40049: Release | ||
|
||
## 0.0.5 | ||
|
||
### Patch Changes | ||
|
||
- 3373bce: Release | ||
|
||
## 0.0.4 | ||
|
||
### Patch Changes | ||
|
||
- a7e2098: Release | ||
|
||
## 0.0.3 | ||
|
||
### Patch Changes | ||
|
||
- 37e4590: Release | ||
|
||
## 0.0.2 | ||
|
||
### Patch Changes | ||
|
||
- d3622ef: Release | ||
|
||
## 0.0.1 | ||
|
||
### Patch Changes | ||
|
||
- 2c3fecc: skip import or export git sync operations if no configuration found |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# Publishing this Integration | ||
|
||
## Prerequisites | ||
1. Make sure you've [setup this repository and authenticated](https://app.gitbook.com/o/d8f63b60-89ae-11e7-8574-5927d48c4877/s/-MG7r2HeK94SceWjMDdW/development/integrations/working-with-integrations) with the `gitbook` CLI properly. | ||
2. Once that is done, ensure that you have a GitHub App [configured and published](https://app.gitbook.com/o/d8f63b60-89ae-11e7-8574-5927d48c4877/s/-MG7r2HeK94SceWjMDdW/development/configuration#github) correctly. | ||
|
||
### Publishing | ||
Go to the integration folder at `cd integrations/github`. Before you run `publish` you must set a bunch of environment variables that are defined in the `manifest` file. In order to do that, open your GitHub App settings at https://github.com/settings/apps and then do the following | ||
|
||
- `export GITHUB_APP_INSTALL_URL=https://github.com/apps/your-app-name/installations/new` , and replace `your-app-name` with whatever is the name of your app currently in the settings page URL. | ||
- `export GITHUB_APP_ID=app-id-from-settings` | ||
- `export GITHUB_CLIENT_ID=client-id-from-settings` | ||
- `export GITHUB_CLIENT_SECRET=client-secret-that-you-noted-down-earlier` | ||
- `export GITHUB_WEBHOOK_SECRET=webhook-secret-that-you-noted-down-earlier` | ||
- ```export GITHUB_PRIVATE_KEY=`cat ~/Downloads/gitbook-dev-YOURNAME.key``` | ||
(this is the file that we converted from `.pem` to `.key` earlier. Make sure the file exists at the path) | ||
|
||
Once you've exported these `env` variables, it's time to run the `publish` script: | ||
|
||
`gitbook publish --organization orgId` where `orgId` will be the ID of your personal organization in your dev environment under which this integration should be published. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.