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

on:
issues:
types: [opened]

jobs:
auto-assign:
runs-on: ubuntu-latest
permissions:
issues: write
pull-requests: write
steps:
- name: 'Auto-assign issue'
uses: pozil/auto-assign-issue@v1
with:
repo-token: ${{ secrets.AUTO_ASSIGN_ISSUES }}
teams: tinty
numOfAssignee: 1

0 comments on commit a743550

Please sign in to comment.