mirror of
https://github.com/shizand/statapp.git
synced 2024-12-23 20:22:58 +03:00
Maxim Slipenko
7b0809772c
- добавил push-зеркало (GitFlic) (mirror.yml) - добавил auto-assign (auto-assign.yml) - исправил права доступа для release.yml и pr-title.yml
16 lines
306 B
YAML
16 lines
306 B
YAML
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 }}
|
|
assignees: ${{ github.actor }} |