forked from mirrors/probot
Prefill Glitch app name as GitHub app name for app manifests (#742)
* Use Glitch app name as GitHub app name for app manifests
This commit is contained in:
parent
3b3e555f8b
commit
4a5b8619c0
|
@ -44,7 +44,7 @@ export class ManifestCreation {
|
|||
hook_attributes: {
|
||||
url: process.env.WEBHOOK_PROXY_URL || `${baseUrl}/`
|
||||
},
|
||||
name: manifest.name || pkg.name,
|
||||
name: process.env.PROJECT_DOMAIN || manifest.name || pkg.name,
|
||||
public: manifest.public || true,
|
||||
redirect_url: `${baseUrl}/probot/setup`,
|
||||
// TODO: add setup url
|
||||
|
|
Loading…
Reference in New Issue