This is an automated email from the ASF dual-hosted git repository.
pcongiusti pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel-k.git
The following commit(s) were added to refs/heads/main by this push:
new aab610b69 fix(ci): run olm install on main only
aab610b69 is described below
commit aab610b698a8704fd80965605509b50607595cb3
Author: Pasquale Congiusti <[email protected]>
AuthorDate: Thu Sep 25 08:27:51 2025 +0200
fix(ci): run olm install on main only
Closes #6287
---
.github/workflows/nightly-install-olm.yml | 3 ++-
script/release-branch.sh | 2 --
2 files changed, 2 insertions(+), 3 deletions(-)
diff --git a/.github/workflows/nightly-install-olm.yml
b/.github/workflows/nightly-install-olm.yml
index 2495af92e..953774b95 100644
--- a/.github/workflows/nightly-install-olm.yml
+++ b/.github/workflows/nightly-install-olm.yml
@@ -35,7 +35,8 @@ jobs:
strategy:
fail-fast: false
matrix:
- ref-branch: [main, release-2.5.x]
+ # We want to check this on latest development branch only
+ ref-branch: [main]
if: github.repository == 'apache/camel-k'
runs-on: ubuntu-latest
diff --git a/script/release-branch.sh b/script/release-branch.sh
index 9168e8ec9..0c1c54cda 100755
--- a/script/release-branch.sh
+++ b/script/release-branch.sh
@@ -55,8 +55,6 @@ main() {
echo "Swapping GH actions tasks from $oldest_release_branch to
$new_release_branch"
sed -i "s/$oldest_release_branch/$new_release_branch/g"
$location/../.github/workflows/nightly-automatic-updates.yml
- # We're skipping from release branches because it takes too much resources
- #sed -i "s/$oldest_release_branch/$new_release_branch/g"
$location/../.github/workflows/nightly-native-test.yml
sed -i "s/$oldest_release_branch/$new_release_branch/g"
$location/../.github/workflows/nightly-release.yml
if [ $DRYRUN == "true" ]