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 dd46d17
Show file tree
Hide file tree
Showing 2 changed files with 18 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
17 changes: 17 additions & 0 deletions .github/workflows/auto-assign-issues.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Issue assignment

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:
teams: tinty
allowSelfAssign: false

0 comments on commit dd46d17

Please sign in to comment.