This is an automated email from the ASF dual-hosted git repository. ppkarwasz pushed a commit to branch trunk in repository https://gitbox.apache.org/repos/asf/logging-flume.git
commit 3574879c7e61bc3f3b6648b69d7b6f91817150b3 Author: Piotr P. Karwasz <[email protected]> AuthorDate: Sat Aug 1 00:49:05 2026 +0200 Require the build checks before merging (#486) 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"
