Skip to content

Support accessing sandbox-internal services from the host machine #208

Support accessing sandbox-internal services from the host machine

Support accessing sandbox-internal services from the host machine #208

Workflow file for this run

name: issue-labeler
on:
issues:
types: [ opened ]
jobs:
label-component:
runs-on: ubuntu-latest
permissions:
# required to set labels on issues
issues: write
# only required for workflows in private repositories
actions: read
contents: read
steps:
- name: Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Parse issue form
uses: stefanbuck/github-issue-parser@2ea9b35a8c584529ed00891a8f7e41dc46d0441e # v3.2.1
id: issue-parser
with:
template-path: .github/ISSUE_TEMPLATE/bug.yml
- name: Set labels based on platform field
uses: redhat-plumbers-in-action/advanced-issue-labeler@39087a4b30cb98d57f25f34d617a6af8163c17d9 # v3.2.1
with:
issue-form: ${{ steps.issue-parser.outputs.jsonString }}
token: ${{ secrets.GITHUB_TOKEN }}
config-path: .github/advanced-issue-labeler.yml
template: bug.yml