-
Notifications
You must be signed in to change notification settings - Fork 295
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix schemas for gh-events and flux, fix render in gh-events
- Loading branch information
Showing
5 changed files
with
88 additions
and
44 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
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,36 @@ | ||
{ | ||
"$schema": "http://json-schema.org/draft-07/schema#", | ||
"title": "Flux", | ||
"description": "Run the Flux CLI commands directly from your favorite communication platform.", | ||
"type": "object", | ||
"uiSchema": { | ||
"github": { | ||
"auth": { | ||
"accessToken": { | ||
"ui:widget": "password", | ||
"ui:help": "Hint: Make it strong!" | ||
} | ||
} | ||
} | ||
}, | ||
"properties": { | ||
"github": { | ||
"title": "GitHub", | ||
"type": "object", | ||
"properties": { | ||
"auth": { | ||
"title": "Auth", | ||
"type": "object", | ||
"properties": { | ||
"accessToken": { | ||
"title": "Access Token", | ||
"description": "Instructions for token creation: https://help.github.com/articles/creating-a-personal-access-token-for-the-command-line/#creating-a-token.\n\nLack of token may limit functionality, e.g., adding comments to pull requests or approving them.", | ||
"type": "string" | ||
} | ||
} | ||
} | ||
} | ||
} | ||
}, | ||
"required": [] | ||
} |
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