Skip to content

Commit

Permalink
Add github action to tag codeowners when an issue is created
Browse files Browse the repository at this point in the history
  • Loading branch information
JamyGolden committed Aug 23, 2024
1 parent 0925c10 commit 5f2ca55
Showing 1 changed file with 18 additions and 0 deletions.
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@v2"
with:
repo-token: "${{ secrets.BOT_ACCESS_TOKEN }}"
teams: "tinty"
numOfAssignee: 3

0 comments on commit 5f2ca55

Please sign in to comment.