Александр Толстихин
3cd07fafaa
1. Bringing things to order in workflows/ 2. Skipping the TestLazyConnect test since it is for manual startup Co-authored-by: Aleksandr Tolstikhin <atolstikhin@mtsbank.ru> Co-authored-by: Василий Толстов <v.tolstov@unistack.org> Reviewed-on: #124 Co-authored-by: Александр Толстихин <tolstihin1996@mail.ru> Co-committed-by: Александр Толстихин <tolstihin1996@mail.ru>
22 lines
449 B
YAML
22 lines
449 B
YAML
name: "automerge"
|
|
|
|
on:
|
|
pull_request_target:
|
|
types: [assigned, opened, synchronize, reopened]
|
|
|
|
permissions:
|
|
pull-requests: write
|
|
contents: write
|
|
|
|
jobs:
|
|
automerge:
|
|
runs-on: ubuntu-latest
|
|
if: github.actor == 'vtolstov'
|
|
steps:
|
|
- name: merge
|
|
id: merge
|
|
run: gh pr merge --auto --merge "$PR_URL"
|
|
env:
|
|
PR_URL: ${{github.event.pull_request.html_url}}
|
|
GITHUB_TOKEN: ${{secrets.TOKEN}}
|