Skip to content

Commit

Permalink
Update auto-assign.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Dartvauder authored Nov 3, 2024
1 parent 4d17ab2 commit cf9588c
Showing 1 changed file with 16 additions and 6 deletions.
22 changes: 16 additions & 6 deletions .github/workflows/auto-assign.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,23 @@
name: 'Auto Assign'
name: Auto assign issues and pull requests

on:
issues:
types: [opened]
types:
- opened
pull_request:
types: [opened]
types:
- opened

jobs:
add-reviews:
run:
runs-on: ubuntu-latest
permissions:
issues: write
pull-requests: write
steps:
- uses: kentaro-m/auto-assign-action@v2.0.0
addAssignees: author
- name: Assign issues and pull requests
uses: gustavofreze/auto-assign@1.0.0
with:
assignees: 'user1,user2'
github_token: '${{ secrets.GITHUB_TOKEN }}'
assignment_options: 'ISSUE,PULL_REQUEST'

0 comments on commit cf9588c

Please sign in to comment.