ci: filter daily recaps to community-only and fix vouch workflow authentication (#12910)

This commit is contained in:
Ryan Vogel
2026-02-09 22:29:18 -05:00
committed by GitHub
parent 949f61075f
commit 20cf3fc679
3 changed files with 25 additions and 7 deletions

View File

@@ -18,10 +18,20 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
persist-credentials: false
fetch-depth: 0
- name: Setup git committer
id: committer
uses: ./.github/actions/setup-git-committer
with:
opencode-app-id: ${{ vars.OPENCODE_APP_ID }}
opencode-app-secret: ${{ secrets.OPENCODE_APP_SECRET }}
- uses: mitchellh/vouch/action/manage-by-issue@main
with:
issue-id: ${{ github.event.issue.number }}
comment-id: ${{ github.event.comment.id }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GITHUB_TOKEN: ${{ steps.committer.outputs.token }}