We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 32ddbb0 commit 573d139Copy full SHA for 573d139
1 file changed
.github/workflows/zulip.yaml
@@ -2,6 +2,12 @@ name: Post message to Zulip
2
3
on:
4
workflow_dispatch:
5
+ inputs:
6
+ message:
7
+ description: 'Message to post to Zulip'
8
+ required: false
9
+ default: 'Test Auto release notification of IPython from GitHub action'
10
+ type: string
11
12
jobs:
13
post-message:
@@ -22,4 +28,4 @@ jobs:
22
28
type: 'stream'
23
29
topic: 'IPython'
24
30
content: |
25
- Test Auto release notification of IPython from GitHub action
31
+ ${{ inputs.message }}
0 commit comments