Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 12 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ env:
RUSTFLAGS: "-D warnings"
RUSTDOCFLAGS: "-D warnings"
RUST_LOG: "info"
PRODUCT_NAME: kafka
PRODUCT_NAME: "kafka"
DEV_REPO_HELM_URL: https://repo.stackable.tech/repository/helm-dev
TEST_REPO_HELM_URL: https://repo.stackable.tech/repository/helm-test
STABLE_REPO_HELM_URL: https://repo.stackable.tech/repository/helm-stable
Expand Down Expand Up @@ -181,7 +181,6 @@ jobs:
- run_clippy
- run_rustfmt
- run_rustdoc
- run_udeps
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@ec3a7ce113134d7a93b817d10a8272cb61118579 # renovate: tag=v2.4.0
Expand Down Expand Up @@ -255,10 +254,20 @@ jobs:
- name: placeholder
run: echo Tests will go here

tests_passed:
name: All tests passed
needs:
- test_charts
- run_udeps
runs-on: ubuntu-latest
steps:
- name: log
run: echo All tests have passed!

package_and_publish:
name: Package Charts, Build Docker Image and publish them
needs:
- test_charts
- tests_passed
- select_repo
runs-on: ubuntu-latest
env:
Expand Down
2 changes: 1 addition & 1 deletion bors.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
status = [
'Run Chart Tests'
'All tests passed'
]
delete_merged_branches = true
use_squash_merge = true
Expand Down
7 changes: 4 additions & 3 deletions renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
],
"rollbackPrs": true,
"schedule": [
"after 22:00 and before 6:00 every weekday"
"after 5:00 and before 6:00 every weekday"
],
"timezone": "Europe/Berlin",
"packageRules": [
Expand All @@ -25,7 +25,8 @@
"lockFileMaintenance": {
"enabled": true,
"schedule": [
"after 22:00 and before 6:00 every weekday"
"after 5:00 and before 6:00 every weekday"
]
}
},
"ignorePaths": [".github/workflows/build.yml", ".github/workflows/reviewdog.yaml", ".github/workflows/daily_security.yml"]
}