Skip to content

Commit

Permalink
feat: filter out public and locked repos in releases list
Browse files Browse the repository at this point in the history
  • Loading branch information
vladholubiev committed Aug 12, 2019
1 parent d9c39c1 commit e211946
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/view-releases/github.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ module.exports.getOrgReleases = async function(org) {
} = await gh.query({
query: gql`
{
organization(login: "${org}") {
organization(login: "${org}", isLocked: false, privacy: PRIVATE) {
repositories(last: 100) {
edges {
node {
Expand Down

0 comments on commit e211946

Please sign in to comment.