Files
ghostty/.github/workflows/vouch-check-pr.yml
Mitchell Hashimoto ef9431b55c ci: update vouch to 1.3, create PRs instead of pushing to main
This will let us re-enable our main branch protection rules. :)
2026-02-15 14:43:02 -08:00

21 lines
470 B
YAML

on:
pull_request_target:
types: [opened, reopened]
name: "Vouch - Check PR"
permissions:
contents: read
pull-requests: write
jobs:
check:
runs-on: namespace-profile-ghostty-xsm
steps:
- uses: mitchellh/vouch/action/check-pr@0e11a71bba23218a284d3ecca162e75a110fd7e3 # v1.3.0
with:
pr-number: ${{ github.event.pull_request.number }}
auto-close: true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}