feat: Ability to manually run CI for pull requests

This commit is contained in:
Karolin Varner
2025-04-13 13:11:36 +02:00
parent 4266cbfb72
commit 7218b0a3f4
3 changed files with 10 additions and 0 deletions

8
.github/workflows/manual-mac-pr.yaml vendored Normal file
View File

@@ -0,0 +1,8 @@
name: PR Validation on Mac
on:
workflow_dispatch:
jobs:
qc:
uses: ./.github/workflows/qc-mac.yaml
nix:
uses: ./.github/workflows/nix-mac.yaml

View File

@@ -5,6 +5,7 @@ on:
push:
branches:
- main
workflow_call:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}

View File

@@ -2,6 +2,7 @@ name: QC Mac
on:
push:
branches: [main]
workflow_call:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}