Files
ghostty/.github/workflows/vouch-check-issue.yml
2026-02-23 19:49:30 -08:00

23 lines
653 B
YAML

on:
issues:
types: [opened, reopened]
name: "Vouch - Check Issue"
jobs:
check:
runs-on: namespace-profile-ghostty-xsm
steps:
- uses: actions/create-github-app-token@29824e69f54612133e76f7eaac726eef6c875baf # v2.2.1
id: app-token
with:
app-id: ${{ secrets.VOUCH_APP_ID }}
private-key: ${{ secrets.VOUCH_APP_PRIVATE_KEY }}
- uses: mitchellh/vouch/action/check-issue@0a63681ac1791b66359e8ccf29eabdd40bdf18e0 # v1.4.1
with:
issue-number: ${{ github.event.issue.number }}
auto-close: true
env:
GITHUB_TOKEN: ${{ steps.app-token.outputs.token }}