Skip to content

Commit fae5a3e

Browse files
Merge remote-tracking branch 'origin/develop' into develop
2 parents ddfda7b + e5bacf0 commit fae5a3e

File tree

1 file changed

+1
-31
lines changed

1 file changed

+1
-31
lines changed

.github/workflows/test-report.yml renamed to .github/workflows/create-test-report.yml

Lines changed: 1 addition & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,11 @@
1-
name: Test Report
1+
name: Create Test Report
22
on:
33
# ① Automatic – when the Test workflow ends on main / develop
44
workflow_run:
55
workflows: ["Test"]
66
types: [completed]
77
branches: [main, develop]
88

9-
# ② Manual re-run / ad-hoc report
10-
workflow_dispatch:
11-
inputs:
12-
test_run_id:
13-
description: "Run ID of the completed Test workflow (see the URL)"
14-
required: true
15-
type: string
16-
branch:
17-
description: "Branch that Test was run on"
18-
required: true
19-
type: choice
20-
options: [main, develop]
21-
default: develop
22-
239
permissions:
2410
contents: read
2511
actions: read
@@ -61,19 +47,3 @@ jobs:
6147
test_run_id: ${{ needs.discover-auto.outputs.run_id }}
6248
branch: develop
6349
secrets: inherit
64-
65-
report-manual-main:
66-
if: ${{ github.event_name == 'workflow_dispatch' && inputs.branch == 'main' }}
67-
uses: Stillpoint-Software/shared-workflows/.github/workflows/test-report.yml@main
68-
with:
69-
test_run_id: ${{ inputs.test_run_id }}
70-
branch: main
71-
secrets: inherit
72-
73-
report-manual-develop:
74-
if: ${{ github.event_name == 'workflow_dispatch' && inputs.branch == 'develop' }}
75-
uses: Stillpoint-Software/shared-workflows/.github/workflows/test-report.yml@develop
76-
with:
77-
test_run_id: ${{ inputs.test_run_id }}
78-
branch: develop
79-
secrets: inherit

0 commit comments

Comments
 (0)