felipepessoto commented on PR #12855: URL: https://github.com/apache/gluten/pull/12855#issuecomment-5406293684
Yes. I revised this PR so the Apache workflow no longer attempts to create a PR; it only publishes the validated deletion-only artifact. The publisher is now configured in my fork: https://github.com/felipepessoto/gluten/blob/main/.github/workflows/delta_known_failures_publisher.yml It does not duplicate the expensive Delta suite. It polls Apache's latest scheduled `main` run and proceeds only when that run is: - scheduled (never a PR/manual run), - completed successfully, - less than 36 hours old, and - carrying the deletion-only artifact produced by this PR. It independently rejects additions and comment/header removals, keeps one fixed fork branch and one upstream PR, skips unchanged output, and closes a stale open PR if the latest successful run has no removals. Two staggered schedules provide a same-day attempt plus a previous-run fallback without repeatedly updating an unchanged PR. The fork is intentionally configured to allow only local workflows, so the publisher uses a read-only `git fetch` rather than third-party actions. Its missing-credential path was also verified as a successful no-op: https://github.com/felipepessoto/gluten/actions/runs/32815741328 The remaining operational step is adding a dedicated `UPSTREAM_PR_TOKEN` secret to the fork; the fork's `GITHUB_TOKEN` can push the update branch but cannot open a PR in `apache/gluten`. -- 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]
