Skip to content

Bump the lint group across 1 directory with 2 updates #64

Bump the lint group across 1 directory with 2 updates

Bump the lint group across 1 directory with 2 updates #64

Workflow file for this run

# Workflow to ensure pull request has proper labels
name: Ensure labels
on:
pull_request:
branches:
- main
types:
- opened
- reopened
- synchronize
- ready_for_review
- labeled
- unlabeled
jobs:
ensure_labels:
name: Ensure PR has proper labeling
runs-on: ubuntu-latest
steps:
- name: Check on of required labels are set
uses: docker://agilepathway/pull-request-label-checker:v1.1.2
with:
one_of: major,minor,patch,skip-release # Must have exactly-one of these labels
repo_token: ${{ secrets.GITHUB_TOKEN }}