changed workflows

This commit is contained in:
2025-10-07 08:18:33 +02:00
parent 40b19824ce
commit 3072c96fb9
3 changed files with 7 additions and 11 deletions

BIN
.github/workflows/.code-review.yml.swp vendored Normal file

Binary file not shown.

View File

@@ -1,12 +1,9 @@
name: linters
on:
workflow_run: # ← event name must be workflow_run
workflows: ["Review"] # ← exact name of your triggering workflow
types: [completed]
branches: [Development]
push:
branches:
- Development
jobs:
on-success:
if: ${{ github.event.workflow_run.conclusion == 'success' }}

View File

@@ -1,10 +1,9 @@
name: Unit Test
on:
workflow_run:
workflows: ["linters"]
types: [completed] #requested
push:
branches:
- main
jobs:
on-success: