We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5712c41 commit 93085cfCopy full SHA for 93085cf
.github/workflows/update-release-links.yml
@@ -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