Skip to content

Commit afb942f

Browse files
will-molloyclaude
andcommitted
Update GitHub Actions workflow with concurrency controls and run-name
- Add run-name with actor information for better visibility - Add concurrency group to cancel duplicate runs - Improve CI efficiency by preventing redundant builds 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 161b0cc commit afb942f

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

.github/workflows/build.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,15 @@
11
name: build
2+
run-name: build by @${{ github.actor }}
23

34
on:
45
pull_request:
56
push:
67
branches: [ main ]
78

9+
concurrency:
10+
group: ${{ github.workflow }}-${{ github.head_ref || github.ref }}
11+
cancel-in-progress: true
12+
813
jobs:
914
build:
1015
runs-on: ${{ matrix.os }}

0 commit comments

Comments
 (0)