GitHub
Displays information about your git repositories hosted on GitHub:
Open Review Requests
All open code review requests assigned to you.
Open Pull Requests
All open pull requests created by you.
Custom Queries
Create filters to manage PRs and issues however you like.
Configuration
github:
apiKey: "3276d7155dd9ee27b8b14f8743a408a9"
baseURL: ""
customQueries:
othersPRs:
title: "Others Pull Requests"
filter: "is:open is:pr -author:wtfutil"
enabled: true
enableStatus: true
position:
top: 2
left: 3
height: 2
width: 2
refreshInterval: 5m
repositories:
- "wtfutil/wtf"
- "wtfutil/docs"
- "umbrella-corp/wesker-api"
uploadURL: ""
username: "wtfutil"
Screenshots
Attributes
Name | Value |
---|---|
apiKey
Your GitHub API key. Leave this blank to use the WTF_GITHUB_TOKEN environment variable.
|
|
baseURL
Optional Your GitHub Enterprise API URL.
|
Your API URL. Leave it empty to use the WTF_GITHUB_BASE_URL environment variable. |
customQueries
Filters for pull requests and issues. |
See below for examples. |
enableStatus
Whether or not to display pull request mergeability status ( dirty , clean , unstable , blocked ).
|
true , false |
repositories
A list of github repos to fetch data for. |
{{ value }} |
showMyPullRequests
Optional Whether or not to display the 'My Pull Requests' section. Default: true .
|
true , false |
showOpenReviewRequests
Optional_ Whether or not to display the 'Open Review Requests' section. Default: true .
|
true , false |
showStats
Optional Whether or not to display the 'Stats' section. Default: true .
|
true , false |
uploadURL
Optional Your GitHub Enterprise upload URL (often the same as the API URL).
|
Your API URL. Leave it empty to use the WTF_GITHUB_UPLOAD_URL environment variable. |
username
Your GitHub username. Used to figure out which review requests you've been added to. |
Keyboard
Key | Action |
---|---|
/ |
Open/close the widget's help modal |
[return] |
Open the selected Pull Request or Issue in the browser |
[insert] |
Open the selected repository in the browser |
h |
Show the previous git repository |
j |
Select the next item in the list |
k |
Select the previous item in the list |
l |
Show the next git repository |
p |
Open the selected Pull Request in the browser |
←
|
{{ arrowback }}Show the previous git repository |
→
|
{{ arrowfore }}Show the next git repository |
↓ |
Select the next item in the list |
↑ |
Select the previous item in the list |
Custom Query Examples
Custom queries allow you to filter pull requests and issues however you like. Give the query a title and a filter. Filters can be copied directly from GitHub's UI.
customQueries:
othersPRs:
# Displays pull requests that are not assigned to you
title: "Others Pull Requests"
filter: "is:open is:pr -author:[your github username]"
openIssues:
# Displays issues that are assigned to you
title: "My Issues"
filter: "is:issue state:open author:[your github username]"
otherIssues:
# Displays issues not assigned to you, order by their updated_at date
perPage: 10
title: "Others Issues"
filter: "is:issue state:open -author:[your github username] sort:updated-desc"