Skip to content

Feature: Add label checking workflow #9

Feature: Add label checking workflow

Feature: Add label checking workflow #9

---
name: Label Checker
on:
pull_request:
types:
- opened
- synchronize
- reopened
- labeled
- unlabeled
branches:
- develop
jobs:
check_labels:
if: github.event.pull_request.draft == false
name: Check labels
runs-on: ubuntu-latest
steps:
- uses: docker://agilepathway/pull-request-label-checker:latest
with:
any_of: ATS approved,No approval needed
none_of: invalid,wontfix,duplicate,question
repo_token: ${{ secrets.GITHUB_TOKEN }}