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 6fe432b
Show file tree
Hide file tree
Showing 2 changed files with 19 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
18 changes: 18 additions & 0 deletions .github/workflows/auto-assign.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 6fe432b

Please sign in to comment.