forked from Homebrew/homebrew-cask
-
Notifications
You must be signed in to change notification settings - Fork 0
35 lines (31 loc) · 1.37 KB
/
rebase.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
name: Rebase Pull Request
on:
repository_dispatch:
types: [rebase-command]
jobs:
rebase_pull_request:
name: Rebase Pull Request
runs-on: ubuntu-latest
steps:
- name: Rebase Pull Request
uses: peter-evans/rebase@0a6189742f338835c080791a9bc0d3b140475c1e
id: rebase
with:
token: ${{ secrets.HOMEBREW_CASK_REBASE_TOKEN }}
head: ${{ github.event.client_payload.pull_request.head.label }}
- name: Add 👍 Reaction
if: always() && steps.rebase.outputs.rebased-count == 1
uses: peter-evans/create-or-update-comment@a35cf36e5301d70b76f316e867e7788a55a31dae
with:
token: ${{ secrets.HOMEBREW_GITHUB_PUBLIC_REPO_TOKEN }}
repository: ${{ github.event.client_payload.github.payload.repository.full_name }}
comment-id: ${{ github.event.client_payload.github.payload.comment.id }}
reaction-type: '+1'
- name: Add 👎 Reaction
if: always() && steps.rebase.outputs.rebased-count != 1
uses: peter-evans/create-or-update-comment@a35cf36e5301d70b76f316e867e7788a55a31dae
with:
token: ${{ secrets.HOMEBREW_GITHUB_PUBLIC_REPO_TOKEN }}
repository: ${{ github.event.client_payload.github.payload.repository.full_name }}
comment-id: ${{ github.event.client_payload.github.payload.comment.id }}
reaction-type: '-1'