Skip to content

Commit

Permalink
Merge pull request #123290 from community/mgriffin/add-api
Browse files Browse the repository at this point in the history
Add API and Webhooks category
  • Loading branch information
mgriffin committed May 10, 2024
2 parents 72d25ef + 7b1d11a commit 6200e90
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/lib/discussions.rb
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ def self.all(owner: nil, repo: nil)
return [] if owner.nil? || repo.nil?

cutoff_date = Time.now.advance(days: -60).to_date.to_s
searchquery = "repo:#{owner}/#{repo} is:unanswered is:open is:unlocked updated:<#{cutoff_date} category:Copilot category:Accessibility category:\\\"Projects and Issues\\\" category:Sponsors category:Actions label:Question"
searchquery = "repo:#{owner}/#{repo} is:unanswered is:open is:unlocked updated:<#{cutoff_date} category:Copilot category:Accessibility category:\\\"Projects and Issues\\\" category:Sponsors category:Actions category:\\\"API and Webhooks\\\" label:Question"

query = <<~QUERY
{
Expand Down Expand Up @@ -72,7 +72,7 @@ def self.to_be_closed(owner: nil, repo: nil)
return [] if owner.nil? || repo.nil?

cutoff_date = Time.now.advance(days: -30).to_date.to_s
searchquery = "repo:#{owner}/#{repo} is:unanswered is:open is:unlocked updated:<#{cutoff_date} category:Copilot category:Accessibility category:\\\"Projects and Issues\\\" category:Sponsors category:Actions label:Question label:inactive"
searchquery = "repo:#{owner}/#{repo} is:unanswered is:open is:unlocked updated:<#{cutoff_date} category:Copilot category:Accessibility category:\\\"Projects and Issues\\\" category:Sponsors category:Actions category:\\\"API and Webhooks\\\" label:Question label:inactive"

query = <<~QUERY
{
Expand Down Expand Up @@ -135,7 +135,7 @@ def self.to_be_closed(owner: nil, repo: nil)
def self.to_remove_label(owner: nil, repo: nil)
return [] if owner.nil? || repo.nil?

searchquery = "repo:#{owner}/#{repo} is:unanswered is:open category:Copilot category:Accessibility category:\\\"Projects and Issues\\\" category:Sponsors category:Actions label:Question label:inactive"
searchquery = "repo:#{owner}/#{repo} is:unanswered is:open category:Copilot category:Accessibility category:\\\"Projects and Issues\\\" category:Sponsors category:Actions category:\\\"API and Webhooks\\\" label:Question label:inactive"

query = <<~QUERY
{
Expand Down

0 comments on commit 6200e90

Please sign in to comment.