Skip to content

fix(MeshTrace): invalid sampling default values (backport of #11548) #6463

fix(MeshTrace): invalid sampling default values (backport of #11548)

fix(MeshTrace): invalid sampling default values (backport of #11548) #6463

Workflow file for this run

name: "Notify about updates to Kuma"
on:
push:
tags:
- '*'
pull_request_target:
types: [closed]
branches:
- master
- release-*
jobs:
notify-about-merged-pr:
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@v6
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,
},
});