We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 827f122 commit 9840066Copy full SHA for 9840066
index.ts
@@ -3,13 +3,21 @@ import { SettingSchemaDesc } from '@logseq/libs/dist/LSPlugin.user';
3
// import 'octokit'
4
import { Octokit, App } from 'octokit'
5
let githubToken = process.env.GITHUBAUTHENTICATIONTOKEN
6
+console.log(githubToken)
7
const octokit = new Octokit({ auth: `${githubToken}` });
8
//Inputs 5 numbered blocks when called
9
10
var blockArray
11
12
const pageName = "Github"
13
let settings: SettingSchemaDesc[] = [
14
+ {
15
+ key: "API Key",
16
+ type: "string",
17
+ title: "Enter github personal access token",
18
+ description: "Enter your personal access token here",
19
+ default: "user:sawhney17"
20
+ },
21
{
22
key: "SearchQuery",
23
type: "string",
0 commit comments