Confirm statuses:write is the correct minimum permission for super-linter (not checks:write)#540
Merged
Merged
Conversation
…per-linter Agent-Logs-Url: https://github.com/nietras/Sep/sessions/d7be619f-5606-4be4-827c-8474d6f4b40d Co-authored-by: nietras <10798831+nietras@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Update Super-Linter job permissions to minimum required
Confirm statuses:write is the correct minimum permission for super-linter (not checks:write)
May 3, 2026
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #540 +/- ##
==========================================
+ Coverage 99.58% 99.64% +0.06%
==========================================
Files 57 57
Lines 4815 4815
Branches 540 540
==========================================
+ Hits 4795 4798 +3
Misses 14 14
+ Partials 6 3 -3
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
github-actions Bot
pushed a commit
to Stella-sea/ryujinx-admin
that referenced
this pull request
May 15, 2026
This PR contains the following updates: | Package | Change | [Age](https://docs.renovatebot.com/merge-confidence/) | [Confidence](https://docs.renovatebot.com/merge-confidence/) | |---|---|---|---| | [Sep](https://github.com/nietras/Sep) | `0.13.0` → `0.14.1` |  |  | --- ### Release Notes <details> <summary>nietras/Sep (Sep)</summary> ### [`v0.14.1`](https://github.com/nietras/Sep/releases/tag/v0.14.1): 0.14.1 #### What's Changed - Improve SepReaderOptions.Unescape/.Trim comments by [@​nietras](https://github.com/nietras) in [#​542](nietras/Sep#542) - Improve SepReader/WriterExtensions.Strict() comments by [@​nietras](https://github.com/nietras) in [#​543](nietras/Sep#543) **Full Changelog**: <nietras/Sep@v0.14.0...v0.14.1> ### [`v0.14.0`](https://github.com/nietras/Sep/releases/tag/v0.14.0): 0.14.0 #### What's Changed - Add `leaveOpen` overloads for SepReaderOptions.From\* via SepTextReaderDisposers by [@​Copilot](https://github.com/Copilot) in [#​530](nietras/Sep#530) - Bump MSTest from 4.2.1 to 4.2.2 by [@​dependabot](https://github.com/dependabot)\[bot] in [#​533](nietras/Sep#533) - Bump github/codeql-action from 4.35.2 to 4.35.3 by [@​dependabot](https://github.com/dependabot)\[bot] in [#​532](nietras/Sep#532) - Bump step-security/harden-runner from 2.19.0 to 2.19.1 by [@​dependabot](https://github.com/dependabot)\[bot] in [#​531](nietras/Sep#531) - Confirm statuses:write is the correct minimum permission for super-linter (not checks:write) by [@​Copilot](https://github.com/Copilot) in [#​540](nietras/Sep#540) **Full Changelog**: <nietras/Sep@v0.13.0...v0.14.0> </details> --- ### Configuration 📅 **Schedule**: (UTC) - Branch creation - At any time (no schedule defined) - Automerge - At any time (no schedule defined) 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My4xNzguMCIsInVwZGF0ZWRJblZlciI6IjQzLjE3OC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbXX0=--> Reviewed-on: https://git.ryujinx.app/projects/Ryubing/pulls/98
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.
The question was whether
statuses: writecould be replaced withchecks: writeas the minimum job permission for Super-Linter.Inspecting the v8.6.0 source directly:
lib/linter.shconstructsGITHUB_STATUS_URLas/repos/{owner}/{repo}/statuses/{sha}andlib/functions/output.shposts to it viaCreateGitHubCommitStatus. This is the Commit Statuses API — Super-Linter never touches the Checks API.statuses: write— required; keeps the existing permission unchangedchecks: write— would be insufficient; Super-Linter doesn't use the Checks APIUpdated the comment on
statuses: writeto document this so future readers don't repeat the investigation:Original prompt
This pull request was created from Copilot chat.