jiayuasu opened a new pull request, #2965: URL: https://github.com/apache/sedona/pull/2965
## Did you read the Contributor Guide? - [x] Yes, I have read the [Contributor Rules](https://sedona.apache.org/latest/community/rule/) and [Develop Guide](https://sedona.apache.org/latest/community/develop/) ## Is there any related issue? Closes #2964 ## What changes were proposed in this PR? Removes `.github/workflows/first-interaction.yml`. ## Why are the changes needed? The workflow has been failing on every first-time fork-PR with: ``` HttpError: Resource not accessible by integration status: 403 url: https://api.github.com/repos/apache/sedona/issues/<n>/comments ``` Example failure: https://github.com/apache/sedona/actions/runs/25948092616/job/76280307240?pr=2959 Root cause: the workflow triggers on `pull_request`. For PRs from forks, GitHub forces `GITHUB_TOKEN` to read-only regardless of the workflow's declared `permissions:` block. The job log confirms — it declares `issues: write, pull-requests: write` but the runner reports `Issues: read, PullRequests: read`, so the comment POST returns 403. Net effect: the welcome comment has never worked for the audience it was meant for (first-time external contributors), and the workflow has been adding a red ❌ to every such PR. Removing it is the simplest fix. See #2964 for more discussion. ## How was this patch tested? N/A — workflow file removal only. ## Did this PR include necessary documentation updates? - [x] No, this PR does not affect any public API so no need to change the documentation. -- 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]
