Skip to content

Commit ac5c7a4

Browse files
committed
Update issues to auto-assign
1 parent 3dd7761 commit ac5c7a4

3 files changed

Lines changed: 27 additions & 2 deletions

File tree

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Bug report
33
about: Something that's not right about the project
44
title: ''
55
labels: bug
6-
assignees: ''
6+
assignees: 'gerph'
77

88
---
99

.github/ISSUE_TEMPLATE/feature_request.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Feature request
33
about: Suggest an idea for this project
44
title: ''
55
labels: enhancement
6-
assignees: ''
6+
assignees: 'gerph'
77

88
---
99

.github/workflows/issues.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
---
2+
# Automatically assign issues to users
3+
#
4+
# When new issues are created, they will automatically be assigned to a user.
5+
#
6+
7+
name: Issue assignment
8+
9+
on:
10+
issues:
11+
types: [opened]
12+
13+
jobs:
14+
# See GitHub repository here: https://github.com/pozil/auto-assign-issue
15+
auto-assign:
16+
runs-on: ubuntu-latest
17+
permissions:
18+
issues: write
19+
steps:
20+
- name: Auto-assign issue
21+
uses: pozil/auto-assign-issue@v2
22+
with:
23+
assignees: gerph
24+
abortIfPreviousAssignees: true
25+
allowSelfAssign: true

0 commit comments

Comments
 (0)