Skip to content

Commit c060c48

Browse files
Merge pull request #19 from Azure/BALAGA-GAYATRI-patch-2
Create auto-triage-issues
2 parents ee7dcc8 + 9140791 commit c060c48

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

.github/workflows/auto-triage-issues

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
#This workflow is used for automatically labelling the respository issues to the nearest possible labels from enhancement,bug, documentation.
2+
3+
name: "Auto-Labelling Issues"
4+
on:
5+
issues:
6+
types: [opened, edited]
7+
8+
jobs:
9+
auto_label:
10+
runs-on: ubuntu-latest
11+
name: Auto-Labelling Issues
12+
steps:
13+
- name: Label Step
14+
uses: larrylawl/[email protected]
15+
with:
16+
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
17+
REPOSITORY: ${{github.repository}}
18+
DELTA: "7"
19+
CONFIDENCE: "2"
20+
FEATURE: "enhancement"
21+
BUG: "bug"
22+
DOCS: "documentation"
23+

0 commit comments

Comments
 (0)