-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaction.yml
33 lines (30 loc) · 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
name: release-build-log-action
description: "An action to append build logs to a given release."
inputs:
GITHUB_TOKEN:
description: 'The GitHub token to use for the release.'
required: true
releaseID:
description: 'The ID of the release to upload the logs.'
required: true
attemptNumber:
description: 'The Run attempt to get the logs from. Defaults to the current attempt.'
required: false
default: 'auto'
excludedJobs:
description: 'Comma-separated or newline-separated list of jobs from which to ignore logs.'
required: false
default: ''
formatAsHTML:
description: 'Whether or not we should make an HTML file for the logs. Defaults to true.'
default: 'true'
runID:
description: 'The Run ID to get the logs from. Defaults to the current run.'
required: false
default: 'auto'
runs:
using: "node20"
main: "dist/index.js"
branding:
icon: "tag"
color: "gray-dark"