Skip to content

Scanning Yellowstone crashes with "AttributeError: 'list' object has no attribute 'items' #716

Scanning Yellowstone crashes with "AttributeError: 'list' object has no attribute 'items'

Scanning Yellowstone crashes with "AttributeError: 'list' object has no attribute 'items' #716

Workflow file for this run

name: Labeler
on:
issues:
types: [opened]
jobs:
apply-triage-label:
if: github.event_name == 'issues'
runs-on: ubuntu-latest
steps:
- uses: actions/github-script@v6
with:
script: |
github.rest.issues.addLabels({
issue_number: context.issue.number,
owner: context.repo.owner,
repo: context.repo.repo,
labels: ['triage']
})