Skip to content

Commit

Permalink
Merge pull request #20 from tiny-blocks/feature/auto-assign
Browse files Browse the repository at this point in the history
feat: Adds auto assign for issues and pull requests.
  • Loading branch information
gustavofreze committed Jan 4, 2024
2 parents 70ab3b9 + c6aca96 commit 1605548
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/auto-assign.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Auto assign issues

on:
issues:
types:
- opened

jobs:
run:
runs-on: ubuntu-latest
permissions:
issues: write
pull-requests: write
steps:
- name: Assign issues
uses: gustavofreze/[email protected]
with:
assignees: '${{ secrets.ASSIGNEES }}'
github_token: '${{ secrets.GITHUB_TOKEN }}'
allow_self_assign: 'true'
allow_no_assignees: 'true'
assignment_options: 'ISSUE'

0 comments on commit 1605548

Please sign in to comment.