2024-02-19 22:24:14 +00:00
|
|
|
name: "Issue Labeler"
|
|
|
|
on:
|
|
|
|
issues:
|
|
|
|
types: [opened, edited]
|
|
|
|
|
|
|
|
permissions:
|
|
|
|
issues: write
|
|
|
|
contents: read
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
triage:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: github/issue-labeler@v3.4
|
|
|
|
with:
|
|
|
|
configuration-path: .github/labeler.yml
|
|
|
|
enable-versioned-regex: 0
|
|
|
|
include-title: 1
|
2024-02-20 07:26:09 +00:00
|
|
|
repo-token: ${{ secrets.GITHUB_TOKEN }}
|