Skip to content

Commit bfe822a

Browse files
committed
chore: rebase on main, keep version intact to reduce distance with main
[skip ci]
1 parent 5985d05 commit bfe822a

File tree

3 files changed

+19
-4
lines changed

3 files changed

+19
-4
lines changed

.github/workflows/build.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,12 @@
11
name: Build PRs and main when updated
22

33
on:
4+
schedule:
5+
# daily run
6+
- cron: '0 0 * * *'
47
push:
58
branches:
6-
- "main"
9+
- "next-fabric8-version"
710
paths-ignore:
811
- '.gitignore'
912
- 'CODEOWNERS'
@@ -39,8 +42,8 @@ jobs:
3942
matrix:
4043
java-version: [ 11, 17 ]
4144
quarkus-version-jq-cmd:
42-
# - '.platforms[0]."current-stream-id" as $current | .platforms[0].streams[] | select(.id == $current) | .releases[0].version'
43-
- '.platforms[0].streams[] | select(.id == "3.5") | .releases[0].version'
45+
- '.platforms[0]."current-stream-id" as $current | .platforms[0].streams[] | select(.id == $current) | .releases[0].version'
46+
# - '.platforms[0].streams[] | select(.id == "3.2") | .releases[0].version'
4447
uses: ./.github/workflows/build-for-quarkus-version.yml
4548
with:
4649
quarkus-version-jq-cmd: ${{ matrix.quarkus-version-jq-cmd }}

.github/workflows/snapshot-release.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,13 @@ concurrency:
44
group: ${{ github.ref }}-${{ github.workflow }}
55
cancel-in-progress: true
66
on:
7+
schedule:
8+
# daily run
9+
- cron: '0 0 * * *'
710
push:
8-
branches: [ main, next ]
11+
paths-ignore:
12+
- 'docs/**'
13+
branches: [ next-fabric8-version ]
914

1015
jobs:
1116
release-snapshot:

build-parent/pom.xml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,13 @@
1818
</properties>
1919
<dependencyManagement>
2020
<dependencies>
21+
<dependency>
22+
<groupId>io.fabric8</groupId>
23+
<artifactId>kubernetes-client-bom</artifactId>
24+
<version>6.8-SNAPSHOT</version>
25+
<type>pom</type>
26+
<scope>import</scope>
27+
</dependency>
2128
<dependency>
2229
<groupId>io.quarkiverse.operatorsdk</groupId>
2330
<artifactId>quarkus-operator-sdk-bom</artifactId>

0 commit comments

Comments
 (0)