Skip to content

Commit

Permalink
Set default filter and update config description
Browse files Browse the repository at this point in the history
  • Loading branch information
bogdal committed Mar 17, 2022
1 parent 85af363 commit f702955
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions Dev/GitHub/github-review-requests.5m.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3
# -*- coding: utf-8 -*-

# <xbar.title>Github review requests</xbar.title>
Expand All @@ -16,13 +16,14 @@
# https://help.github.com/articles/creating-a-personal-access-token-for-the-command-line/
ACCESS_TOKEN = ''

# (required) Your GitHub login https://github.com/<login>
GITHUB_LOGIN = ''

# (optional) PRs with this label (e.g 'in progress') will be grayed out on the list
WIP_LABEL = ''

# (optional) Filter the PRs by an organization, labels, etc. E.g 'org:YourOrg -label:dropped'
FILTERS = ''
# (optional) Filter the PRs by an organization, labels, etc. E.g 'org:YourOrg -label:dropped draft:false'
FILTERS = 'draft:false'

# --------------------
# --- END CONFIG ---
Expand Down

0 comments on commit f702955

Please sign in to comment.