mysql/.github/workflows/auto-triage-issues

24 строки
618 B
Plaintext
Исходник Обычный вид История

2021-07-19 14:54:51 +03:00
#This workflow is used for automatically labelling the respository issues to the nearest possible labels from enhancement,bug, documentation.
2021-07-19 14:50:49 +03:00
name: "Auto-Labelling Issues"
on:
issues:
types: [opened, edited]
jobs:
auto_label:
runs-on: ubuntu-latest
name: Auto-Labelling Issues
steps:
- name: Label Step
uses: larrylawl/Auto-Github-Issue-Labeller@v1.0
with:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
REPOSITORY: ${{github.repository}}
DELTA: "7"
CONFIDENCE: "2"
FEATURE: "enhancement"
BUG: "bug"
DOCS: "documentation"