generated from actions/typescript-action
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
action.yml
43 lines (41 loc) · 1.31 KB
/
action.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
name: Re-run Workflow
description: >
Re-run a workflow once or continuously until it succeeds by applying
(or removing) labels to a pull request.
author: reitermarkus
branding:
icon: repeat
color: blue
inputs:
token:
description: >
A GitHub Token other than the default `GITHUB_TOKEN` needs to be
specified in order to be able to re-run workflows.
required: true
once-label:
description: >
When this label is added to a pull request, re-run the `workflow`
once and remove the label again.
required: false
continuous-label:
description: >
When this label is added to a pull request, continuously re-run the
`workflow` until it succeeds or is cancelled. The action needs to be run
on `workflow_run`, `push` or `schedule` events for this to work.
required: false
trigger-labels:
description: >
When any of the labels in this comma-separated list is added to or
removed from a pull request, re-run the `workflow` once.
required: false
failed-jobs-only:
description: >
When re-running the workflow, only re-run jobs which have failed.
required: false
default: false
workflow:
description: File name or ID of the workflow which should be re-run.
required: true
runs:
using: 'node20'
main: 'dist/index.js'