-
Notifications
You must be signed in to change notification settings - Fork 169
27 lines (22 loc) · 1.16 KB
/
remind-vendor-pr-merge.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
name: Remind Vendor on PR Merge
# only trigger on pull request closed events
on:
pull_request_target:
types: [ closed ]
jobs:
merge_job:
# this job will only run if the PR has been merged
if: github.event.pull_request.merged == true
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v2
- name: Use local Auto Comment Bot
uses: ./.github/actions/auto-comment-bot
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
pullRequestClosed: >
👋 @{{ author }}
If this is an EXISTING Marketplace app, now that the PR is merged, all new users of your app will get the current version. You should visit the [Vendor Portal](https://cloud.digitalocean.com/vendorportal/) to make sure you update any version numbers, Description, or Getting Started information that are related to the merged PR.
If this is a BRAND NEW Marketplace app, before this app update can go live on the Marketplace, please update and submit your app from the [Vendor Portal](https://cloud.digitalocean.com/vendorportal/).
Thanks!