Skip to content

Commit 74b9431

Browse files
authored
Merge branch 'main' into hydra-query-api-ep
2 parents 81b87d6 + fd6d32b commit 74b9431

File tree

2 files changed

+12
-2
lines changed

2 files changed

+12
-2
lines changed

.github/actions/list-examples/action.yaml

+11-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
name: "List examples to be used by e2e tests"
22
description: "Return JSON array with a list of examples defined"
3-
inputs: {}
3+
inputs:
4+
ignore:
5+
required: false
6+
description: "Regex to match against example names. Matched examples won't be returned. Empty regex does nothing."
7+
default: "tde"
48

59
outputs:
610
examples:
@@ -12,11 +16,17 @@ runs:
1216
steps:
1317
- shell: bash
1418
id: list
19+
env:
20+
ignoreRegex: "${{ inputs.ignore }}"
1521
run: |
1622
examples="$(echo '[]' | jq .)"
1723
pushd examples/full
1824
for candidate in $(ls -1 .)
1925
do
26+
if [[ ! -z "$ignoreRegex" ]] && [[ "$candidate" =~ "$ignoreRegex" ]]; then
27+
echo "skipping $candidate..."
28+
continue
29+
fi
2030
if [ -d $candidate ]
2131
then
2232
cloud_providers=()

.github/workflows/e2e.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ on:
4545
default: false
4646
description: "If checked, additionally create service using latest stable version, then upgrade to the current version"
4747
schedule:
48-
- cron: "0 3 * * *"
48+
- cron: "0 7 * * *"
4949

5050
defaults:
5151
run:

0 commit comments

Comments
 (0)