Skip to content

Commit ba48e86

Browse files
change fiber and package build triggers
1 parent b577cda commit ba48e86

2 files changed

Lines changed: 10 additions & 2 deletions

File tree

.github/workflows/build-node-fibers.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,16 @@ name: Build node-fibers with prebuilt Node
22

33
on:
44
workflow_dispatch:
5-
push:
5+
workflow_run:
6+
workflows: ["Build Node"]
7+
types:
8+
- completed
69
branches:
710
- v22.21.1
811

912
jobs:
1013
build-fibers:
14+
if: ${{ github.event_name == 'workflow_dispatch' || github.event.workflow_run.conclusion == 'success' }}
1115
strategy:
1216
matrix:
1317
include:

.github/workflows/build-node-packages.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,16 @@ name: Build node-packages with prebuilt Node
22

33
on:
44
workflow_dispatch:
5-
push:
5+
workflow_run:
6+
workflows: ["Build Node"]
7+
types:
8+
- completed
69
branches:
710
- v22.21.1
811

912
jobs:
1013
build-packages:
14+
if: ${{ github.event_name == 'workflow_dispatch' || github.event.workflow_run.conclusion == 'success' }}
1115
strategy:
1216
matrix:
1317
include:

0 commit comments

Comments
 (0)