Skip to content

Commit 926fcf1

Browse files
committed
syncing from "puppetlabs/support_workflows"
1 parent ea7f21e commit 926fcf1

File tree

4 files changed

+23
-3
lines changed

4 files changed

+23
-3
lines changed

.github/workflows/main_pr_testing.yml

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: Call main PR testing workflows
2+
3+
on:
4+
workflow_dispatch:
5+
pull_request:
6+
7+
jobs:
8+
spec_testing:
9+
name: "Spec testing"
10+
uses: ./.github/workflows/spec.yml
11+
12+
lts_testing:
13+
name: "PE LTS Testing"
14+
needs: spec_testing
15+
uses: ./.github/workflows/pe_lts_testing.yml
16+
17+
latest_testing:
18+
name: "PE latest Testing"
19+
needs: spec_testing
20+
uses: ./.github/workflows/pe_latest_testing.yml

.github/workflows/pe_latest_testing.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: "PE Latest Acceptance Testing"
22

33
on:
44
workflow_dispatch:
5-
pull_request:
5+
workflow_call:
66

77
env:
88
HONEYCOMB_WRITEKEY: 7f3c63a70eecc61d635917de46bea4e6

.github/workflows/pe_lts_testing.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: "PE LTS Acceptance Testing"
22

33
on:
44
workflow_dispatch:
5-
pull_request:
5+
workflow_call:
66

77
env:
88
HONEYCOMB_WRITEKEY: 7f3c63a70eecc61d635917de46bea4e6

.github/workflows/spec.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: "Spec Tests"
22

33
on:
44
workflow_dispatch:
5-
pull_request:
5+
workflow_call:
66

77
env:
88
HONEYCOMB_WRITEKEY: 7f3c63a70eecc61d635917de46bea4e6

0 commit comments

Comments
 (0)