Skip to content

110037: add workflows and readme for publishing releases #2

110037: add workflows and readme for publishing releases

110037: add workflows and readme for publishing releases #2

Workflow file for this run

name: Label Checker
on:
pull_request:
types:
- opened
- synchronize
- reopened
- labeled
- unlabeled
jobs:
check_labels:
name: Check labels
runs-on: ubuntu-latest
steps:
- uses: docker://agilepathway/pull-request-label-checker:latest
with:
# At least one of the labels listed below must be present on the PR for the check to pass
any_of: breaking change,enhancement,bugfix,version bump,release,chore,documentation
repo_token: ${{ secrets.GITHUB_TOKEN }}