This is an automated email from the ASF dual-hosted git repository.

Yicong-Huang pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/texera.git


The following commit(s) were added to refs/heads/main by this push:
     new 777db47a3b ci: drop bypass_actors from .asf.yaml ruleset (#5047)
777db47a3b is described below

commit 777db47a3b7234312adb4db4ca57607bd8582d17
Author: Xinyuan Lin <[email protected]>
AuthorDate: Tue May 12 23:14:21 2026 -0700

    ci: drop bypass_actors from .asf.yaml ruleset (#5047)
    
    ### What changes were proposed in this PR?
    Remove the `bypass_actors:` block from the `Merge Queue` ruleset added
    in #5036. ASF Infra flagged that block specifically with `Invalid
    property /bypass_actors/0/actor_id: "4" is not of type integer`, and
    removing it is the minimal change that addresses that error.
    
    
    ### Background
    Since #5036 merged, every push to `main` triggers this email from ASF
    Infra:
    
    ```
    Validation failed while creating ruleset 'Merge Queue': Invalid request.
    
    Invalid property /bypass_actors/0/actor_id: `"4"` is not of type `integer`.
    Invalid property /rules/2: data matches no possible input.
    Invalid property /rules/3: data matches no possible input.
    Invalid property /rules/5: data matches no possible input.
    ```
    
    This PR addresses the first line (`bypass_actors/0/actor_id`). ASF
    Infra's follow-up reply did not include a `bypass_actors` block in the
    recommended example, so removing it aligns with their suggestion.
    
    ### How was this PR tested?
    Verified `.asf.yaml` still parses through `strictyaml` and that the only
    change is the four removed `bypass_actors` lines:
    
    ```bash
    git diff -- .asf.yaml
    ruby -e 'require "yaml"; YAML.load_file(".asf.yaml"); puts "ok"'
    ```
    
    No automated runtime tests added — this PR only changes repository
    configuration.
    
    ### Any related issues, documentation, discussions?
    Follow-up to #5036.
    
    ### Was this PR authored or co-authored using generative AI tooling?
    Generated-by: Claude Code (Opus 4.7)
---
 .asf.yaml | 4 ----
 1 file changed, 4 deletions(-)

diff --git a/.asf.yaml b/.asf.yaml
index d26c2d4dbe..80d0c2981f 100644
--- a/.asf.yaml
+++ b/.asf.yaml
@@ -107,10 +107,6 @@ github:
                 integration_id: -1
               - context: Validate PR title
                 integration_id: -1
-      bypass_actors:
-        - actor_id: 4
-          actor_type: RepositoryRole
-          bypass_mode: always
 
 notifications:
   commits:              [email protected]

Reply via email to