[GH-2964] Remove first-interaction workflow#2965
Merged
jbampton merged 1 commit intoMay 18, 2026
Merged
Conversation
The first-interaction workflow has been failing on every first-time fork-PR with HTTP 403 "Resource not accessible by integration", because PRs opened from forks get a read-only GITHUB_TOKEN regardless of the workflow's declared permissions. The welcome-comment has never actually worked for its intended audience while consistently producing a red check on those PRs.
jbampton
approved these changes
May 18, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Did you read the Contributor Guide?
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:
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 forcesGITHUB_TOKENto read-only regardless of the workflow's declaredpermissions:block. The job log confirms — it declaresissues: write, pull-requests: writebut the runner reportsIssues: 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?