Skip to content

ci: add workflow to notify main repo on new tag #1

ci: add workflow to notify main repo on new tag

ci: add workflow to notify main repo on new tag #1

Workflow file for this run

name: Notify main repo
on:
push:
tags:
- "v*"
jobs:
notify:
runs-on: ubuntu-latest
steps:
- name: Dispatch to webrpc/webrpc
uses: peter-evans/repository-dispatch@v3
with:
token: ${{ secrets.GH_TOKEN_GIT_COMMIT }}
repository: webrpc/webrpc
event-type: generator-updated
client-payload: '{"generator": "gen-typescript", "version": "${{ github.ref_name }}"}'