mirror of
				https://codeberg.org/yeentown/barkey.git
				synced 2025-11-04 07:24:13 +00:00 
			
		
		
		
	* Create patreon.jq * Create check_pr.jq * Rename check_pr.jq to .autogen/check_pr.jq * Create next_url.jq * Update autogen.sh * Rename autogen.sh to update_readme_patreon.sh
		
			
				
	
	
		
			39 lines
		
	
	
	
		
			388 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			39 lines
		
	
	
	
		
			388 B
		
	
	
	
		
			Text
		
	
	
	
	
	
(
 | 
						|
  .data |
 | 
						|
  map(
 | 
						|
    select(
 | 
						|
      .relationships
 | 
						|
      .currently_entitled_tiers
 | 
						|
      .data[]
 | 
						|
    )
 | 
						|
  ) |
 | 
						|
  map(
 | 
						|
    .relationships
 | 
						|
    .user
 | 
						|
    .data
 | 
						|
    .id
 | 
						|
  )
 | 
						|
) as $data |
 | 
						|
.included |
 | 
						|
map(
 | 
						|
  select(
 | 
						|
    .id as $id |
 | 
						|
    $data |
 | 
						|
    contains(
 | 
						|
      [
 | 
						|
        $id
 | 
						|
      ]
 | 
						|
    )
 | 
						|
  )
 | 
						|
) |
 | 
						|
map(
 | 
						|
  .attributes |
 | 
						|
  [
 | 
						|
    .full_name,
 | 
						|
    .thumb_url,
 | 
						|
    .url
 | 
						|
  ] |
 | 
						|
  @tsv
 | 
						|
) |
 | 
						|
.[] |
 | 
						|
@text
 |