Skip to content

chore(deps): bump kumahq/kuma-gui to a147c81865720bebcff22a045a924da6… #7371

chore(deps): bump kumahq/kuma-gui to a147c81865720bebcff22a045a924da6…

chore(deps): bump kumahq/kuma-gui to a147c81865720bebcff22a045a924da6… #7371

Workflow file for this run

name: "Notify about updates to Kuma"
on:
push:
tags:
- '*'
branches:
- master
- release-*
permissions:
contents: read
jobs:
notify-about-merged-pr:
timeout-minutes: 10
name: "Notify about merged PR"
runs-on: ubuntu-24.04
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 = process.env.GITHUB_REF_NAME;
if (process.env.GITHUB_REF_TYPE === "tag") {
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,
},
});