mirror of
https://github.com/nodejs/node.git
synced 2024-11-22 07:37:56 +01:00
a70d9e5d4f
PR-URL: https://github.com/nodejs/node/pull/50974 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
21 lines
473 B
YAML
21 lines
473 B
YAML
name: Update release links
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
release:
|
|
types: [released]
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
update-release-links:
|
|
if: github.repository == 'nodejs/node'
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Trigger update-links workflow on nodejs/release-cloudflare-worker
|
|
run: |
|
|
gh workflow run update-links.yml --repo nodejs/release-cloudflare-worker
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GH_USER_TOKEN }}
|