statapp/.github/workflows/auto-assign.yml

17 lines
307 B
YAML
Raw Normal View History

name: Auto Assign
on:
pull_request:
types:
- opened
- reopened
jobs:
add_assignees:
runs-on: ubuntu-latest
steps:
- uses: actions-ecosystem/action-add-assignees@v1
with:
github_token: ${{ secrets.github_token }}
2023-10-04 08:42:16 +03:00
assignees: ${{ github.actor }}