rzo1 opened a new pull request, #8887: URL: https://github.com/apache/storm/pull/8887
The `asf-allowlist-check` workflow had a `paths: [".github/**"]` filter on its `pull_request` trigger, so it only ran when a PR touched `.github/**`. Since `asf-allowlist-check` is configured as a **required** status check in `.asf.yaml`, every PR that does *not* touch `.github/**` stayed in the `Expected — waiting for status` state and could never be merged (`mergeStateStatus: BLOCKED`), even with all other builds green. This drops the `paths` filter on the `pull_request` trigger (mirroring the working setup in [apache/opennlp](https://github.com/apache/opennlp/blob/main/.github/workflows/allowlist-check.yml)) so the check runs and reports a status on **every** PR. The `push` trigger keeps its `paths` filter since branch pushes only need re-validation when workflows change. No functional change to what the check validates. -- 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]
