-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathaction.yml
40 lines (40 loc) · 1001 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
31
32
33
34
35
36
37
38
39
40
name: "DAS CI/CD"
description: "When a workflow is configured to run on the workflow_dispatch event, you can run the workflow using this action"
author: Singnet
inputs:
org:
description: "Organization name"
required: true
type: string
repo:
description: "Repository name"
required: true
type: string
workflow:
description: "Workflow id"
required: true
type: string
ref:
description: "Git reference (branch or tag) to run the workflow on"
required: false
type: string
default: "master"
github-token:
description: "Github access token"
required: true
type: string
outputs:
conclusion:
description: "The conclusion of the workflow run"
branding:
icon: "bell"
color: "red"
runs:
using: "docker"
image: "Dockerfile"
env:
GITHUB_REPO: ${{ inputs.repo }}
GH_TOKEN: ${{ inputs.github-token }}
GITHUB_WORKFLOW_ID: ${{ inputs.workflow }}
GIT_REFERENCE: ${{ inputs.ref }}
GITHUB_ORG: ${{ inputs.org }}