Skip to content

Commit 93085cf

Browse files
targosUlisesGascon
authored andcommitted
tools: add workflow to update release links
Refs: #50623 PR-URL: #50710 Reviewed-By: Claudio Wunder <[email protected]> Reviewed-By: Moshe Atlow <[email protected]> Reviewed-By: Richard Lau <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Yagiz Nizipli <[email protected]> Reviewed-By: Michael Dawson <[email protected]>
1 parent 5712c41 commit 93085cf

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed
+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Update release links
2+
3+
on:
4+
release:
5+
types: [published]
6+
7+
permissions:
8+
contents: read
9+
10+
jobs:
11+
update-release-links:
12+
if: github.repository == 'nodejs/node'
13+
runs-on: ubuntu-latest
14+
steps:
15+
- name: Trigger update-links workflow on nodejs/release-cloudflare-worker
16+
run: |
17+
gh workflow run update-links.yml --repo nodejs/release-cloudflare-worker
18+
env:
19+
GITHUB_TOKEN: ${{ secrets.GH_USER_TOKEN }}

0 commit comments

Comments
 (0)