-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
30 lines (30 loc) · 818 Bytes
/
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
name: GitHub Actions Repository Dispatch
description: When you need to start a job in another repo as part of your workflow.
author: Walt Moorhouse
inputs:
owner:
description: The owner of the repo.
required: true
repo:
description: The name of the repo.
required: true
user:
description: A user with access to the repo in which you want to start the workflow.
required: true
PAT:
description: The User's Personal Access Token with Repo Access
required: true
workflow:
description: The name of the workflow yaml files to run.
required: false
default: 'build.yml'
branch:
description: The name of the branch to use in the workflow.
required: false
default: 'main'
runs:
using: docker
image: Dockerfile
branding:
icon: arrow-right
color: green