Skip to content

Commit

Permalink
Merge pull request #1386 from Vyxal/issue-labeling
Browse files Browse the repository at this point in the history
Add issue autolabeling
  • Loading branch information
Steffan153 committed Aug 11, 2022
2 parents f2f6d96 + 088d65d commit 771b9d6
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/labeler.yml
@@ -0,0 +1,12 @@
enhancement:
- '\\badd\\b'
element request:
- 'add element'
bug:
- 'useless'
- "doesn't work"
- "not working"
- "error"
- "buggy"
online interpreter:
- "online interpreter"
15 changes: 15 additions & 0 deletions .github/workflows/labeler.yml
@@ -0,0 +1,15 @@
name: "Issue Labeler"
on:
issues:
types: [opened, edited]

jobs:
triage:
runs-on: ubuntu-latest
steps:
- uses: github/issue-labeler@v2.0
with:
repo-token: "${{ secrets.GITHUB_TOKEN }}"
configuration-path: .github/labeler.yml
not-before: 2022-08-07T00:00:00Z
enable-versioned-regex: 0

0 comments on commit 771b9d6

Please sign in to comment.