tofix/merge-testing-to-main #6

Merged
anti merged 15 commits from tofix/merge-testing-to-main into main 2026-04-13 13:49:48 +02:00
Showing only changes of commit 6095d0d2ed - Show all commits

View File

@@ -90,7 +90,7 @@ jobs:
merge-to-testing:
name: Merge dev → testing
runs-on: ubuntu-latest
needs: [test-fuzz]
needs: [test-standard, test-live, test-fuzz]
if: github.ref == 'refs/heads/dev'
steps:
- uses: actions/checkout@v4
@@ -111,7 +111,7 @@ jobs:
prepare-merge-to-main:
name: Prepare Merge to Main
runs-on: ubuntu-latest
needs: [test-fuzz]
needs: [test-standard, test-live, test-fuzz]
if: github.ref == 'refs/heads/testing'
steps:
- uses: actions/checkout@v4
@@ -133,7 +133,7 @@ jobs:
finalize-merge-to-main:
name: Finalize Merge to Main
runs-on: ubuntu-latest
needs: [test-fuzz]
needs: [test-standard, test-live, test-fuzz]
if: startsWith(github.ref, 'refs/heads/temp/merge-')
steps:
- uses: actions/checkout@v4