Skip to content

Analyser: analysis:mixed-argument false positive: first operand of || is widened to mixed after a $this method call #626

Analyser: analysis:mixed-argument false positive: first operand of || is widened to mixed after a $this method call

Analyser: analysis:mixed-argument false positive: first operand of || is widened to mixed after a $this method call #626

Workflow file for this run

name: Triage
on:
issues:
types: [opened]
jobs:
label:
runs-on: ubuntu-latest
permissions:
contents: read
issues: write
steps:
- name: Add needs-triage label
if: ${{ !contains(github.event.issue.labels.*.name, 'needs-triage') }}
uses: actions/github-script@v7
with:
script: |
await github.rest.issues.addLabels({
owner: context.repo.owner,
repo: context.repo.repo,
issue_number: context.issue.number,
labels: ['needs-triage']
});