Skip to content

Bump crate-ci/typos from 1.47.0 to 1.47.2 #15238

Bump crate-ci/typos from 1.47.0 to 1.47.2

Bump crate-ci/typos from 1.47.0 to 1.47.2 #15238

Workflow file for this run

name: Pull Request Validation
on:
pull_request:
branches:
- trunk
- 'release/**'
- 'feature/**'
types:
- labeled
- unlabeled
- milestoned
- demilestoned
- opened
- reopened
- synchronize
- edited
env:
LABELS: ${{ join( github.event.pull_request.labels.*.name, ' ' ) }}
# Disable permissions for all available scopes by default.
# Any needed permissions should be configured at the job level.
permissions: {}
jobs:
check-type-label:
name: Check [Type] Label
runs-on: ubuntu-latest
timeout-minutes: 10
permissions: {}
steps:
- if: contains( env.LABELS, '[Type]' ) == false
run: exit 1
check-milestone:
name: Check Milestone
runs-on: ubuntu-latest
timeout-minutes: 10
permissions: {}
steps:
- if: github.event.pull_request.milestone == null && contains( env.LABELS, 'no milestone' ) == false
run: exit 1