build(deps): bump github.com/hashicorp/terraform-plugin-docs from 0.19.2 to 0.19.3 #111
This file contains 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
# If someone with write access comments "/ok-to-test sha=<sha>" on a pull request, emit a repository_dispatch event | |
name: Ok To Test | |
on: | |
issue_comment: | |
types: [created] | |
jobs: | |
ok-to-test: | |
runs-on: ubuntu-latest | |
if: ${{ github.event.issue.pull_request }} # ignore issue comments | |
steps: | |
- name: Trigger test run for forked PR | |
uses: peter-evans/slash-command-dispatch@v3 | |
with: | |
token: ${{ secrets.OK_TO_TEST_DISPATCH_TOKEN }} | |
reaction-token: ${{ secrets.GITHUB_TOKEN }} | |
issue-type: pull-request | |
commands: ok-to-test | |
permission: write |