Skip to content

21.1.12.1 has a new problem #10

21.1.12.1 has a new problem

21.1.12.1 has a new problem #10

Workflow file for this run

name: Label Issues
on:
issues:
types: [ opened ]
jobs:
label-component:
runs-on: ubuntu-latest
permissions:
contents: read
issues: write
strategy:
matrix:
template: [ report-a-bug.yml ]
steps:
- uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633
- name: Parse issue form
uses: TwelveIterations/github-issue-parser@31002363586b06c42d69c874b03f6a839e9c53ba
id: issue-parser
with:
template-path: https://raw.githubusercontent.com/TwelveIterations/.github/refs/heads/main/.github/ISSUE_TEMPLATE/${{ matrix.template }}
- name: Set labels based on component field
uses: redhat-plumbers-in-action/advanced-issue-labeler@d498805e5c7c0658e336948b3363480bcfd68da6
with:
issue-form: ${{ steps.issue-parser.outputs.jsonString }}
template: ${{ matrix.template }}
token: ${{ secrets.GITHUB_TOKEN }}