Skip to content

201 move reporting to the lib #230

201 move reporting to the lib

201 move reporting to the lib #230

# This workflow will
# - verify that a PR has a known label before it can be merged.
#
# A PR is enforced to have one of the labels listed in the valid-labels input.
#
# For more information see: https://github.com/marketplace/actions/release-drafter
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/verify-pr-label-action@v1.4.0
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