-
Notifications
You must be signed in to change notification settings - Fork 333
46 lines (46 loc) · 1.53 KB
/
pr-merged.yaml
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
name: "Notify about updates to Kuma"
on:
push:
tags:
- '*'
pull_request_target:
types: [closed]
branches:
- master
- release-*
permissions:
contents: read
jobs:
notify-about-merged-pr:
timeout-minutes: 10
if: github.event_name != 'pull_request_target' || github.event.pull_request.merged
name: "Notify about merged PR"
runs-on: ubuntu-latest
steps:
- name: "Send repository dispatch event"
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1
with:
github-token: ${{ secrets.NOTIFY_BOT_PAT_TOKEN }}
script: |
let branch, pr;
if (context.eventName == "pull_request_target") {
branch = context.payload.pull_request.base.ref;
pr = context.payload.pull_request.number;
} else if (context.eventName == "push") {
const versionRegex = /v?(\d+)\.(\d+)\.\d+/;
const versionMatch = process.env.GITHUB_REF_NAME.match(versionRegex);
if (!versionMatch) {
return;
}
const [_, major, minor] = [...versionMatch];
branch = `release-${major}.${minor}`;
}
return github.rest.repos.createDispatchEvent({
owner: '${{ secrets.NOTIFY_OWNER }}',
repo: '${{ secrets.NOTIFY_REPO }}',
event_type: '${{ secrets.NOTIFY_EVENT_TYPE }}',
client_payload: {
branch,
pr,
},
});