Skip to content

Commit

Permalink
Merge pull request #27 from PTST/Auto-assign-issues
Browse files Browse the repository at this point in the history
Add issue assignment action
  • Loading branch information
PTST authored Apr 17, 2024
2 parents 961ca9d + 478c0c9 commit 494009e
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/IssueAssignment.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
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:
assignees: ptst
allowSelfAssign: true
abortIfPreviousAssignees: true

0 comments on commit 494009e

Please sign in to comment.