Adds user step for required property required_providers
in TF Recipes author guide
#1072
Workflow file for this run
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
name: PR Checks | |
on: | |
pull_request: | |
types: [opened, reopened, synchronize, labeled, unlabeled] | |
jobs: | |
check-do-not-merge-tag: | |
name: Check for do-not-merge tag | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check for do-not-merge label | |
uses: mheap/github-action-required-labels@v5 | |
with: | |
labels: "do-not-merge" | |
mode: exactly | |
count: 0 |