Skip to content

Commit

Permalink
added auto labeling
Browse files Browse the repository at this point in the history
  • Loading branch information
shairez committed Aug 21, 2024
1 parent ea55b87 commit 51e7f6f
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/auto-label-new-issues.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Auto Label New Issues

on:
issues:
types:
- opened

jobs:
add-label:
runs-on: ubuntu-latest

steps:
- name: Label the new issue
uses: actions-ecosystem/action-add-labels@v1
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
labels: |
[STAGE-2] incomplete implementation
[STAGE-2] not fully covered by tests yet
[STAGE-2] unresolved discussions left

0 comments on commit 51e7f6f

Please sign in to comment.