native macOS codings agent orchestrator
6
fork

Configure Feed

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

Trigger PR DMG workflow only on create-dmg label

The workflow now runs only when the create-dmg label is added to a PR,
avoiding unnecessary builds on every PR event.

khoi e181445e 9adfb44c

+2
+2
.github/workflows/pr-dmg.yml
··· 2 2 3 3 on: 4 4 pull_request: 5 + types: [labeled] 5 6 6 7 concurrency: 7 8 group: pr-dmg-${{ github.event.pull_request.number }} ··· 9 10 10 11 jobs: 11 12 build_dmg: 13 + if: github.event.label.name == 'create-dmg' 12 14 runs-on: [self-hosted, macOS, ARM64] 13 15 permissions: 14 16 contents: read