Skip to content

chore: Update auto-assign workflow with concurrency and new version. #40

chore: Update auto-assign workflow with concurrency and new version.

chore: Update auto-assign workflow with concurrency and new version. #40

Workflow file for this run

name: Auto assign issues and pull requests
on:
issues:
types:
- opened
pull_request:
types:
- opened
concurrency:
group: auto-assign-${{ github.event.issue.number || github.event.pull_request.number }}
cancel-in-progress: true
permissions:
issues: write
pull-requests: write
jobs:
auto-assign:
name: Auto assign
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- name: Assign issues and pull requests
uses: gustavofreze/auto-assign@2.1.0
with:
assignees: 'gustavofreze'
github_token: '${{ secrets.GITHUB_TOKEN }}'
allow_self_assign: 'true'
allow_no_assignees: 'true'
assignment_options: 'ISSUE,PULL_REQUEST'