Full Pack tests against latest daily w. dependency-aware actions (#66)

Co-authored-by: UltraProdigy <187078471+UltraProdigy@users.noreply.github.com>
This commit is contained in:
MalTeeez
2026-07-12 19:36:18 +02:00
committed by GitHub
co-authored by UltraProdigy
parent 2c3a2c1ff9
commit 219d11877b
11 changed files with 689 additions and 0 deletions
+1
View File
@@ -18,3 +18,4 @@ jobs:
# horizonqa: true
# horizonqa-tests: ''
# horizonqa-allow-no-tests: false
# external-deps-inclusion: true
+10
View File
@@ -0,0 +1,10 @@
name: Check state of other required PRs
on:
pull_request:
branches: [ master, main, release/** ]
jobs:
check-required-prs:
uses: GTNewHorizons/GTNH-Actions-Workflows/.github/workflows/gate-by-required.yml@master
secrets: inherit
@@ -0,0 +1,19 @@
name: Test integration in latest daily
# Shim to forward the "Build and test" completion to the full pack test wf, whose
# jobs inherit this workflow_run event context (github.event.workflow_run.*)
on:
workflow_run:
workflows: ["Build and test"]
types: [completed]
permissions:
actions: read
contents: read
statuses: write
jobs:
latest-daily-integration-test:
if: github.event.workflow_run.event == 'pull_request'
uses: GTNewHorizons/GTNH-Actions-Workflows/.github/workflows/latest-daily-integration-test.yml@master
secrets: inherit
+23
View File
@@ -0,0 +1,23 @@
name: Trigger a rebuild with externally required PRs
# Shim to forward the "Build and test" completion to the rebuild with deps wf, whose
# job inherits this workflow_run event context (github.event.workflow_run.*)
on:
workflow_run:
workflows: ["Build and test"]
types: [completed]
permissions:
actions: write
contents: read
statuses: write
jobs:
trigger-rebuild-with-deps:
# Only act on a failed, first-attempt PR build
if: >-
github.event.workflow_run.conclusion == 'failure'
&& github.event.workflow_run.event == 'pull_request'
&& github.event.workflow_run.run_attempt == 1
uses: GTNewHorizons/GTNH-Actions-Workflows/.github/workflows/trigger-rebuild-with-deps.yml@master
secrets: inherit