Skip to content

chore(deps): bump mitchellh/vouch from 1.3.0 to 1.3.1 #4

chore(deps): bump mitchellh/vouch from 1.3.0 to 1.3.1

chore(deps): bump mitchellh/vouch from 1.3.0 to 1.3.1 #4

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@6803dde571265e13489c3f118200f60b6ab59e4d
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 }}