mirror of
https://github.com/GTNewHorizons/GTNH-Actions-Workflows.git
synced 2026-09-01 03:47:30 +02:00
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:
@@ -18,3 +18,4 @@ jobs:
|
||||
# horizonqa: true
|
||||
# horizonqa-tests: ''
|
||||
# horizonqa-allow-no-tests: false
|
||||
# external-deps-inclusion: true
|
||||
|
||||
@@ -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
|
||||
@@ -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
|
||||
Reference in New Issue
Block a user