-
Notifications
You must be signed in to change notification settings - Fork 0
29 lines (26 loc) · 1.06 KB
/
closed.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
# DO NOT EDIT: BEGIN
# This snippet has been inserted automatically by mobsuccessbot, do not edit!
# If changes are needed, update the action closed in
# https://github.com/mobsuccess-devops/github-mobsuccess-policy
name: Closed PR Housekeeping
on:
pull_request:
types: [closed]
jobs:
ZapierReviewRequestedPurpleHeart:
if: github.event.pull_request.merged == true
name: "Zapier Purple Heart"
runs-on: ubuntu-20.04
timeout-minutes: 1
steps:
- name: "Sync emoji in #mobsuccess-review-requested"
run: 'curl -D /dev/stderr -s "${{ secrets.ZAPIER_REVIEW_REQUESTED_PURPLE_HEART }}?repo=${{ github.repository }}&pr=${{ github.event.number }}"'
ZapierReviewRequestedRedCross:
if: github.event.pull_request.merged == false
name: "Zapier Red Cross"
runs-on: ubuntu-20.04
timeout-minutes: 1
steps:
- name: "Sync emoji in #mobsuccess-review-requested"
run: 'curl -D /dev/stderr -s "${{ secrets.ZAPIER_REVIEW_REQUESTED_RED_CROSS }}?repo=${{ github.repository }}&pr=${{ github.event.number }}"'
# DO NOT EDIT: END