Skip to content

Bump wp-cli/wp-cli-tests from 5.0.7 to 5.0.8 #12

Bump wp-cli/wp-cli-tests from 5.0.7 to 5.0.8

Bump wp-cli/wp-cli-tests from 5.0.7 to 5.0.8 #12

Workflow file for this run

---
name: Issue and PR Triage
'on':
issues:
types: [opened]
pull_request_target:
types: [opened]
workflow_dispatch:
inputs:
issue_number:
description: 'Issue/PR number to triage (leave empty to process all)'
required: false
type: string
jobs:
issue-triage:
uses: wp-cli/.github/.github/workflows/reusable-issue-triage.yml@main
with:
issue_number: >-
${{
(github.event_name == 'workflow_dispatch' && inputs.issue_number) ||
(github.event_name == 'pull_request_target' && github.event.pull_request.number) ||
(github.event_name == 'issues' && github.event.issue.number) ||
''
}}