-
Notifications
You must be signed in to change notification settings - Fork 12
SEO fixes for integrations page #229
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,7 +1,7 @@ | ||
| --- | ||
| title: Configure GitHub for Plane integration | ||
| description: Connect GitHub to your self-hosted Plane instance. Sync pull requests, commits, and branches with Plane work items for seamless development tracking. | ||
| keywords: plane github integration, github sync, pull request tracking, commit linking, github app, self-hosting, plane devops | ||
| keywords: plane github integration, github cloud, github enterprise, github sync, pull request tracking, commit linking, github app, | ||
| --- | ||
|
|
||
| # Configure GitHub for Plane integration <Badge type="info" text="Pro" /> | ||
|
|
@@ -36,6 +36,10 @@ To configure GitHub integration, you'll need to create a GitHub App within your | |
|
|
||
| == GitHub Cloud {#github-cloud} | ||
|
|
||
| Follow these steps to create a GitHub App, set callback URLs, and configure webhooks so Plane can sync PRs and commits from GitHub Cloud. | ||
|
|
||
| #### GitHub Cloud | ||
|
|
||
|
Comment on lines
+39
to
+42
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Use consistent heading depth under section context. Line 39 ( Proposed fix-#### GitHub Cloud
+### GitHub Cloud
...
-#### GitHub Enterprise Server
+### GitHub Enterprise ServerAlso applies to: 85-86 🧰 Tools🪛 markdownlint-cli2 (0.21.0)[warning] 39-39: Heading levels should only increment by one level at a time (MD001, heading-increment) 🤖 Prompt for AI Agents |
||
| 1. Go to **Settings \> Developer Settings \> GitHub Apps** in your GitHub organization. | ||
|
|
||
| 2. Click **New GitHub App**. | ||
|
|
@@ -76,6 +80,9 @@ To configure GitHub integration, you'll need to create a GitHub App within your | |
|  | ||
|
|
||
| == GitHub Enterprise Server {#github-enterprise-server} | ||
| These steps cover hostname, callback URLs, and private key differences for on‑prem GitHub deployments. | ||
|
|
||
| #### GitHub Enterprise Server | ||
|
|
||
| 1. Go to **Settings \> Developer Settings \> GitHub Apps** in your GitHub organization. | ||
|
|
||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fix frontmatter keywords formatting to unblock CI.
Line 4 has a trailing comma/space in
keywords, which is consistent with the reported Prettier failure.Proposed fix
As per coding guidelines, "**/*.{ts,tsx,js,jsx,vue,json,md,mts}: Prettier formatting checks must pass in CI, with 120 character line width, 2-space indent, semicolons, double quotes, and ES5 trailing commas".
📝 Committable suggestion
🤖 Prompt for AI Agents