GitHub is where over 100 million developers shape the future of software, together.
Find Most Starred Projects by Language (Haskell example)
https://github.com/search?q=stars%3A%3E1000&type=Repositories&l=Haskell&s=stars&o=desc
Simple querying by language and sorting by stars does not work well.
  • When language is in the query, most of the projects are missing, e.g. https://github.com/search?q=language%3AHaskell&type=Repositories&s=stars&o=desc

  • Google results gives you most starred repositories which points to https://github.com/search?q=stars:%3E1&s=stars&type=Repositories.

    • Unfortunately querying projects with at least one star and sorting them by the amount of stars does not work good either.

    • E.g. following query gave for stars :>1 and :>10000 different results: https://github.com/search?q=stars%3A%3E1&type=Repositories&l=Python&s=stars&o=desc

jekyll-gh-pages.yml
# Sample workflow for building and deploying a Jekyll site to GitHub Pages
name: Deploy Jekyll with GitHub Pages dependencies preinstalled

on:
  # Runs on pushes targeting the default branch
  push:
    branches: ["main"]

  # Allows you to run this workflow manually from the Actions tab
  workflow_dispatch:

# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
  contents: read
  pages: write
  id-token: write

# Allow one concurrent deployment
concurrency:
  group: "pages"
  cancel-in-progress: true

jobs:
  # Build job
  build:
    runs-on: ubuntu-latest
    steps:
      - name: Checkout
        uses: actions/checkout@v3
      - name: Setup Pages
        uses: actions/configure-pages@v3
      - name: Build with Jekyll
        uses: actions/jekyll-build-pages@v1
        with:
          source: ./
          destination: ./_site
      - name: Upload artifact
        uses: actions/upload-pages-artifact@v1

  # Deployment job
  deploy:
    environment:
      name: github-pages
      url: ${{ steps.deployment.outputs.page_url }}
    runs-on: ubuntu-latest
    needs: build
    steps:
      - name: Deploy to GitHub Pages
        id: deployment
        uses: actions/deploy-pages@v1