Skip to content

chore(deps): bump mitchellh/vouch from 5713ce1baedf75e2f830afa3dac813a9c48bff12 to 0e11a71bba23218a284d3ecca162e75a110fd7e3 #3

chore(deps): bump mitchellh/vouch from 5713ce1baedf75e2f830afa3dac813a9c48bff12 to 0e11a71bba23218a284d3ecca162e75a110fd7e3

chore(deps): bump mitchellh/vouch from 5713ce1baedf75e2f830afa3dac813a9c48bff12 to 0e11a71bba23218a284d3ecca162e75a110fd7e3 #3

Workflow file for this run

name: vouch-check-pr
on:
pull_request_target:
types:
- opened
- reopened
permissions:
contents: read
jobs:
check:
runs-on: ubuntu-latest
permissions:
contents: read
pull-requests: write
steps:
- name: Enforce vouch trust gate on PR author
# require-vouch=true: unvouched users are treated as blocked.
# auto-close=true: blocked PRs are automatically closed.
uses: mitchellh/vouch/action/check-pr@0e11a71bba23218a284d3ecca162e75a110fd7e3
with:
pr-number: ${{ github.event.pull_request.number }}
vouched-file: .github/VOUCHED.td
require-vouch: "true"
auto-close: "true"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}