mirror of
https://github.com/dkmstr/openuds.git
synced 2024-12-22 13:34:04 +03:00
20 lines
391 B
YAML
20 lines
391 B
YAML
|
name: Auto Assign
|
||
|
on:
|
||
|
issues:
|
||
|
types: [opened]
|
||
|
pull_request:
|
||
|
types: [opened]
|
||
|
jobs:
|
||
|
run:
|
||
|
runs-on: ubuntu-latest
|
||
|
permissions:
|
||
|
issues: write
|
||
|
pull-requests: write
|
||
|
steps:
|
||
|
- name: 'Auto-assign issue'
|
||
|
uses: pozil/auto-assign-issue@v1
|
||
|
with:
|
||
|
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
||
|
assignees: dkmstr
|
||
|
numOfAssignee: 1
|