Skip to content

Commit

Permalink
tools: add workflow to update release links
Browse files Browse the repository at this point in the history
Refs: #50623
PR-URL: #50710
Reviewed-By: Claudio Wunder <cwunder@gnome.org>
Reviewed-By: Moshe Atlow <moshe@atlow.co.il>
Reviewed-By: Richard Lau <rlau@redhat.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
Reviewed-By: Michael Dawson <midawson@redhat.com>
  • Loading branch information
targos authored and UlisesGascon committed Dec 19, 2023
1 parent 5712c41 commit 93085cf
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/update-release-links.yml
@@ -0,0 +1,19 @@
name: Update release links

on:
release:
types: [published]

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 }}

0 comments on commit 93085cf

Please sign in to comment.