Best of GitHub ActionsJanuary 2026

  1. 1
    Article
    Avatar of phProduct Hunt·17w

    GitHub Space Shooter: Visualizes GitHub contribution graphs as a Space Shooter

    GitHub Space Shooter transforms GitHub contribution graphs into an interactive space shooter game. Available as both a web app for one-time generation and a GitHub Action for scheduled automated generation. The project is a fun visualization tool rather than solving a practical problem.

  2. 2
    Article
    Avatar of rustRust·16w

    crates.io: development update

    crates.io has added several new features over the past six months, including a Security tab displaying RustSec advisories, expanded Trusted Publishing support for GitLab CI/CD with enforcement options, source lines of code metrics on crate pages, and publication timestamps in the index. The team is also migrating the frontend to Svelte with TypeScript. Additional improvements include filtered download statistics to exclude bots, encrypted GitHub tokens, Fastly CDN integration serving 1.6 PB monthly, and various performance optimizations.

  3. 3
    Article
    Avatar of milanjovanovicMilan Jovanović·14w

    Containerize Your .NET Applications Without a Dockerfile

    .NET SDK (since version 7) includes built-in support for publishing applications directly to container images without writing a Dockerfile. Using a single `dotnet publish` command with the `/t:PublishContainer` flag, developers can build, containerize, and optionally push their applications to registries. The SDK automatically selects appropriate base images, handles multi-stage builds, and allows customization through MSBuild properties like image names, tags, base images, and ports. This approach eliminates Dockerfile maintenance overhead while providing sensible defaults for most web APIs and background services, though complex scenarios requiring system dependencies or custom build steps may still need traditional Dockerfiles.