Skip to content

Commit ff8d009

Browse files
committed
syncing from "puppetlabs/support_workflows"
1 parent 8ff1af4 commit ff8d009

File tree

2 files changed

+17
-5
lines changed

2 files changed

+17
-5
lines changed

.github/workflows/call_nightly.yml

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: Call main PR testing workflows
2+
3+
on:
4+
workflow_dispatch:
5+
schedule:
6+
- cron: '25 5 * * 3'
7+
8+
jobs:
9+
spec_testing:
10+
name: "Spec testing"
11+
uses: ./.github/workflows/spec.yml
12+
13+
nightly_testing:
14+
name: "PE Nightly Testing"
15+
needs: spec_testing
16+
if: github.repository != 'puppetlabs/puppetlabs-bash_task_helper' || github.repository != 'puppetlabs/puppetlabs-puppet_operations_appliance'
17+
uses: ./.github/workflows/pe_nightly_testing.yml

.github/workflows/pe_nightly_testing.yml

-5
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@ name: "PE Nightly Acceptance Testing"
33
on:
44
workflow_dispatch:
55
workflow_call:
6-
schedule:
7-
- cron: '25 5 * * 3'
86

97
jobs:
108
setup_matrix:
@@ -50,9 +48,6 @@ jobs:
5048
- image: rhel-8
5149
os: el-8-x86_64
5250

53-
env:
54-
PUPPET_GEM_VERSION: '~> 7.24'
55-
5651
steps:
5752
- name: Checkout Source
5853
uses: actions/checkout@v3

0 commit comments

Comments
 (0)