Skip to content

Commit 1a76f67

Browse files
authored
chore: Add webhook inputs to synced preview workflow (#231)
1 parent 82f27d1 commit 1a76f67

1 file changed

Lines changed: 9 additions & 2 deletions

File tree

.github/workflows/synced-preview.yml

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,20 @@ on:
44
workflow_dispatch:
55
inputs:
66
user_email:
7-
description: 'The email of the TestHub user requesting the build'
87
required: true
98
type: string
9+
webhook_url:
10+
required: false
11+
type: string
12+
webhook_token:
13+
required: false
14+
type: string
1015

1116
jobs:
12-
testhub_preview:
17+
synced_preview:
1318
uses: IDEMSInternational/open-app-builder/.github/workflows/reusable-synced-preview.yml@offload-testhub-build
1419
with:
1520
user_email: ${{ github.event.inputs.user_email }}
21+
webhook_url: ${{ github.event.inputs.webhook_url }}
22+
webhook_token: ${{ github.event.inputs.webhook_token }}
1623
secrets: inherit

0 commit comments

Comments
 (0)