This is an automated email from the ASF dual-hosted git repository. ppkarwasz pushed a commit to branch fix/require-build-checks in repository https://gitbox.apache.org/repos/asf/logging-flume.git
commit 714d5dd5867c4ca52ebb439a8c2218bf376b811d Author: Piotr P. Karwasz <[email protected]> AuthorDate: Sat Aug 1 00:16:30 2026 +0200 Require the build checks before merging Auto-merged Dependabot PRs landed on trunk with a failing build, because the `build` workflow was not a required check. Require all three platform jobs, so auto-merge waits for them. Assisted-By: Claude Fable 5 <[email protected]> --- .asf.yaml | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/.asf.yaml b/.asf.yaml index 0685a078..51ca6d60 100644 --- a/.asf.yaml +++ b/.asf.yaml @@ -73,9 +73,13 @@ github: required_conversation_resolution: true # Require checks to pass before merging required_status_checks: - ## The GitHub Actions app - #- app_slug: github-actions - # name: "build (ubuntu-latest)" + # The GitHub Actions app + - app_slug: github-actions + name: "build / build (macos-latest)" + - app_slug: github-actions + name: "build / build (ubuntu-latest)" + - app_slug: github-actions + name: "build / build (windows-latest)" # The GitHub Advanced Security app - app_slug: github-advanced-security name: "CodeQL"
