Skip to content

build_test

build_test #1

Workflow file for this run

name: Verify Linked Issue
on:
pull_request:
types:
- opened
- reopened
- edited
- synchronize
workflow_call:
inputs:
build-test:
required: true
type: boolean
deault: false

Check failure on line 15 in .github/workflows/linked-issue.yml

View workflow run for this annotation

GitHub Actions / Verify Linked Issue

Invalid workflow file

The workflow is not valid. .github/workflows/linked-issue.yml (Line: 15, Col: 9): Unexpected value 'deault'
jobs:
verify-linked-issue:
runs-on: ubuntu-latest
if: github.actor != 'dependabot[bot]' && github.actor != 'dependabot-preview[bot]'
name: Verify Pull Request references Issue
steps:
- uses: Codeinwp/verify-linked-issue-action@6da9af91d78847c7ea264083a64eab3271b4369f
id: verify_issue_reference
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Report no referenced issue
if: steps.verify_issue_reference.outputs.has_linked_issues != 'true'
run: exit 1;