-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
47 lines (37 loc) · 1.1 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
44
45
46
47
name: relies-on
description:
"A Github action to identify any workflows that must complete successfully before
another workflow will run."
author: "Hadi Alqattan"
inputs:
owner:
description:
"The username of the owner of the repository containing the workflow.
[default=currect repository owner username]"
required: false
repository:
description:
"The name of the repository containing the workflow. [default=current repository
name]"
required: false
workflow:
description: "The name of the workflow that would be checked."
required: true
branch:
description:
"The name of the branch where the workflow runs. [default=repository's default
branch (most likely master or main)]"
required: false
event:
description: "The type of the event that triggers the workflow. [default= ]"
required: false
exclude_pull_requests:
description: "If true pull requests based runs are omitted. [default=true]"
required: false
default: true
runs:
using: "docker"
image: "Dockerfile"
branding:
icon: "check"
color: "green"