-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathaction.yml
More file actions
43 lines (39 loc) · 1.01 KB
/
action.yml
File metadata and controls
43 lines (39 loc) · 1.01 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
# action.yml
name: CI
description: 'CI Action'
inputs:
space:
description: Use "kernel" or "user" to distinguish the target CI tests
required: true
src_path:
description: Path of source (relative path from /github/workspace)
required: true
bluez_path:
description: Path of bluez source (relative path from /github/workspace)
required: false
default: ""
output_path:
description: Output path (relative path from /github/workspace)
required: false
default: results
github_token:
description: github_token
required: true
email_token:
description: Email token
required: true
patchwork_token:
description: Patchwork token
required: true
runs:
using: 'docker'
image: 'Dockerfile'
args:
- ${{ inputs.src_path }}
- ${{ inputs.bluez_path }}
- ${{ inputs.output_path }}
- ${{ inputs.space }}
env:
GITHUB_TOKEN: ${{ inputs.github_token }}
EMAIL_TOKEN: ${{ inputs.email_token }}
PATCHWORK_TOKEN: ${{ inputs.patchwork_token }}