bito-code-review[bot] commented on PR #43844:
URL: https://github.com/apache/superset/pull/43844#issuecomment-5534270715

   <!-- Bito Reply -->
   The flagged issue is correct. The `pull_request` event in GitHub Actions 
does not trigger for `ready_for_review` by default, meaning a draft PR 
converted to ready might bypass this check if it doesn't trigger other events. 
To resolve this, you should add `ready_for_review` to the `types` list under 
the `pull_request` trigger in `.github/workflows/asf-allowlist-check.yml`.
   
   ```yaml
     pull_request:
       types:
         - opened
         - synchronize
         - ready_for_review
       paths:
         - ".github/**"
   ```
   
   I have checked the PR comments, and there are no other comments to address. 
Would you like me to implement this change for you?
   
   **.github/workflows/asf-allowlist-check.yml**
   ```
   pull_request:
       types:
         - opened
         - synchronize
         - ready_for_review
       paths:
         - ".github/**"
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to