-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathaction.yml
More file actions
58 lines (46 loc) · 1.35 KB
/
action.yml
File metadata and controls
58 lines (46 loc) · 1.35 KB
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
48
49
50
51
52
53
54
55
56
57
58
name: 'Actionforge'
author: 'sebastianrath'
description: 'Execute Actionforge Action Graphs directly within your GitHub Workflows.'
branding:
icon: 'share-2'
color: 'green'
inputs:
graph-file:
description: 'The path to the .yaml graph file (relative to .github/workflows/graphs).'
required: true
github-token:
description: 'The token for GitHub API authentication.'
default: ${{ github.token }}
required: false
inputs:
description: 'JSON string of inputs for the graph.'
required: false
default: '{}'
secrets:
description: 'JSON string of secrets for the graph.'
required: false
default: '{}'
matrix:
description: 'JSON string representing the execution matrix.'
required: false
default: '{}'
needs:
description: 'JSON string representing previous job outputs (needs).'
required: false
default: '{}'
create-debug-session:
description: 'If "true", initiates a remote debugging session.'
required: false
default: 'false'
session-token:
description: 'Pre-existing session token for remote debugging.'
required: false
runner-base-url:
description: 'Custom URL to download the graph runner binary.'
required: false
runner-path:
description: 'Path to a custom graph runner binary.'
required: false
runs:
using: 'node20'
main: 'dist/index.js'