Update docs #44
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
# This workflow will | |
# - verify that a PR has a known label before it can be merged. | |
# | |
# A label is needed for the release-drafter workflow to generate the notes. | |
name: Verify PR labels | |
on: | |
pull_request_target: | |
types: [opened, labeled, unlabeled, synchronize] | |
jobs: | |
check_pr_labels: | |
runs-on: ubuntu-latest | |
name: Verify that the PR has a valid label | |
steps: | |
- name: Verify PR label action | |
uses: jesusvasquez333/[email protected] | |
id: verify-pr-label | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
valid-labels: chore, fix, bugfix, bug, enhancement, feature, dependencies, documentation | |
pull-request-number: ${{ github.event.pull_request.number }} | |
disable-reviews: false |