chore(deps): bump mitchellh/vouch from 1.3.1 to 1.4.2 #6
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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@c6d80ead49839655b61b422700b7a3bc9d0804a9 | |
| 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 }} |