Skip to content

Commit 6a0aae2

Browse files
author
Frédéric Biesse
committed
doc: Update readme
1 parent 59ce839 commit 6a0aae2

File tree

2 files changed

+17
-13
lines changed

2 files changed

+17
-13
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
node_modules/
2-
.env
2+
.env
3+
.idea

README.md

Lines changed: 15 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ For details of the `workflow_dispatch` even see [this blog post introducing this
1111

1212
*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}}"`
1313

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.*
1515

1616
## Inputs
1717

@@ -105,16 +105,16 @@ For details of the `workflow_dispatch` even see [this blog post introducing this
105105
> Based on the value, result will be:
106106
>
107107
> * `output`: Multiline string
108-
>
109-
> ```log
108+
>
109+
> ```log
110110
> <job-name> | <datetime> <message>
111111
> <job-name> | <datetime> <message>
112112
> ...
113113
> ```
114114
>
115115
> * `json-output`: JSON string
116-
>
117-
> ```json
116+
>
117+
> ```json
118118
> {
119119
> "<job-name>": [
120120
> {
@@ -135,7 +135,7 @@ For details of the `workflow_dispatch` even see [this blog post introducing this
135135
136136
```yaml
137137
- name: Invoke workflow without inputs. Wait for result
138-
uses: aurelien-baudet/workflow-dispatch@v2
138+
uses: the-actions-org/workflow-dispatch@v2
139139
with:
140140
workflow: My Workflow
141141
token: ${{ secrets.PERSONAL_TOKEN }}
@@ -145,7 +145,7 @@ For details of the `workflow_dispatch` even see [this blog post introducing this
145145

146146
```yaml
147147
- name: Invoke workflow without inputs. Don't wait for result
148-
uses: aurelien-baudet/workflow-dispatch@v2
148+
uses: the-actions-org/workflow-dispatch@v2
149149
with:
150150
workflow: My Workflow
151151
token: ${{ secrets.PERSONAL_TOKEN }}
@@ -156,7 +156,7 @@ For details of the `workflow_dispatch` even see [this blog post introducing this
156156
157157
```yaml
158158
- name: Invoke workflow with inputs
159-
uses: aurelien-baudet/workflow-dispatch@v2
159+
uses: the-actions-org/workflow-dispatch@v2
160160
with:
161161
workflow: Another Workflow
162162
token: ${{ secrets.PERSONAL_TOKEN }}
@@ -167,7 +167,7 @@ For details of the `workflow_dispatch` even see [this blog post introducing this
167167
168168
```yaml
169169
- name: Invoke workflow in another repo with inputs
170-
uses: aurelien-baudet/workflow-dispatch@v2
170+
uses: the-actions-org/workflow-dispatch@v2
171171
with:
172172
workflow: Some Workflow
173173
repo: benc-uk/example
@@ -180,7 +180,7 @@ For details of the `workflow_dispatch` even see [this blog post introducing this
180180
```yaml
181181
- name: Invoke workflow and handle result
182182
id: trigger-step
183-
uses: aurelien-baudet/workflow-dispatch@v2
183+
uses: the-actions-org/workflow-dispatch@v2
184184
with:
185185
workflow: Another Workflow
186186
token: ${{ secrets.PERSONAL_TOKEN }}
@@ -194,7 +194,7 @@ For details of the `workflow_dispatch` even see [this blog post introducing this
194194
```yaml
195195
- name: Invoke workflow and scrap output
196196
id: trigger-step
197-
uses: aurelien-baudet/workflow-dispatch@v2
197+
uses: the-actions-org/workflow-dispatch@v2
198198
with:
199199
workflow: Another Workflow
200200
token: ${{ secrets.PERSONAL_TOKEN }}
@@ -220,7 +220,7 @@ jobs:
220220
```yaml
221221
- name: Invoke workflow and handle result
222222
id: trigger-step
223-
uses: aurelien-baudet/workflow-dispatch@v3
223+
uses: the-actions-org/workflow-dispatch@v3
224224
env:
225225
RUN_NAME: ${{ github.repository }}/actions/runs/${{ github.run_id }}
226226
with:
@@ -252,6 +252,9 @@ on:
252252

253253
Thanks to:
254254

255+
* [LudovicTOURMAN](https://github.com/LudovicTOURMAN )
256+
* [Djontleman](https://github.com/Djontleman)
257+
* [aurelien-baudet](https://github.com/aurelien-baudet)
255258
* [samirergaibi](https://github.com/samirergaibi)
256259
* [rui-ferreira](https://github.com/rui-ferreira)
257260
* [robbertvdg](https://github.com/robbertvdg)

0 commit comments

Comments
 (0)