Skip to content

build_test

build_test #1

Workflow file for this run

name: Check labels not applied
on:
pull_request:
types:
- opened
- labeled
- unlabeled
- synchronize
workflow_call:
inputs:
build-test:
required: true
type: boolean
deault: false

Check failure on line 15 in .github/workflows/check-labels.yml

View workflow run for this annotation

GitHub Actions / Check labels not applied

Invalid workflow file

The workflow is not valid. .github/workflows/check-labels.yml (Line: 15, Col: 9): Unexpected value 'deault'
jobs:
check-needs-triage-not-applied:
runs-on: ubuntu-latest
steps:
- name: Fail if needs-triage label applied
if: ${{ contains(github.event.pull_request.labels.*.name, 'needs-triage')}}
run: exit 1