Skip to content

Commit 975a3ef

Browse files
authored
Merge branch 'main' into julien/fi
2 parents bd0a9a1 + 765b127 commit 975a3ef

File tree

2 files changed

+12
-1
lines changed

2 files changed

+12
-1
lines changed

.github/workflows/ghcr-prune.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,11 @@ jobs:
100100
identifiers.push(version.name);
101101
}
102102
103+
if (tags.length === 0) {
104+
core.info(`Skipping version ${version.id} - no tags found`);
105+
continue;
106+
}
107+
103108
const hasReleaseTag = tags.some(tag => tag.startsWith('v'));
104109
if (hasReleaseTag) {
105110
continue;

.github/workflows/test.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,18 @@
11
# Tests / Code Coverage workflow
2-
# This workflow is triggered by ci_release.yml workflow
2+
# This workflow is triggered by ci_release.yml workflow or manually
33
name: Tests / Code Coverage
44
on:
55
workflow_call:
66
inputs:
77
image-tag:
88
required: true
99
type: string
10+
workflow_dispatch:
11+
inputs:
12+
image-tag:
13+
description: 'Docker image tag to build (e.g., v1.2.3, sha-abc123)'
14+
required: true
15+
type: string
1016

1117
jobs:
1218
build-ev-node-image:

0 commit comments

Comments
 (0)