fix(label): tolerate forbidden fork label writes - #264
Merged
Conversation
Treat GitHub's fork-token label write denial as a non-failing skip so type-label automation does not create red checks on contributor PRs. Keep other label API errors fatal and add regression coverage for both the 403 integration denial and normal write failures. Validation: - node --check scripts/github-type-label.mjs - npm run test -- test/unit/github-type-label.test.ts - npm run actionlint - npm run test:ci
Deploying with
|
| Status | Name | Latest Commit | Preview URL | Updated (UTC) |
|---|---|---|---|---|
| ✅ Deployment successful! View logs |
gittensory-ui | c932025 | Commit Preview URL Branch Preview URL |
Jun 02 2026, 07:16 AM |
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.
Summary
Resource not accessible by integrationWhat changed
scripts/github-type-label.mjsnow treats the specific GitHub 403 integration-denial response as a non-failing skiptest/unit/github-type-label.test.tscovers the PR feat(mcp): add multi-account profile support #263-style 403 and verifies unrelated write errors still throwWhy
Apply type labelcheck even when the classifier is correct and the workflow is otherwise safeentrius/gittensoravoids write-on-fork risk by splitting same-repo and fork PR jobs;e35ventura/taopedia-articlesavoids PR label mutation and keeps PR workflows read-only, so this patch keeps Gittensory's deterministic labeler but makes the denied write path non-disruptiveValidation
node --check scripts/github-type-label.mjsnpm run test -- test/unit/github-type-label.test.tsnpm run actionlintnpm run test:ciNotes