You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+15-12Lines changed: 15 additions & 12 deletions
Original file line number
Diff line number
Diff line change
@@ -11,7 +11,7 @@ For details of the `workflow_dispatch` even see [this blog post introducing this
11
11
12
12
*Note 2.* If you want to reference the target workflow by ID, you will need to list them with the following REST API call `curl https://api.github.com/repos/{{owner}}/{{repo}}/actions/workflows -H "Authorization: token {{pat-token}}"`
13
13
14
-
*This action is a fork of `benc-uk/workflow-dispatch`to add support for waiting for workflow completion.*
14
+
*This action is a fork of `aurelien-baudet/workflow-dispatch`with a better management of run-name option and node20 support.*
15
15
16
16
## Inputs
17
17
@@ -105,16 +105,16 @@ For details of the `workflow_dispatch` even see [this blog post introducing this
105
105
> Based on the value, result will be:
106
106
>
107
107
> *`output`: Multiline string
108
-
>
109
-
> ```log
108
+
>
109
+
> ```log
110
110
> <job-name> | <datetime> <message>
111
111
> <job-name> | <datetime> <message>
112
112
> ...
113
113
> ```
114
114
>
115
115
> * `json-output`: JSON string
116
-
>
117
-
> ```json
116
+
>
117
+
> ```json
118
118
> {
119
119
> "<job-name>": [
120
120
> {
@@ -135,7 +135,7 @@ For details of the `workflow_dispatch` even see [this blog post introducing this
135
135
136
136
```yaml
137
137
- name: Invoke workflow without inputs. Wait for result
138
-
uses: aurelien-baudet/workflow-dispatch@v2
138
+
uses: the-actions-org/workflow-dispatch@v4
139
139
with:
140
140
workflow: My Workflow
141
141
token: ${{ secrets.PERSONAL_TOKEN }}
@@ -145,7 +145,7 @@ For details of the `workflow_dispatch` even see [this blog post introducing this
145
145
146
146
```yaml
147
147
- name: Invoke workflow without inputs. Don't wait for result
148
-
uses: aurelien-baudet/workflow-dispatch@v2
148
+
uses: the-actions-org/workflow-dispatch@v4
149
149
with:
150
150
workflow: My Workflow
151
151
token: ${{ secrets.PERSONAL_TOKEN }}
@@ -156,7 +156,7 @@ For details of the `workflow_dispatch` even see [this blog post introducing this
156
156
157
157
```yaml
158
158
- name: Invoke workflow with inputs
159
-
uses: aurelien-baudet/workflow-dispatch@v2
159
+
uses: the-actions-org/workflow-dispatch@v4
160
160
with:
161
161
workflow: Another Workflow
162
162
token: ${{ secrets.PERSONAL_TOKEN }}
@@ -167,7 +167,7 @@ For details of the `workflow_dispatch` even see [this blog post introducing this
167
167
168
168
```yaml
169
169
- name: Invoke workflow in another repo with inputs
170
-
uses: aurelien-baudet/workflow-dispatch@v2
170
+
uses: the-actions-org/workflow-dispatch@v4
171
171
with:
172
172
workflow: Some Workflow
173
173
repo: benc-uk/example
@@ -180,7 +180,7 @@ For details of the `workflow_dispatch` even see [this blog post introducing this
180
180
```yaml
181
181
- name: Invoke workflow and handle result
182
182
id: trigger-step
183
-
uses: aurelien-baudet/workflow-dispatch@v2
183
+
uses: the-actions-org/workflow-dispatch@v4
184
184
with:
185
185
workflow: Another Workflow
186
186
token: ${{ secrets.PERSONAL_TOKEN }}
@@ -194,7 +194,7 @@ For details of the `workflow_dispatch` even see [this blog post introducing this
0 commit comments