Conversation
juanfont
requested review from
kradalby,
nblock and
ohdearaugustin
as code owners
July 17, 2026 08:40
Comment on lines
+13
to
+36
| runs-on: ubuntu-latest | ||
| steps: | ||
| - uses: actions/create-github-app-token@1b10c78c7865c340bc4f6099eb2f838309f1e8c3 # v3.1.1 | ||
| id: app-token | ||
| with: | ||
| app-id: ${{ secrets.VOUCH_APP_ID }} | ||
| private-key: ${{ secrets.VOUCH_APP_PRIVATE_KEY }} | ||
|
|
||
| - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 | ||
| with: | ||
| token: ${{ steps.app-token.outputs.token }} | ||
|
|
||
| - uses: mitchellh/vouch/action/manage-by-issue@d66fa29a64600490892131ad87597c30c91fcac4 # v1.5.0 | ||
| with: | ||
| repo: ${{ github.repository }} | ||
| issue-id: ${{ github.event.issue.number }} | ||
| comment-id: ${{ github.event.comment.id }} | ||
| vouch-keyword: "!vouch" | ||
| denounce-keyword: "!denounce" | ||
| unvouch-keyword: "!unvouch" | ||
| pull-request: "true" | ||
| merge-immediately: "true" | ||
| env: | ||
| GITHUB_TOKEN: ${{ steps.app-token.outputs.token }} No newline at end of file |
Comment on lines
+14
to
+32
| runs-on: ubuntu-latest | ||
| steps: | ||
| - uses: actions/create-github-app-token@1b10c78c7865c340bc4f6099eb2f838309f1e8c3 # v3.1.1 | ||
| id: app-token | ||
| with: | ||
| app-id: ${{ secrets.VOUCH_APP_ID }} | ||
| private-key: ${{ secrets.VOUCH_APP_PRIVATE_KEY }} | ||
|
|
||
| - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 | ||
| with: | ||
| token: ${{ steps.app-token.outputs.token }} | ||
|
|
||
| - uses: mitchellh/vouch/action/sync-codeowners@d66fa29a64600490892131ad87597c30c91fcac4 # v1.5.0 | ||
| with: | ||
| repo: ${{ github.repository }} | ||
| pull-request: "true" | ||
| merge-immediately: "true" | ||
| env: | ||
| GITHUB_TOKEN: ${{ steps.app-token.outputs.token }} No newline at end of file |
kradalby
reviewed
Jul 17, 2026
| auto-close: true | ||
| template-file: .github/pr-unvouched-message | ||
| env: | ||
| GITHUB_TOKEN: ${{ steps.app-token.outputs.token }} No newline at end of file |
Collaborator
There was a problem hiding this comment.
Need to run prettier formatter on all files.
Comment on lines
+14
to
+18
| - uses: actions/create-github-app-token@1b10c78c7865c340bc4f6099eb2f838309f1e8c3 # v3.1.1 | ||
| id: app-token | ||
| with: | ||
| app-id: ${{ secrets.VOUCH_APP_ID }} | ||
| private-key: ${{ secrets.VOUCH_APP_PRIVATE_KEY }} |
Collaborator
There was a problem hiding this comment.
This step isnt needed, see secrets comment
| auto-close: true | ||
| template-file: .github/pr-unvouched-message | ||
| env: | ||
| GITHUB_TOKEN: ${{ steps.app-token.outputs.token }} No newline at end of file |
Collaborator
There was a problem hiding this comment.
This already exists GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}, I think that will be correct. Needs to be on all
kradalby
reviewed
Jul 29, 2026
| vsychov | ||
| yaneony | ||
| yaroslavkasatikov | ||
| Zottelchen No newline at end of file |
Collaborator
There was a problem hiding this comment.
Suggested change
| Zottelchen | |
| Zottelchen | |
| iSerganov | |
| arpitjain099 | |
| fredrikekre |
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.
PRs keep arriving without the prior discussion CONTRIBUTING.md asks
for. We are not able to review or triage PRs fast enough, specially now that everyone has super human code generation capabilities.
Adopt mitchellh/vouch to
auto-close PRs from authors not on .github/VOUCHED.td. Issues stay
open to everyone — the close message points contributors back at
CONTRIBUTING.md to start that discussion.
Less aggressive than ghostty, which gates issues too.
Seed list is past PR contributors with merged code plus authors of
detailed issues; bots and CODEOWNERS are auto-vouched. Anyone with an
open PR that hasn't been through review yet was left off — !vouch
later if it lands.
!vouch @user / !denounce @user / !unvouch @user on any issue or PR
comment from a maintainer manages the list. Weekly cron resyncs
CODEOWNERS.
Workflows need a GitHub App with Contents/Issues/PRs write installed on
the repo, plus VOUCH_APP_ID and VOUCH_APP_PRIVATE_KEY secrets. Until
those exist nothing is gated (fail-open).