You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Oct 8, 2022. It is now read-only.
Labels issues when they land in a repo with the `needs-triage` label.
1
+
Automatically labels issues, by adding new labels to the issue. You define the labels you'd like to add to your issues in the YAML file.
2
2
3
-
This is probably going to get a bit more sophisticated to meet all our needs but will do for the moment.
3
+
To add it to your workflow:
4
+
5
+
```
6
+
- uses: andymckay/labeler@1.0.0
7
+
with:
8
+
repo-token: "${{ secrets.GITHUB_TOKEN }}"
9
+
labels: "needs-triage, bug"
10
+
```
11
+
12
+
This adds the `needs-triage` and `bug` issues to the issue. The most common approach is to do this when issues are created, you can do this with the following in your workflow file:
0 commit comments