This is a temporary commit while we transfer over existing issues from older repositories that don't follow the labeling conventions.
20 lines
457 B
YAML
20 lines
457 B
YAML
name: Issue Labeler
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
issues:
|
|
types: [opened, edited]
|
|
|
|
jobs:
|
|
triage:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: github/issue-labeler@v3.1
|
|
with:
|
|
repo-token: "${{ secrets.GITHUB_TOKEN }}"
|
|
configuration-path: .github/issue-labeler.yml
|
|
enable-versioned-regex: 0
|
|
include-title: 1
|
|
sync-labels: 0
|
|
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json
|