Skip to content

Commit

Permalink
Add functionality to auto assign team to issues
Browse files Browse the repository at this point in the history
  • Loading branch information
JamyGolden committed Feb 17, 2024
1 parent 4db99a3 commit 41f0f6e
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* @tinted-theming/tinty
3 changes: 3 additions & 0 deletions .github/auto_assign-issues.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# If enabled, auto-assigns users when a new issue is created
# Defaults to true, allows you to install the app globally, and disable on a per-repo basis
addAssignees: true
18 changes: 18 additions & 0 deletions .github/workflows/auto-assign-issues.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Auto assignment for issues

on:
issues:
types: [opened]

jobs:
auto-assign:
runs-on: ubuntu-latest
permissions:
issues: write
steps:
- name: 'Auto-assign issue'
uses: pozil/auto-assign-issue@v1
with:
assignees: JamyGolden
numOfAssignee: 1
allowSelfAssign: true

0 comments on commit 41f0f6e

Please sign in to comment.