TIL Tuesday: GitHub Actions now supports $/ syntax to reference an action or reusable workflow in the same repository. No hardcoded versions, no ./ path hacks.
jobs:
build:
steps:
- uses: $/.github/actions/build
Reference actions and workflows in the same repo using $/ syntax. Sibling actions match the running commit automatically, no hardcoded versions.
TIL Tuesday: GitHub Actions now supports $/ syntax to reference an action or reusable workflow in the same repository. No hardcoded versions, no ./ path hacks.
jobs:
build:
steps:
- uses: $/.github/actions/build

You can now reference an action or reusable workflow that lives in the same repository using the new self-repository syntax. A…

GitHub Agentic Workflows is now in public preview, and the headline version is easy to understand. You write a natural language…

Pinning Actions to a commit SHA is a one-line change. The value is in three habits most guides skip: re-resolving the SHA…

Off-minute slots, random start delays, commit-message skip flags, and cancel-in-progress tradeoffs — the scheduling decisions…

After this article you'll have a GitHub Actions workflow that triages every new issue with Claude, a...

Introduction Transitioning from GitLab’s centralized CI/CD pipeline structure to GitHub...