Skip to content

Commit 82df46e

Browse files
authored
Create issue.yml
1 parent 8eb7101 commit 82df46e

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

.github/workflows/issue.yml

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
on:
2+
issues:
3+
types:
4+
- opened
5+
6+
jobs:
7+
label_issue:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- env:
11+
GH_TOKEN: {% raw %}${{ secrets.GITHUB_TOKEN }}{% endraw %}
12+
ISSUE_URL: {% raw %}${{ github.event.issue.html_url }}{% endraw %}
13+
run: |
14+
gh issue edit $ISSUE_URL --add-label "triage"

0 commit comments

Comments
 (0)