Skip to content

Commit 9365bdd

Browse files
authored
Auto-assign issues (#2066)
1 parent 48395e1 commit 9365bdd

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

.github/workflows/issue.yml

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Issue creation
2+
3+
on:
4+
issues:
5+
types:
6+
- opened
7+
8+
jobs:
9+
auto-assign:
10+
runs-on: ubuntu-latest
11+
permissions:
12+
issues: write
13+
steps:
14+
- name: Auto-assign issue
15+
uses: pozil/auto-assign-issue@v2
16+
with:
17+
teams: maintainers
18+
numOfAssignee: 1
19+
allowSelfAssign: true
20+
env:
21+
GITHUB_TOKEN: ${{ secrets.OPENAPI_TS_BOT_GITHUB_TOKEN }}

0 commit comments

Comments
 (0)