-
Notifications
You must be signed in to change notification settings - Fork 5
66 lines (57 loc) · 2.09 KB
/
review-pr.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
name: Review PR
on:
pull_request_review:
types: [submitted]
jobs:
designAwesome:
if: ${{ github.event.review.state == 'approved' && github.event.organization.login == 'sendsay-ru' && github.event.review.body == 'Design awesome' }}
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Add label Design Awesome
uses: actions-ecosystem/action-add-labels@v1
with:
number: ${{ github.event.pull_request.number }}
labels: |
PR: Design Awesome 👌
- name: Remove label Needs Design Review
uses: actions-ecosystem/action-remove-labels@v1
with:
number: ${{ github.event.pull_request.number }}
labels: |
PR: Needs Design Review 😱
- name: Remove label Needs Redesign
uses: actions-ecosystem/action-remove-labels@v1
with:
number: ${{ github.event.pull_request.number }}
labels: |
PR: Needs Redesign
- name: Automerge
env:
GH_TOKEN: ${{ secrets.GH_SENDSAY_TOKEN }}
run: gh pr merge --merge --auto "${{ github.event.pull_request.number }}"
needsRedesign:
if: ${{ github.event.review.state == 'approved' && github.event.organization.login == 'sendsay-ru' && github.event.review.body == 'Needs redesign' }}
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Add label Needs Redesign
uses: actions-ecosystem/action-add-labels@v1
with:
number: ${{ github.event.pull_request.number }}
labels: |
PR: Needs Redesign
- name: Remove label Design Awesome
uses: actions-ecosystem/action-remove-labels@v1
with:
number: ${{ github.event.pull_request.number }}
labels: |
PR: Design Awesome 👌
- name: Remove label Needs Design Review
uses: actions-ecosystem/action-remove-labels@v1
with:
number: ${{ github.event.pull_request.number }}
labels: |
PR: Needs Design Review 😱