[READ-ONLY] Mirror of https://github.com/bombshell-dev/tty. Platform independent 2D layout engine for terminal applications based on Clay
5

Configure Feed

Select the types of activity you want to include in your feed.

perf: set concurrency limits to reduce cost and improve dx

Without this it means that, for example, if I push a change to a PR then
shortly push again this workflow will be running twice. This change will
cancel the old run before starting the new one, which reduces the
overall actions cost and DX as you don't have extra runs

Willow (GHOST) (May 24, 2026, 3:36 PM +0100) e2894298 ffcf0d84

+4
+4
.github/workflows/verify.yaml
··· 11 11 permissions: 12 12 contents: read 13 13 14 + concurrency: 15 + group: ${{ github.workflow }}-${{ github.ref }} 16 + cancel-in-progress: true 17 + 14 18 jobs: 15 19 test: 16 20 runs-on: ubuntu-latest