GTNH-Actions-Workflows/templates/trigger-rebuild-with-deps.yml
MalTeeez 219d11877b
Full Pack tests against latest daily w. dependency-aware actions (#66)
Co-authored-by: UltraProdigy <187078471+UltraProdigy@users.noreply.github.com>
2026-07-12 19:36:18 +02:00

24 lines
747 B
YAML

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