Skip to content

Commit 8026290

Browse files
committed
Add functionality to auto assign team to issues
1 parent 4db99a3 commit 8026290

File tree

2 files changed

+19
-0
lines changed

2 files changed

+19
-0
lines changed

.github/CODEOWNERS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* @tinted-theming/tinty
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Issue assignment
2+
3+
on:
4+
issues:
5+
types: [opened]
6+
7+
jobs:
8+
auto-assign:
9+
runs-on: ubuntu-latest
10+
permissions:
11+
issues: write
12+
steps:
13+
- name: 'Auto-assign issue'
14+
uses: pozil/auto-assign-issue@v1
15+
with:
16+
repo-token: ${{ secrets.AUTO_ASSIGN_ISSUES }}
17+
teams: tinty
18+
allowSelfAssign: false

0 commit comments

Comments
 (0)