We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7dbf46f commit 9733005Copy full SHA for 9733005
.github/workflows/build.yml
@@ -1,9 +1,12 @@
1
name: Build PRs and main when updated
2
3
on:
4
+ schedule:
5
+ # daily run
6
+ - cron: '0 0 * * *'
7
push:
8
branches:
- - "main"
9
+ - "next-fabric8-version"
10
paths-ignore:
11
- '.gitignore'
12
- 'CODEOWNERS'
build-parent/pom.xml
@@ -18,6 +18,13 @@
18
</properties>
19
<dependencyManagement>
20
<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>
28
<dependency>
29
<groupId>io.quarkiverse.operatorsdk</groupId>
30
<artifactId>quarkus-operator-sdk-bom</artifactId>
0 commit comments