Skip to content

Initial IAuthenticationContext abstraction #296

Initial IAuthenticationContext abstraction

Initial IAuthenticationContext abstraction #296

name: "Label Check"
on:
pull_request:
types: [opened, edited, labeled, unlabeled, synchronize]
jobs:
check-label:
runs-on: ubuntu-latest
steps:
- name: Check labels
uses: actions/github-script@v7
with:
script: |
const labels = context.payload.pull_request.labels;
const releaseLabels = ["ignore-for-release", "breaking-change", "feature", "bugfix", "dependency"];
if(!releaseLabels.some(r=>labels.some(l=>l.name == r))){
core.setFailed(`The PR must have at least one of these labels: ${releaseLabels}`)
}