Skip to content

The icon is not displayed and report "An unhandled error has occured" when trigger any function. #155

The icon is not displayed and report "An unhandled error has occured" when trigger any function.

The icon is not displayed and report "An unhandled error has occured" when trigger any function. #155

Workflow file for this run

name: Issue labeler
on:
issues:
types: [opened]
permissions:
contents: read
jobs:
label-component:
runs-on: ubuntu-latest
timeout-minutes: 30
permissions:
issues: write
strategy:
matrix:
template: [bug_report.yml]
steps:
- uses: actions/checkout@v3
- name: Parse issue form
uses: stefanbuck/github-issue-parser@v3
id: issue-parser
with:
template-path: .github/ISSUE_TEMPLATE/${{ matrix.template }}
- name: Set labels based on component field
uses: redhat-plumbers-in-action/advanced-issue-labeler@v3
with:
issue-form: ${{ steps.issue-parser.outputs.jsonString }}
template: ${{ matrix.template }}
token: ${{ secrets.GITHUB_TOKEN }}