Skip to content

Merge 2.6.0 release back into trunk #3670

Merge 2.6.0 release back into trunk

Merge 2.6.0 release back into trunk #3670

Workflow file for this run

name: Pull Request Validation
on:
pull_request:
branches:
- trunk
- 'release/**'
- 'feature/**'
types:
- labeled
- unlabeled
- opened
- reopened
- synchronize
- edited
env:
LABELS: ${{ join( github.event.pull_request.labels.*.name, ' ' ) }}
jobs:
check-type-label:
name: Check [Type] Label
runs-on: ubuntu-latest
steps:
- if: contains( env.LABELS, '[Type]' ) == false
run: exit 1
check-focus-label:
name: Check [Focus] Label
runs-on: ubuntu-latest
steps:
- if: contains( env.LABELS, '[Focus]' ) == false && contains( env.LABELS, 'Infrastructure' ) == false
run: exit 1
check-milestone:
name: Check Milestone
runs-on: ubuntu-latest
steps:
- if: github.event.pull_request.milestone == null && contains( env.LABELS, 'no milestone' ) == false
run: exit 1