Skip to content

Commit acfd67b

Browse files
basiclinesCopilot
andcommitted
Remove internal launcher attribution from docs
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
1 parent 866ea00 commit acfd67b

1 file changed

Lines changed: 12 additions & 17 deletions

File tree

content/copilot/how-tos/github-copilot-app/open-from-github.md

Lines changed: 12 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,12 @@ You can open the {% data variables.copilot.github_copilot_app %} from {% data va
1515

1616
## Launcher URL format
1717

18-
Use the hosted launcher URL with an `entry_point` value and an encoded app link in `open`.
18+
Use the hosted launcher URL with an encoded app link in `open`.
1919

2020
```text
21-
https://github.com/copilot/app/launch?entry_point=ENTRY_POINT&open=ENCODED_APP_LINK
21+
https://github.com/copilot/app/launch?open=ENCODED_APP_LINK
2222
```
2323

24-
- `entry_point` identifies the source of the link. Use a stable, low-cardinality value, such as the name of the surface that renders the link.
2524
- `open` is the URL-encoded app link to open.
2625

2726
Public examples should use the `ghapp://` scheme. The app also accepts `github-app://` and `gh://` links.
@@ -103,7 +102,7 @@ ghapp://github.com/OWNER/REPO
103102
For example:
104103

105104
```text
106-
https://github.com/copilot/app/launch?entry_point=docs_repo_link&open=ghapp%3A%2F%2Fgithub.com%2FOWNER%2FREPO
105+
https://github.com/copilot/app/launch?open=ghapp%3A%2F%2Fgithub.com%2FOWNER%2FREPO
107106
```
108107

109108
## Issue link
@@ -117,7 +116,7 @@ ghapp://github.com/OWNER/REPO/issues/123
117116
For example:
118117

119118
```text
120-
https://github.com/copilot/app/launch?entry_point=docs_issue_link&open=ghapp%3A%2F%2Fgithub.com%2FOWNER%2FREPO%2Fissues%2F123
119+
https://github.com/copilot/app/launch?open=ghapp%3A%2F%2Fgithub.com%2FOWNER%2FREPO%2Fissues%2F123
121120
```
122121

123122
## Pull request link
@@ -131,7 +130,7 @@ ghapp://github.com/OWNER/REPO/pull/123
131130
For example:
132131

133132
```text
134-
https://github.com/copilot/app/launch?entry_point=docs_pull_request_link&open=ghapp%3A%2F%2Fgithub.com%2FOWNER%2FREPO%2Fpull%2F123
133+
https://github.com/copilot/app/launch?open=ghapp%3A%2F%2Fgithub.com%2FOWNER%2FREPO%2Fpull%2F123
135134
```
136135

137136
## Agent task link
@@ -145,7 +144,7 @@ ghapp://github.com/OWNER/REPO/tasks/TASK_ID
145144
For example:
146145

147146
```text
148-
https://github.com/copilot/app/launch?entry_point=docs_agent_task_link&open=ghapp%3A%2F%2Fgithub.com%2FOWNER%2FREPO%2Ftasks%2FTASK_ID
147+
https://github.com/copilot/app/launch?open=ghapp%3A%2F%2Fgithub.com%2FOWNER%2FREPO%2Ftasks%2FTASK_ID
149148
```
150149

151150
Use the GitHub task ID for `TASK_ID`. Do not use a runtime session ID or an app-local session URL for links that resume Copilot agent tasks from {% data variables.product.github %}.
@@ -161,7 +160,7 @@ ghapp://automations
161160
For example:
162161

163162
```text
164-
https://github.com/copilot/app/launch?entry_point=docs_automations_link&open=ghapp%3A%2F%2Fautomations
163+
https://github.com/copilot/app/launch?open=ghapp%3A%2F%2Fautomations
165164
```
166165

167166
To open a new automation draft, encode an app link in this format.
@@ -173,7 +172,7 @@ ghapp://automations/new?name=Daily%20triage&trigger=daily&time=09%3A00&prompt=Su
173172
For example:
174173

175174
```text
176-
https://github.com/copilot/app/launch?entry_point=docs_new_automation_link&open=ghapp%3A%2F%2Fautomations%2Fnew%3Fname%3DDaily%2520triage%26trigger%3Ddaily%26time%3D09%253A00%26prompt%3DSummarize%2520new%2520issues
175+
https://github.com/copilot/app/launch?open=ghapp%3A%2F%2Fautomations%2Fnew%3Fname%3DDaily%2520triage%26trigger%3Ddaily%26time%3D09%253A00%26prompt%3DSummarize%2520new%2520issues
177176
```
178177

179178
The new automation link opens a pre-filled draft for review. It does not create the automation until the user confirms in the app. Do not include secrets or sensitive information in automation prompts that are embedded in URLs.
@@ -188,8 +187,8 @@ ghapp://automations/AUTOMATION_ID/RUN_ID
188187
For example:
189188

190189
```text
191-
https://github.com/copilot/app/launch?entry_point=docs_automation_link&open=ghapp%3A%2F%2Fautomations%2FAUTOMATION_ID
192-
https://github.com/copilot/app/launch?entry_point=docs_automation_run_link&open=ghapp%3A%2F%2Fautomations%2FAUTOMATION_ID%2FRUN_ID
190+
https://github.com/copilot/app/launch?open=ghapp%3A%2F%2Fautomations%2FAUTOMATION_ID
191+
https://github.com/copilot/app/launch?open=ghapp%3A%2F%2Fautomations%2FAUTOMATION_ID%2FRUN_ID
193192
```
194193

195194
Automation links open local automations by default. To open a cloud automation, add `mode=cloud` to the app link before encoding it.
@@ -202,10 +201,6 @@ ghapp://automations/AUTOMATION_ID/RUN_ID?mode=cloud
202201
For example:
203202

204203
```text
205-
https://github.com/copilot/app/launch?entry_point=docs_cloud_automation_link&open=ghapp%3A%2F%2Fautomations%2FAUTOMATION_ID%3Fmode%3Dcloud
206-
https://github.com/copilot/app/launch?entry_point=docs_cloud_automation_run_link&open=ghapp%3A%2F%2Fautomations%2FAUTOMATION_ID%2FRUN_ID%3Fmode%3Dcloud
204+
https://github.com/copilot/app/launch?open=ghapp%3A%2F%2Fautomations%2FAUTOMATION_ID%3Fmode%3Dcloud
205+
https://github.com/copilot/app/launch?open=ghapp%3A%2F%2Fautomations%2FAUTOMATION_ID%2FRUN_ID%3Fmode%3Dcloud
207206
```
208-
209-
## Attribution and privacy
210-
211-
Use `entry_point` to attribute the link source without duplicating details from the `open` target. Keep the value generic and stable, and do not include repository names, issue or pull request numbers, branch names, task IDs, automation IDs, run IDs, prompts, or raw app links in analytics events.

0 commit comments

Comments
 (0)